2005-04-17 02:20:36 +04:00
/*
* Sysctl operations for Coda filesystem
* Original version : ( C ) 1996 P . Braam and M . Callahan
* Rewritten for Linux 2.1 . ( C ) 1997 Carnegie Mellon University
*
* Carnegie Mellon encourages users to contribute improvements to
* the Coda project . Contact Peter Braam ( coda @ cs . cmu . edu ) .
*/
# include <linux/sysctl.h>
2007-07-19 12:48:51 +04:00
# include "coda_int.h"
2005-04-17 02:20:36 +04:00
2009-01-08 05:07:28 +03:00
# ifdef CONFIG_SYSCTL
2005-04-17 02:20:36 +04:00
static struct ctl_table_header * fs_table_header ;
static ctl_table coda_table [ ] = {
2007-02-14 11:33:55 +03:00
{
. procname = " timeout " ,
. data = & coda_timeout ,
. maxlen = sizeof ( int ) ,
. mode = 0644 ,
2009-11-16 14:11:48 +03:00
. proc_handler = proc_dointvec
2007-02-14 11:33:55 +03:00
} ,
{
. procname = " hard " ,
. data = & coda_hard ,
. maxlen = sizeof ( int ) ,
. mode = 0644 ,
2009-11-16 14:11:48 +03:00
. proc_handler = proc_dointvec
2007-02-14 11:33:55 +03:00
} ,
{
. procname = " fake_statfs " ,
. data = & coda_fake_statfs ,
. maxlen = sizeof ( int ) ,
. mode = 0600 ,
2009-11-16 14:11:48 +03:00
. proc_handler = proc_dointvec
2007-02-14 11:33:55 +03:00
} ,
{ }
2005-04-17 02:20:36 +04:00
} ;
static ctl_table fs_table [ ] = {
2007-02-14 11:33:55 +03:00
{
. procname = " coda " ,
. mode = 0555 ,
. child = coda_table
} ,
{ }
2005-04-17 02:20:36 +04:00
} ;
void coda_sysctl_init ( void )
{
if ( ! fs_table_header )
2007-02-14 11:34:09 +03:00
fs_table_header = register_sysctl_table ( fs_table ) ;
2005-04-17 02:20:36 +04:00
}
2007-07-19 12:48:51 +04:00
void coda_sysctl_clean ( void )
2005-04-17 02:20:36 +04:00
{
if ( fs_table_header ) {
unregister_sysctl_table ( fs_table_header ) ;
fs_table_header = NULL ;
}
}
2011-03-25 11:57:01 +03:00
# else
void coda_sysctl_init ( void )
{
}
void coda_sysctl_clean ( void )
{
}
2011-03-23 02:35:00 +03:00
# endif