Skip to content

Commit

Permalink
[PATCH] Char: mxser_new, fix twice resource releasing
Browse files Browse the repository at this point in the history
Because brd->info is not NULLed, resources are released twice.  NULL it in
pci_remove function.  Also take care of retval and releasing in pci_probe --
mxser_initbrd alreasy releases resource, do not do it again in fail path in
probe function.

Cc: Sergei Organov <osv@javad.com>
Signed-off-by: Jiri Slaby <jirislaby@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Jiri Slaby authored and Linus Torvalds committed Feb 11, 2007
1 parent 18b9557 commit 45257fa
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions drivers/char/mxser_new.c
Original file line number Diff line number Diff line change
Expand Up @@ -2403,9 +2403,8 @@ static int __devinit mxser_initbrd(struct mxser_board *brd,
brd->info->name, brd->irq);
/* We hold resources, we need to release them. */
mxser_release_res(brd, pdev, 0);
return retval;
}
return 0;
return retval;
}

static int __init mxser_get_ISA_conf(int cap, struct mxser_board *brd)
Expand Down Expand Up @@ -2590,19 +2589,19 @@ static int __devinit mxser_probe(struct pci_dev *pdev,
}

/* mxser_initbrd will hook ISR. */
if (mxser_initbrd(brd, pdev) < 0)
goto err_relvec;
retval = mxser_initbrd(brd, pdev);
if (retval)
goto err_null;

for (i = 0; i < brd->info->nports; i++)
tty_register_device(mxvar_sdriver, brd->idx + i, &pdev->dev);

pci_set_drvdata(pdev, brd);

return 0;
err_relvec:
pci_release_region(pdev, 3);
err_relio:
pci_release_region(pdev, 2);
err_null:
brd->info = NULL;
err:
return retval;
Expand All @@ -2620,6 +2619,7 @@ static void __devexit mxser_remove(struct pci_dev *pdev)
tty_unregister_device(mxvar_sdriver, brd->idx + i);

mxser_release_res(brd, pdev, 1);
brd->info = NULL;
}

static struct pci_driver mxser_driver = {
Expand Down

0 comments on commit 45257fa

Please sign in to comment.