From: Arvind Yadav Date: Sat, 25 Nov 2017 06:39:29 +0000 (+0530) Subject: staging: lustre: ldlm: Remove a attribute group from a kobject X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=c127e451a71b8cbe6c3d8fc946ab12b9d9c1bab1;p=openwrt%2Fstaging%2Fblogic.git staging: lustre: ldlm: Remove a attribute group from a kobject All attribute group created during ldlm_setup() should be removed in ldlm_cleanup(). Signed-off-by: Arvind Yadav Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/lustre/lustre/ldlm/ldlm_lockd.c b/drivers/staging/lustre/lustre/ldlm/ldlm_lockd.c index 2d5a2c932ddc..ada50b69c5f6 100644 --- a/drivers/staging/lustre/lustre/ldlm/ldlm_lockd.c +++ b/drivers/staging/lustre/lustre/ldlm/ldlm_lockd.c @@ -1093,8 +1093,10 @@ static int ldlm_cleanup(void) kset_unregister(ldlm_ns_kset); if (ldlm_svc_kset) kset_unregister(ldlm_svc_kset); - if (ldlm_kobj) + if (ldlm_kobj) { + sysfs_remove_group(ldlm_kobj, &ldlm_attr_group); kobject_put(ldlm_kobj); + } ldlm_debugfs_cleanup();