From: Selvin Xavier Date: Fri, 5 Feb 2016 14:36:40 +0000 (+0530) Subject: RDMA/ocrdma: Fixing ocrdma debugfs directory remove X-Git-Tag: v4.5-rc4~13^2~4 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=7425f410ca6cffe81400906286f80e8e15d9b301;p=linux-2.6-block.git RDMA/ocrdma: Fixing ocrdma debugfs directory remove During the ocrdma device remove sequence, the debugfs directory tree of each ocrdma device needs to be removed. Use debugfs_remove_recursive instead of debugfs_remove. Signed-off-by: Selvin Xavier Signed-off-by: Doug Ledford --- diff --git a/drivers/infiniband/hw/ocrdma/ocrdma_stats.c b/drivers/infiniband/hw/ocrdma/ocrdma_stats.c index fc02e86849ce..255f774080a4 100644 --- a/drivers/infiniband/hw/ocrdma/ocrdma_stats.c +++ b/drivers/infiniband/hw/ocrdma/ocrdma_stats.c @@ -851,7 +851,7 @@ void ocrdma_rem_port_stats(struct ocrdma_dev *dev) { if (!dev->dir) return; - debugfs_remove(dev->dir); + debugfs_remove_recursive(dev->dir); } void ocrdma_init_debugfs(void)