diff options
-rw-r--r-- | drivers/block/cciss.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/block/cciss.c b/drivers/block/cciss.c index 63fe05af2c5d..d60448941d53 100644 --- a/drivers/block/cciss.c +++ b/drivers/block/cciss.c | |||
@@ -4988,6 +4988,10 @@ static void __devexit cciss_remove_one(struct pci_dev *pdev) | |||
4988 | kfree(h->scatter_list[j]); | 4988 | kfree(h->scatter_list[j]); |
4989 | kfree(h->scatter_list); | 4989 | kfree(h->scatter_list); |
4990 | cciss_free_sg_chain_blocks(h->cmd_sg_list, h->nr_cmds); | 4990 | cciss_free_sg_chain_blocks(h->cmd_sg_list, h->nr_cmds); |
4991 | kfree(h->blockFetchTable); | ||
4992 | if (h->reply_pool) | ||
4993 | pci_free_consistent(h->pdev, h->max_commands * sizeof(__u64), | ||
4994 | h->reply_pool, h->reply_pool_dhandle); | ||
4991 | /* | 4995 | /* |
4992 | * Deliberately omit pci_disable_device(): it does something nasty to | 4996 | * Deliberately omit pci_disable_device(): it does something nasty to |
4993 | * Smart Array controllers that pci_enable_device does not undo | 4997 | * Smart Array controllers that pci_enable_device does not undo |