diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2007-02-14 03:33:45 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-14 11:09:57 -0500 |
commit | feceb63ec589380f2125edcb70127e6a635af1cc (patch) | |
tree | a5d0071ce2b9f556e66a0636c72bd66f80930988 /include/linux/sysctl.h | |
parent | 8d8cb8a1bbd92a77208bdeaa25c3f17f5da9297d (diff) |
[PATCH] sysctl: s390: move sysctl definitions to sysctl.h
We need to have the the definition of all top level sysctl directories
registers in sysctl.h so we don't conflict by accident and cause abi problems.
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Acked-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/sysctl.h')
-rw-r--r-- | include/linux/sysctl.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/linux/sysctl.h b/include/linux/sysctl.h index 113b92bbe4b9..76541a630770 100644 --- a/include/linux/sysctl.h +++ b/include/linux/sysctl.h | |||
@@ -70,6 +70,8 @@ enum | |||
70 | CTL_BUS=8, /* Busses */ | 70 | CTL_BUS=8, /* Busses */ |
71 | CTL_ABI=9, /* Binary emulation */ | 71 | CTL_ABI=9, /* Binary emulation */ |
72 | CTL_CPU=10, /* CPU stuff (speed scaling, etc) */ | 72 | CTL_CPU=10, /* CPU stuff (speed scaling, etc) */ |
73 | CTL_APPLDATA=2120, /* s390 appldata */ | ||
74 | CTL_S390DBF=5677, /* s390 debug */ | ||
73 | CTL_SUNRPC=7249, /* sunrpc debug */ | 75 | CTL_SUNRPC=7249, /* sunrpc debug */ |
74 | CTL_PM=9899, /* frv power management */ | 76 | CTL_PM=9899, /* frv power management */ |
75 | CTL_FRV=9898, /* frv specific sysctls */ | 77 | CTL_FRV=9898, /* frv specific sysctls */ |
@@ -205,6 +207,11 @@ enum | |||
205 | VM_PANIC_ON_OOM=33, /* panic at out-of-memory */ | 207 | VM_PANIC_ON_OOM=33, /* panic at out-of-memory */ |
206 | VM_VDSO_ENABLED=34, /* map VDSO into new processes? */ | 208 | VM_VDSO_ENABLED=34, /* map VDSO into new processes? */ |
207 | VM_MIN_SLAB=35, /* Percent pages ignored by zone reclaim */ | 209 | VM_MIN_SLAB=35, /* Percent pages ignored by zone reclaim */ |
210 | |||
211 | /* s390 vm cmm sysctls */ | ||
212 | VM_CMM_PAGES=1111, | ||
213 | VM_CMM_TIMED_PAGES=1112, | ||
214 | VM_CMM_TIMEOUT=1113, | ||
208 | }; | 215 | }; |
209 | 216 | ||
210 | 217 | ||