| Kernel v2.4.11 /kernel/sysctl.c |
|---|
 2.4.11
 kernel
 sysctl.c
diff -u --recursive --new-file v2.4.10/linux/kernel/sysctl.c linux/kernel/sysctl.c
--- v2.4.10/linux/kernel/sysctl.c Sun Sep 23 11:41:01 2001
+++ linux/kernel/sysctl.c Fri Oct 5 12:23:53 2001
@@ -170,6 +170,8 @@
0644, NULL, &proc_dointvec},
{KERN_CORE_USES_PID, "core_uses_pid", &core_uses_pid, sizeof(int),
0644, NULL, &proc_dointvec},
+ {KERN_TAINTED, "tainted", &tainted, sizeof(int),
+ 0644, NULL, &proc_dointvec},
{KERN_CAP_BSET, "cap-bound", &cap_bset, sizeof(kernel_cap_t),
0600, NULL, &proc_dointvec_bset},
#ifdef CONFIG_BLK_DEV_INITRD
@@ -286,8 +288,6 @@
0644, NULL, &proc_dointvec},
{FS_NRDQUOT, "dquot-nr", &nr_dquots, 2*sizeof(int),
0444, NULL, &proc_dointvec},
- {FS_MAXDQUOT, "dquot-max", &max_dquots, sizeof(int),
- 0644, NULL, &proc_dointvec},
{FS_DENTRY, "dentry-state", &dentry_stat, 6*sizeof(int),
0444, NULL, &proc_dointvec},
{FS_OVERFLOWUID, "overflowuid", &fs_overflowuid, sizeof(int), 0644, NULL,
|