diff options
author | Dave Young <hidave.darkstar@gmail.com> | 2010-03-10 15:24:06 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-03-12 15:53:10 -0800 |
commit | 5ed109103d73b0bafc92e860cead56725231384d (patch) | |
tree | 4744e2d3c0e11095865e22ff285f71b7fb542f3d /kernel/sysctl.c | |
parent | e5ab67726f33b50f40db0ccf271ceb3c658554d5 (diff) | |
download | linux-5ed109103d73b0bafc92e860cead56725231384d.tar.gz linux-5ed109103d73b0bafc92e860cead56725231384d.tar.bz2 linux-5ed109103d73b0bafc92e860cead56725231384d.zip |
sysctl extern cleanup: module
Extern declarations in sysctl.c should be moved to their own header file,
and then include them in relavant .c files.
Move modprobe_path extern declaration to linux/kmod.h
Move modules_disabled extern declaration to linux/module.h
Signed-off-by: Dave Young <hidave.darkstar@gmail.com>
Cc: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel/sysctl.c')
-rw-r--r-- | kernel/sysctl.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/kernel/sysctl.c b/kernel/sysctl.c index f18aaa7b0d65..44e9492368fd 100644 --- a/kernel/sysctl.c +++ b/kernel/sysctl.c @@ -116,10 +116,6 @@ static int min_percpu_pagelist_fract = 8; static int ngroups_max = NGROUPS_MAX; -#ifdef CONFIG_MODULES -extern char modprobe_path[]; -extern int modules_disabled; -#endif #ifdef CONFIG_CHR_DEV_SG extern int sg_big_buff; #endif |