Skip to content

Commit

Permalink
[SCSI] SCSI sd: fix module init/exit error handling
Browse files Browse the repository at this point in the history
- Properly handle and unwind errors in init_sd().  Fixes leaks on error,
  if class_register() or scsi_register_driver() failed.

- Ensure that exit_sd() execution order is the perfect inverse of
  initialization order.

FIXME:  If some-but-not-all register_blkdev() calls fail, we wind up
calling unregister_blkdev() for block devices we did not register.
This was a pre-existing bug.

Signed-off-by: Jeff Garzik <[email protected]>
Signed-off-by: James Bottomley <[email protected]>
  • Loading branch information
Jeff Garzik authored and James Bottomley committed Oct 4, 2006
1 parent 37e0333 commit 5e4009b
Showing 1 changed file with 18 additions and 5 deletions.
23 changes: 18 additions & 5 deletions drivers/scsi/sd.c
Original file line number Diff line number Diff line change
Expand Up @@ -1795,7 +1795,7 @@ static void sd_shutdown(struct device *dev)
**/
static int __init init_sd(void)
{
int majors = 0, i;
int majors = 0, i, err;

SCSI_LOG_HLQUEUE(3, printk("init_sd: sd driver entry point\n"));

Expand All @@ -1806,9 +1806,22 @@ static int __init init_sd(void)
if (!majors)
return -ENODEV;

class_register(&sd_disk_class);
err = class_register(&sd_disk_class);
if (err)
goto err_out;

return scsi_register_driver(&sd_template.gendrv);
err = scsi_register_driver(&sd_template.gendrv);
if (err)
goto err_out_class;

return 0;

err_out_class:
class_unregister(&sd_disk_class);
err_out:
for (i = 0; i < SD_MAJORS; i++)
unregister_blkdev(sd_major(i), "sd");
return err;
}

/**
Expand All @@ -1823,10 +1836,10 @@ static void __exit exit_sd(void)
SCSI_LOG_HLQUEUE(3, printk("exit_sd: exiting sd driver\n"));

scsi_unregister_driver(&sd_template.gendrv);
class_unregister(&sd_disk_class);

for (i = 0; i < SD_MAJORS; i++)
unregister_blkdev(sd_major(i), "sd");

class_unregister(&sd_disk_class);
}

module_init(init_sd);
Expand Down

0 comments on commit 5e4009b

Please sign in to comment.