From c87a306a34319313fdd6b041b494f3a64104a514 Mon Sep 17 00:00:00 2001 From: Yang Yingliang Date: Tue, 26 Feb 2019 22:03:32 +0800 Subject: [PATCH] arm64/mpam: fix compile warning MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit hulk inclusion category: bugfix bugzilla: NA CVE: NA ---------------------------------------- Fix the compile warning fs/resctrlfs.c: In function ‘resctrl_mount’: fs/resctrlfs.c:358:1: warning: label ‘out_mongrp’ defined but not used [-Wunused-label] out_mongrp: Signed-off-by: Yang Yingliang --- fs/resctrlfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/resctrlfs.c b/fs/resctrlfs.c index 1629556a73d0..b49b0a3bb15c 100644 --- a/fs/resctrlfs.c +++ b/fs/resctrlfs.c @@ -354,8 +354,8 @@ static struct dentry *resctrl_mount(struct file_system_type *fs_type, #ifndef CONFIG_ARM64 /* [FIXME] arch specific code */ if (resctrl_mon_capable) kernfs_remove(kn_mondata); -#endif out_mongrp: +#endif if (resctrl_mon_capable) kernfs_remove(kn_mongrp); out_info: -- GitLab