diff options
author | Robert Love <rml@novell.com> | 2005-07-13 12:38:18 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-07-13 14:09:31 -0400 |
commit | 0399cb08c54708db231d616f106f64d920e0b723 (patch) | |
tree | f0424d43c578f7c5c1e7aa6ea6ca1c906c7ac289 /kernel/sysctl.c | |
parent | 153f805781d35c91ab2f54aa2b8930cc4cfc7e89 (diff) |
[PATCH] inotify: move sysctl
This moves the inotify sysctl knobs to "/proc/sys/fs/inotify" from
"/proc/sys/fs". Also some related cleanup.
Signed-off-by: Robert Love <rml@novell.com>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'kernel/sysctl.c')
-rw-r--r-- | kernel/sysctl.c | 51 |
1 files changed, 11 insertions, 40 deletions
diff --git a/kernel/sysctl.c b/kernel/sysctl.c index b240e2cb86fc..e60b9c36f1f0 100644 --- a/kernel/sysctl.c +++ b/kernel/sysctl.c | |||
@@ -67,12 +67,6 @@ extern int printk_ratelimit_jiffies; | |||
67 | extern int printk_ratelimit_burst; | 67 | extern int printk_ratelimit_burst; |
68 | extern int pid_max_min, pid_max_max; | 68 | extern int pid_max_min, pid_max_max; |
69 | 69 | ||
70 | #ifdef CONFIG_INOTIFY | ||
71 | extern int inotify_max_user_devices; | ||
72 | extern int inotify_max_user_watches; | ||
73 | extern int inotify_max_queued_events; | ||
74 | #endif | ||
75 | |||
76 | #if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86) | 70 | #if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86) |
77 | int unknown_nmi_panic; | 71 | int unknown_nmi_panic; |
78 | extern int proc_unknown_nmi_panic(ctl_table *, int, struct file *, | 72 | extern int proc_unknown_nmi_panic(ctl_table *, int, struct file *, |
@@ -152,6 +146,9 @@ extern ctl_table random_table[]; | |||
152 | #ifdef CONFIG_UNIX98_PTYS | 146 | #ifdef CONFIG_UNIX98_PTYS |
153 | extern ctl_table pty_table[]; | 147 | extern ctl_table pty_table[]; |
154 | #endif | 148 | #endif |
149 | #ifdef CONFIG_INOTIFY | ||
150 | extern ctl_table inotify_table[]; | ||
151 | #endif | ||
155 | 152 | ||
156 | #ifdef HAVE_ARCH_PICK_MMAP_LAYOUT | 153 | #ifdef HAVE_ARCH_PICK_MMAP_LAYOUT |
157 | int sysctl_legacy_va_layout; | 154 | int sysctl_legacy_va_layout; |
@@ -957,6 +954,14 @@ static ctl_table fs_table[] = { | |||
957 | .mode = 0644, | 954 | .mode = 0644, |
958 | .proc_handler = &proc_dointvec, | 955 | .proc_handler = &proc_dointvec, |
959 | }, | 956 | }, |
957 | #ifdef CONFIG_INOTIFY | ||
958 | { | ||
959 | .ctl_name = FS_INOTIFY, | ||
960 | .procname = "inotify", | ||
961 | .mode = 0555, | ||
962 | .child = inotify_table, | ||
963 | }, | ||
964 | #endif | ||
960 | #endif | 965 | #endif |
961 | { | 966 | { |
962 | .ctl_name = KERN_SETUID_DUMPABLE, | 967 | .ctl_name = KERN_SETUID_DUMPABLE, |
@@ -966,40 +971,6 @@ static ctl_table fs_table[] = { | |||
966 | .mode = 0644, | 971 | .mode = 0644, |
967 | .proc_handler = &proc_dointvec, | 972 | .proc_handler = &proc_dointvec, |
968 | }, | 973 | }, |
969 | #ifdef CONFIG_INOTIFY | ||
970 | { | ||
971 | .ctl_name = INOTIFY_MAX_USER_DEVICES, | ||
972 | .procname = "max_user_devices", | ||
973 | .data = &inotify_max_user_devices, | ||
974 | .maxlen = sizeof(int), | ||
975 | .mode = 0644, | ||
976 | .proc_handler = &proc_dointvec_minmax, | ||
977 | .strategy = &sysctl_intvec, | ||
978 | .extra1 = &zero, | ||
979 | }, | ||
980 | |||
981 | { | ||
982 | .ctl_name = INOTIFY_MAX_USER_WATCHES, | ||
983 | .procname = "max_user_watches", | ||
984 | .data = &inotify_max_user_watches, | ||
985 | .maxlen = sizeof(int), | ||
986 | .mode = 0644, | ||
987 | .proc_handler = &proc_dointvec_minmax, | ||
988 | .strategy = &sysctl_intvec, | ||
989 | .extra1 = &zero, | ||
990 | }, | ||
991 | |||
992 | { | ||
993 | .ctl_name = INOTIFY_MAX_QUEUED_EVENTS, | ||
994 | .procname = "max_queued_events", | ||
995 | .data = &inotify_max_queued_events, | ||
996 | .maxlen = sizeof(int), | ||
997 | .mode = 0644, | ||
998 | .proc_handler = &proc_dointvec_minmax, | ||
999 | .strategy = &sysctl_intvec, | ||
1000 | .extra1 = &zero | ||
1001 | }, | ||
1002 | #endif | ||
1003 | { .ctl_name = 0 } | 974 | { .ctl_name = 0 } |
1004 | }; | 975 | }; |
1005 | 976 | ||