sysctl.c (ab09203e302b6e526f6930f3e460064b0f253ae9) | sysctl.c (6d4561110a3e9fa742aeec6717248a491dfb1878) |
---|---|
1/* 2 * Sysctl operations for Coda filesystem 3 * Original version: (C) 1996 P. Braam and M. Callahan 4 * Rewritten for Linux 2.1. (C) 1997 Carnegie Mellon University 5 * 6 * Carnegie Mellon encourages users to contribute improvements to 7 * the Coda project. Contact Peter Braam (coda@cs.cmu.edu). 8 */ --- 7 unchanged lines hidden (view full) --- 16#endif 17 18static ctl_table coda_table[] = { 19 { 20 .procname = "timeout", 21 .data = &coda_timeout, 22 .maxlen = sizeof(int), 23 .mode = 0644, | 1/* 2 * Sysctl operations for Coda filesystem 3 * Original version: (C) 1996 P. Braam and M. Callahan 4 * Rewritten for Linux 2.1. (C) 1997 Carnegie Mellon University 5 * 6 * Carnegie Mellon encourages users to contribute improvements to 7 * the Coda project. Contact Peter Braam (coda@cs.cmu.edu). 8 */ --- 7 unchanged lines hidden (view full) --- 16#endif 17 18static ctl_table coda_table[] = { 19 { 20 .procname = "timeout", 21 .data = &coda_timeout, 22 .maxlen = sizeof(int), 23 .mode = 0644, |
24 .proc_handler = &proc_dointvec | 24 .proc_handler = proc_dointvec |
25 }, 26 { 27 .procname = "hard", 28 .data = &coda_hard, 29 .maxlen = sizeof(int), 30 .mode = 0644, | 25 }, 26 { 27 .procname = "hard", 28 .data = &coda_hard, 29 .maxlen = sizeof(int), 30 .mode = 0644, |
31 .proc_handler = &proc_dointvec | 31 .proc_handler = proc_dointvec |
32 }, 33 { 34 .procname = "fake_statfs", 35 .data = &coda_fake_statfs, 36 .maxlen = sizeof(int), 37 .mode = 0600, | 32 }, 33 { 34 .procname = "fake_statfs", 35 .data = &coda_fake_statfs, 36 .maxlen = sizeof(int), 37 .mode = 0600, |
38 .proc_handler = &proc_dointvec | 38 .proc_handler = proc_dointvec |
39 }, 40 {} 41}; 42 43#ifdef CONFIG_SYSCTL 44static ctl_table fs_table[] = { 45 { 46 .procname = "coda", --- 24 unchanged lines hidden --- | 39 }, 40 {} 41}; 42 43#ifdef CONFIG_SYSCTL 44static ctl_table fs_table[] = { 45 { 46 .procname = "coda", --- 24 unchanged lines hidden --- |