aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/infiniband/core/ucm.c
diff options
context:
space:
mode:
authorRoland Dreier <rolandd@cisco.com>2005-10-24 10:53:25 -0700
committerRoland Dreier <rolandd@cisco.com>2005-10-24 10:53:25 -0700
commit5d7edb3c1a01310725d86f0d83fb3be45685dc82 (patch)
treebbe21779313fea41eb644e0e0f06d5949cd4ed49 /drivers/infiniband/core/ucm.c
parentMerge master.kernel.org:/pub/scm/linux/kernel/git/torvalds/linux-2.6 (diff)
downloadlinux-dev-5d7edb3c1a01310725d86f0d83fb3be45685dc82.tar.xz
linux-dev-5d7edb3c1a01310725d86f0d83fb3be45685dc82.zip
[IB] Add idr_destroy() calls on module unload
Add idr_destroy() calls to the module_exit() functions of the four IB driver modules that use idrs, so we don't leak idr_layer_cache objects when these modules are unloaded. Signed-off-by: Roland Dreier <rolandd@cisco.com>
Diffstat (limited to 'drivers/infiniband/core/ucm.c')
-rw-r--r--drivers/infiniband/core/ucm.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/infiniband/core/ucm.c b/drivers/infiniband/core/ucm.c
index d0f0b0a2edd3..5a6ba4030d44 100644
--- a/drivers/infiniband/core/ucm.c
+++ b/drivers/infiniband/core/ucm.c
@@ -1320,6 +1320,7 @@ static void __exit ib_ucm_cleanup(void)
class_destroy(ib_ucm_class);
cdev_del(&ib_ucm_cdev);
unregister_chrdev_region(IB_UCM_DEV, 1);
+ idr_destroy(&ctx_id_table);
}
module_init(ib_ucm_init);