diff options
author | Dave Young <hidave.darkstar@gmail.com> | 2010-03-10 15:24:08 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-03-12 15:53:10 -0800 |
commit | c55b7c3e82d0ad58f35a0785faaaf2f70b9b6cd3 (patch) | |
tree | 5672da5b62c6c8e0c806a6b235de5131f7b974c8 | |
parent | 15485a4682d1d3bfee2aa78b4b1a5d36f5746b64 (diff) | |
download | linux-3.10-c55b7c3e82d0ad58f35a0785faaaf2f70b9b6cd3.tar.gz linux-3.10-c55b7c3e82d0ad58f35a0785faaaf2f70b9b6cd3.tar.bz2 linux-3.10-c55b7c3e82d0ad58f35a0785faaaf2f70b9b6cd3.zip |
sysctl extern cleanup: acct
Extern declarations in sysctl.c should be moved to their own header file,
and then include them in relavant .c files.
Move acct_parm extern declaration to linux/acct.h
Signed-off-by: Dave Young <hidave.darkstar@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | include/linux/acct.h | 1 | ||||
-rw-r--r-- | kernel/sysctl.c | 7 |
2 files changed, 4 insertions, 4 deletions
diff --git a/include/linux/acct.h b/include/linux/acct.h index 93f46096ad4..3e4737fa6cc 100644 --- a/include/linux/acct.h +++ b/include/linux/acct.h @@ -121,6 +121,7 @@ struct vfsmount; struct super_block; struct pacct_struct; struct pid_namespace; +extern int acct_parm[]; /* for sysctl */ extern void acct_auto_close_mnt(struct vfsmount *m); extern void acct_auto_close(struct super_block *sb); extern void acct_collect(long exitcode, int group_dead); diff --git a/kernel/sysctl.c b/kernel/sysctl.c index 5290c437f15..7635bb15f5a 100644 --- a/kernel/sysctl.c +++ b/kernel/sysctl.c @@ -61,6 +61,9 @@ #include <asm/stacktrace.h> #include <asm/io.h> #endif +#ifdef CONFIG_BSD_PROCESS_ACCT +#include <linux/acct.h> +#endif #ifdef CONFIG_CHR_DEV_SG #include <scsi/sg.h> #endif @@ -140,10 +143,6 @@ extern int sysctl_userprocess_debug; extern int spin_retry; #endif -#ifdef CONFIG_BSD_PROCESS_ACCT -extern int acct_parm[]; -#endif - #ifdef CONFIG_IA64 extern int no_unaligned_warning; extern int unaligned_dump_stack; |