diff options
author | Johannes Thumshirn | 2015-07-09 09:39:42 +0200 |
---|---|---|
committer | Michael Ellerman | 2015-07-16 14:15:07 +1000 |
commit | bd664f892e3e2b01c79197cad3111d54b7aedf39 (patch) | |
tree | 7e978b29c0ffac148696e69df8db7a3b4b4d86ca /drivers/misc/cxl | |
parent | b2a02ac65e40fb3900d176828a407b44bb33f9f4 (diff) |
cxl: Destroy afu->contexts_idr on release of an afu
Destroy afu->contexts_idr on release of an afu, reclaiming the allocated
memory.
Signed-off-by: Johannes Thumshirn <jthumshirn@suse.de>
Acked-by: Ian Munsie <imunsie@au1.ibm.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'drivers/misc/cxl')
-rw-r--r-- | drivers/misc/cxl/pci.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/misc/cxl/pci.c b/drivers/misc/cxl/pci.c index eb05efb74eed..1d314f1f95fe 100644 --- a/drivers/misc/cxl/pci.c +++ b/drivers/misc/cxl/pci.c @@ -551,6 +551,7 @@ static void cxl_release_afu(struct device *dev) pr_devel("cxl_release_afu\n"); + idr_destroy(&afu->contexts_idr); kfree(afu); } |