drivers/power/ds2780_battery.c: fix deadlock upon insertion and removal
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / fs / coda / sysctl.c
blobaf56ad56a89ae68982036755438e3a2e22e9798f
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 */
10 #include <linux/sysctl.h>
12 #include "coda_int.h"
14 #ifdef CONFIG_SYSCTL
15 static struct ctl_table_header *fs_table_header;
17 static ctl_table coda_table[] = {
19 .procname = "timeout",
20 .data = &coda_timeout,
21 .maxlen = sizeof(int),
22 .mode = 0644,
23 .proc_handler = proc_dointvec
26 .procname = "hard",
27 .data = &coda_hard,
28 .maxlen = sizeof(int),
29 .mode = 0644,
30 .proc_handler = proc_dointvec
33 .procname = "fake_statfs",
34 .data = &coda_fake_statfs,
35 .maxlen = sizeof(int),
36 .mode = 0600,
37 .proc_handler = proc_dointvec
42 static ctl_table fs_table[] = {
44 .procname = "coda",
45 .mode = 0555,
46 .child = coda_table
51 void coda_sysctl_init(void)
53 if ( !fs_table_header )
54 fs_table_header = register_sysctl_table(fs_table);
57 void coda_sysctl_clean(void)
59 if ( fs_table_header ) {
60 unregister_sysctl_table(fs_table_header);
61 fs_table_header = NULL;
65 #else
66 void coda_sysctl_init(void)
70 void coda_sysctl_clean(void)
73 #endif