Commit 2be7fe07 authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

sysctl.c: add text telling people to use CTL_UNNUMBERED

Hopefully this will help people to understand the new regime.

Cc: "Eric W. Biederman" <ebiederm@xmission.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 97d8f83c
...@@ -203,7 +203,10 @@ static ctl_table root_table[] = { ...@@ -203,7 +203,10 @@ static ctl_table root_table[] = {
.mode = 0555, .mode = 0555,
.child = dev_table, .child = dev_table,
}, },
/*
* NOTE: do not add new entries to this table unless you have read
* Documentation/sysctl/ctl_unnumbered.txt
*/
{ .ctl_name = 0 } { .ctl_name = 0 }
}; };
...@@ -992,6 +995,14 @@ static ctl_table vm_table[] = { ...@@ -992,6 +995,14 @@ static ctl_table vm_table[] = {
.extra1 = &zero, .extra1 = &zero,
}, },
#endif #endif
/*
* NOTE: do not add new entries to this table unless you have read
* Documentation/sysctl/ctl_unnumbered.txt
*/
/*
* NOTE: do not add new entries to this table unless you have read
* Documentation/sysctl/ctl_unnumbered.txt
*/
{ .ctl_name = 0 } { .ctl_name = 0 }
}; };
...@@ -1132,6 +1143,14 @@ static ctl_table fs_table[] = { ...@@ -1132,6 +1143,14 @@ static ctl_table fs_table[] = {
.child = binfmt_misc_table, .child = binfmt_misc_table,
}, },
#endif #endif
/*
* NOTE: do not add new entries to this table unless you have read
* Documentation/sysctl/ctl_unnumbered.txt
*/
/*
* NOTE: do not add new entries to this table unless you have read
* Documentation/sysctl/ctl_unnumbered.txt
*/
{ .ctl_name = 0 } { .ctl_name = 0 }
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment