staging/irda/net: Drop extraneous parentheses around test
[linux-2.6/btrfs-unstable.git] / fs / coda / sysctl.c
blob0301d45000a8a45e4492d1993ce1de5bbabb47e6
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * Sysctl operations for Coda filesystem
4 * Original version: (C) 1996 P. Braam and M. Callahan
5 * Rewritten for Linux 2.1. (C) 1997 Carnegie Mellon University
6 *
7 * Carnegie Mellon encourages users to contribute improvements to
8 * the Coda project. Contact Peter Braam (coda@cs.cmu.edu).
9 */
11 #include <linux/sysctl.h>
13 #include "coda_int.h"
15 #ifdef CONFIG_SYSCTL
16 static struct ctl_table_header *fs_table_header;
18 static struct ctl_table coda_table[] = {
20 .procname = "timeout",
21 .data = &coda_timeout,
22 .maxlen = sizeof(int),
23 .mode = 0644,
24 .proc_handler = proc_dointvec
27 .procname = "hard",
28 .data = &coda_hard,
29 .maxlen = sizeof(int),
30 .mode = 0644,
31 .proc_handler = proc_dointvec
34 .procname = "fake_statfs",
35 .data = &coda_fake_statfs,
36 .maxlen = sizeof(int),
37 .mode = 0600,
38 .proc_handler = proc_dointvec
43 static struct ctl_table fs_table[] = {
45 .procname = "coda",
46 .mode = 0555,
47 .child = coda_table
52 void coda_sysctl_init(void)
54 if ( !fs_table_header )
55 fs_table_header = register_sysctl_table(fs_table);
58 void coda_sysctl_clean(void)
60 if ( fs_table_header ) {
61 unregister_sysctl_table(fs_table_header);
62 fs_table_header = NULL;
66 #else
67 void coda_sysctl_init(void)
71 void coda_sysctl_clean(void)
74 #endif