提交 e363e014 编写于 作者: S Stephen M. Cameron 提交者: Jens Axboe

cciss: fix reply pool and block fetch table memory leaks

Signed-off-by: NJens Axboe <jaxboe@fusionio.com>
上级 2b48085f
...@@ -4988,6 +4988,10 @@ static void __devexit cciss_remove_one(struct pci_dev *pdev) ...@@ -4988,6 +4988,10 @@ static void __devexit cciss_remove_one(struct pci_dev *pdev)
kfree(h->scatter_list[j]); kfree(h->scatter_list[j]);
kfree(h->scatter_list); kfree(h->scatter_list);
cciss_free_sg_chain_blocks(h->cmd_sg_list, h->nr_cmds); cciss_free_sg_chain_blocks(h->cmd_sg_list, h->nr_cmds);
kfree(h->blockFetchTable);
if (h->reply_pool)
pci_free_consistent(h->pdev, h->max_commands * sizeof(__u64),
h->reply_pool, h->reply_pool_dhandle);
/* /*
* Deliberately omit pci_disable_device(): it does something nasty to * Deliberately omit pci_disable_device(): it does something nasty to
* Smart Array controllers that pci_enable_device does not undo * Smart Array controllers that pci_enable_device does not undo
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册