diff options
author | Michael S. Tsirkin <mst@mellanox.co.il> | 2005-09-20 10:54:48 -0700 |
---|---|---|
committer | Roland Dreier <rolandd@cisco.com> | 2005-09-20 10:54:48 -0700 |
commit | 71eea47d853bb0ce0c6befe11b3e08111263170f (patch) | |
tree | ff675d57b8d3dc6688a2016b41b0d41b54611231 /drivers | |
parent | 8d2cae0651502028bf64844508ab18528bbd65c2 (diff) | |
download | op-kernel-dev-71eea47d853bb0ce0c6befe11b3e08111263170f.zip op-kernel-dev-71eea47d853bb0ce0c6befe11b3e08111263170f.tar.gz |
[PATCH] IB/mthca: Fix device removal memory leak
Clean up QP table array on device removal.
Signed-off-by: Michael S. Tsirkin <mst@mellanox.co.il>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/infiniband/hw/mthca/mthca_qp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/infiniband/hw/mthca/mthca_qp.c b/drivers/infiniband/hw/mthca/mthca_qp.c index eaa5218..5fa0066 100644 --- a/drivers/infiniband/hw/mthca/mthca_qp.c +++ b/drivers/infiniband/hw/mthca/mthca_qp.c @@ -2123,5 +2123,6 @@ void __devexit mthca_cleanup_qp_table(struct mthca_dev *dev) for (i = 0; i < 2; ++i) mthca_CONF_SPECIAL_QP(dev, i, 0, &status); + mthca_array_cleanup(&dev->qp_table.qp, dev->limits.num_qps); mthca_alloc_cleanup(&dev->qp_table.alloc); } |