Commit 34f8f0d2 authored by Matthew Wilcox's avatar Matthew Wilcox Committed by James Bottomley

[SCSI] ibmmca: Stop leaking scsi_hosts on exit

There was a missing call to scsi_host_put() causing us to leak a scsi
host every time this module was unloaded.
Signed-off-by: default avatarMatthew Wilcox <matthew@wil.cx>
Signed-off-by: default avatarJames Bottomley <James.Bottomley@SteelEye.com>
parent a57b1fcc
...@@ -1693,6 +1693,7 @@ static int __devexit ibmmca_remove(struct device *dev) ...@@ -1693,6 +1693,7 @@ static int __devexit ibmmca_remove(struct device *dev)
scsi_remove_host(shpnt); scsi_remove_host(shpnt);
release_region(shpnt->io_port, shpnt->n_io_port); release_region(shpnt->io_port, shpnt->n_io_port);
free_irq(shpnt->irq, dev); free_irq(shpnt->irq, dev);
scsi_host_put(shpnt);
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment