]> Pileus Git - ~andy/linux/commitdiff
staging/lustre: fix defined not used warning
authorPeng Tao <bergwolf@gmail.com>
Tue, 3 Dec 2013 14:42:04 +0000 (22:42 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 3 Dec 2013 16:57:25 +0000 (08:57 -0800)
register_sysctl_table/unregister_sysctl_table are defined
regardless of CONFIG_SYSCTL true or false. so we don't need
to surround them with #ifdef CONFIG_SYSCTL. Besides, current
code got build warnings when CONFIG_SYSCTL is not set:
drivers/staging/lustre/lustre/libcfs/linux/linux-proc.c:368:20: warning:
‘lnet_table’ defined but not used [-Wunused-variable]

Signed-off-by: Peng Tao <bergwolf@gmail.com>
Signed-off-by: Andreas Dilger <andreas.dilger@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/lnet/lnet/router_proc.c
drivers/staging/lustre/lustre/libcfs/linux/linux-proc.c

index daaa043ad11813abec781cad2aa4a6cda8b83110..e4fe7a116fb5aecd046823e65bc6fd695d77cf6d 100644 (file)
@@ -908,21 +908,17 @@ static ctl_table_t top_table[] = {
 void
 lnet_proc_init(void)
 {
-#ifdef CONFIG_SYSCTL
        if (lnet_table_header == NULL)
                lnet_table_header = register_sysctl_table(top_table);
-#endif
 }
 
 void
 lnet_proc_fini(void)
 {
-#ifdef CONFIG_SYSCTL
        if (lnet_table_header != NULL)
                unregister_sysctl_table(lnet_table_header);
 
        lnet_table_header = NULL;
-#endif
 }
 
 #else
index ef0ab106496f6e11e3195b58f5fb4d6796269989..e947b9128c58fc1b3785a37afd260a88d7a6a42d 100644 (file)
@@ -65,9 +65,7 @@
 #include <asm/div64.h>
 #include "tracefile.h"
 
-#ifdef CONFIG_SYSCTL
 static ctl_table_header_t *lnet_table_header = NULL;
-#endif
 extern char lnet_upcall[1024];
 /**
  * The path of debug log dump upcall script.
@@ -518,7 +516,6 @@ static ctl_table_t lnet_table[] = {
        }
 };
 
-#ifdef CONFIG_SYSCTL
 static ctl_table_t top_table[] = {
        {
                .procname = "lnet",
@@ -530,23 +527,18 @@ static ctl_table_t top_table[] = {
        {
        }
 };
-#endif
 
 int insert_proc(void)
 {
-#ifdef CONFIG_SYSCTL
        if (lnet_table_header == NULL)
                lnet_table_header = register_sysctl_table(top_table);
-#endif
        return 0;
 }
 
 void remove_proc(void)
 {
-#ifdef CONFIG_SYSCTL
        if (lnet_table_header != NULL)
                unregister_sysctl_table(lnet_table_header);
 
        lnet_table_header = NULL;
-#endif
 }