aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/sysctl.c
diff options
context:
space:
mode:
authorDave Young <hidave.darkstar@gmail.com>2010-03-10 18:24:08 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2010-03-12 18:53:10 -0500
commitc55b7c3e82d0ad58f35a0785faaaf2f70b9b6cd3 (patch)
tree5672da5b62c6c8e0c806a6b235de5131f7b974c8 /kernel/sysctl.c
parent15485a4682d1d3bfee2aa78b4b1a5d36f5746b64 (diff)
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>
Diffstat (limited to 'kernel/sysctl.c')
-rw-r--r--kernel/sysctl.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/kernel/sysctl.c b/kernel/sysctl.c
index 5290c437f151..7635bb15f5af 100644
--- a/kernel/sysctl.c
+++ b/kernel/sysctl.c
@@ -61,6 +61,9 @@
61#include <asm/stacktrace.h> 61#include <asm/stacktrace.h>
62#include <asm/io.h> 62#include <asm/io.h>
63#endif 63#endif
64#ifdef CONFIG_BSD_PROCESS_ACCT
65#include <linux/acct.h>
66#endif
64#ifdef CONFIG_CHR_DEV_SG 67#ifdef CONFIG_CHR_DEV_SG
65#include <scsi/sg.h> 68#include <scsi/sg.h>
66#endif 69#endif
@@ -140,10 +143,6 @@ extern int sysctl_userprocess_debug;
140extern int spin_retry; 143extern int spin_retry;
141#endif 144#endif
142 145
143#ifdef CONFIG_BSD_PROCESS_ACCT
144extern int acct_parm[];
145#endif
146
147#ifdef CONFIG_IA64 146#ifdef CONFIG_IA64
148extern int no_unaligned_warning; 147extern int no_unaligned_warning;
149extern int unaligned_dump_stack; 148extern int unaligned_dump_stack;