sysctl.c (ed2c12f323e8fafbc94f9bcfb924f9df36e64dc7) sysctl.c (abd4f7505bafdd6c5319fe3cb5caf9af6104e17a)
1/*
2 * sysctl.c: General linux system control interface
3 *
4 * Begun 24 March 1995, Stephen Tweedie
5 * Added /proc support, Dec 1995
6 * Added bdflush entry and intvec min/max checking, 2/23/96, Tom Dyas.
7 * Added hooks for /proc/sys/net (minor, minor patch), 96/4/1, Mike Shaver.
8 * Added kernel/java-{interpreter,appletviewer}, 96/5/10, Mike Shaver.

--- 1189 unchanged lines hidden (view full) ---

1198/*
1199 * NOTE: do not add new entries to this table unless you have read
1200 * Documentation/sysctl/ctl_unnumbered.txt
1201 */
1202 { .ctl_name = 0 }
1203};
1204
1205static ctl_table debug_table[] = {
1/*
2 * sysctl.c: General linux system control interface
3 *
4 * Begun 24 March 1995, Stephen Tweedie
5 * Added /proc support, Dec 1995
6 * Added bdflush entry and intvec min/max checking, 2/23/96, Tom Dyas.
7 * Added hooks for /proc/sys/net (minor, minor patch), 96/4/1, Mike Shaver.
8 * Added kernel/java-{interpreter,appletviewer}, 96/5/10, Mike Shaver.

--- 1189 unchanged lines hidden (view full) ---

1198/*
1199 * NOTE: do not add new entries to this table unless you have read
1200 * Documentation/sysctl/ctl_unnumbered.txt
1201 */
1202 { .ctl_name = 0 }
1203};
1204
1205static ctl_table debug_table[] = {
1206#ifdef CONFIG_X86
1207 {
1208 .ctl_name = CTL_UNNUMBERED,
1209 .procname = "exception-trace",
1210 .data = &show_unhandled_signals,
1211 .maxlen = sizeof(int),
1212 .mode = 0644,
1213 .proc_handler = proc_dointvec
1214 },
1215#endif
1206 { .ctl_name = 0 }
1207};
1208
1209static ctl_table dev_table[] = {
1210 { .ctl_name = 0 }
1211};
1212
1213static DEFINE_SPINLOCK(sysctl_lock);

--- 1359 unchanged lines hidden ---
1216 { .ctl_name = 0 }
1217};
1218
1219static ctl_table dev_table[] = {
1220 { .ctl_name = 0 }
1221};
1222
1223static DEFINE_SPINLOCK(sysctl_lock);

--- 1359 unchanged lines hidden ---