From: Fabian Frederick Date: Wed, 6 Aug 2014 23:03:24 +0000 (-0700) Subject: fs/fscache: make ctl_table static X-Git-Tag: v4.14-rc1~7080^2~224 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3e584064840de14856451ea9ce443c5d4f7e31ff;p=platform%2Fkernel%2Flinux-rpi.git fs/fscache: make ctl_table static fscache_sysctls and fscache_sysctls_root are only used in main.c Signed-off-by: Fabian Frederick Cc: David Howells Cc: Joe Perches Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/fs/fscache/main.c b/fs/fscache/main.c index a31b83c..b39d487 100644 --- a/fs/fscache/main.c +++ b/fs/fscache/main.c @@ -67,7 +67,7 @@ static int fscache_max_active_sysctl(struct ctl_table *table, int write, return ret; } -struct ctl_table fscache_sysctls[] = { +static struct ctl_table fscache_sysctls[] = { { .procname = "object_max_active", .data = &fscache_object_max_active, @@ -87,7 +87,7 @@ struct ctl_table fscache_sysctls[] = { {} }; -struct ctl_table fscache_sysctls_root[] = { +static struct ctl_table fscache_sysctls_root[] = { { .procname = "fscache", .mode = 0555,