Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

sysctl: remove obsolete comments

ctl_unnumbered.txt have been removed in Documentation directory so just
also remove this invalid comments

[akpm@linux-foundation.org: fix Documentation/sysctl/00-INDEX, per Dave]
Signed-off-by: Jovi Zhang <bookjovi@gmail.com>
Cc: Dave Young <hidave.darkstar@gmail.com>
Acked-by: WANG Cong <xiyou.wangcong@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Jovi Zhang and committed by
Linus Torvalds
e020e742 55610500

-19
-2
Documentation/sysctl/00-INDEX
··· 4 4 - general information about /proc/sys/ sysctl files. 5 5 abi.txt 6 6 - documentation for /proc/sys/abi/*. 7 - ctl_unnumbered.txt 8 - - explanation of why one should not add new binary sysctl numbers. 9 7 fs.txt 10 8 - documentation for /proc/sys/fs/*. 11 9 kernel.txt
-17
kernel/sysctl.c
··· 246 246 .mode = 0555, 247 247 .child = dev_table, 248 248 }, 249 - /* 250 - * NOTE: do not add new entries to this table unless you have read 251 - * Documentation/sysctl/ctl_unnumbered.txt 252 - */ 253 249 { } 254 250 }; 255 251 ··· 968 972 .proc_handler = proc_dointvec, 969 973 }, 970 974 #endif 971 - /* 972 - * NOTE: do not add new entries to this table unless you have read 973 - * Documentation/sysctl/ctl_unnumbered.txt 974 - */ 975 975 { } 976 976 }; 977 977 ··· 1328 1336 .extra2 = &one, 1329 1337 }, 1330 1338 #endif 1331 - 1332 - /* 1333 - * NOTE: do not add new entries to this table unless you have read 1334 - * Documentation/sysctl/ctl_unnumbered.txt 1335 - */ 1336 1339 { } 1337 1340 }; 1338 1341 ··· 1483 1496 .proc_handler = &pipe_proc_fn, 1484 1497 .extra1 = &pipe_min_size, 1485 1498 }, 1486 - /* 1487 - * NOTE: do not add new entries to this table unless you have read 1488 - * Documentation/sysctl/ctl_unnumbered.txt 1489 - */ 1490 1499 { } 1491 1500 }; 1492 1501