This commit was manufactured by cvs2svn to create branch 'vserver'.
[linux-2.6.git] / fs / xfs / linux-2.6 / xfs_sysctl.h
1 /*
2  * Copyright (c) 2001-2004 Silicon Graphics, Inc.  All Rights Reserved.
3  *
4  * This program is free software; you can redistribute it and/or modify it
5  * under the terms of version 2 of the GNU General Public License as
6  * published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it would be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11  *
12  * Further, this software is distributed without any warranty that it is
13  * free of the rightful claim of any third person regarding infringement
14  * or the like.  Any license provided herein, whether implied or
15  * otherwise, applies only to this software file.  Patent licenses, if
16  * any, provided herein do not apply to combinations of this program with
17  * other software, or any other product whatsoever.
18  *
19  * You should have received a copy of the GNU General Public License along
20  * with this program; if not, write the Free Software Foundation, Inc., 59
21  * Temple Place - Suite 330, Boston MA 02111-1307, USA.
22  *
23  * Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
24  * Mountain View, CA  94043, or:
25  *
26  * http://www.sgi.com
27  *
28  * For further information regarding this notice, see:
29  *
30  * http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
31  */
32
33 #ifndef __XFS_SYSCTL_H__
34 #define __XFS_SYSCTL_H__
35
36 #include <linux/sysctl.h>
37
38 /*
39  * Tunable xfs parameters
40  */
41
42 typedef struct xfs_sysctl_val {
43         int min;
44         int val;
45         int max;
46 } xfs_sysctl_val_t;
47
48 typedef struct xfs_param {
49         xfs_sysctl_val_t restrict_chown;/* Root/non-root can give away files.*/
50         xfs_sysctl_val_t sgid_inherit;  /* Inherit S_ISGID if process' GID is
51                                          * not a member of parent dir GID. */
52         xfs_sysctl_val_t symlink_mode;  /* Link creat mode affected by umask */
53         xfs_sysctl_val_t panic_mask;    /* bitmask to cause panic on errors. */
54         xfs_sysctl_val_t error_level;   /* Degree of reporting for problems  */
55         xfs_sysctl_val_t syncd_timer;   /* Interval between xfssyncd wakeups */
56         xfs_sysctl_val_t stats_clear;   /* Reset all XFS statistics to zero. */
57         xfs_sysctl_val_t inherit_sync;  /* Inherit the "sync" inode flag. */
58         xfs_sysctl_val_t inherit_nodump;/* Inherit the "nodump" inode flag. */
59         xfs_sysctl_val_t inherit_noatim;/* Inherit the "noatime" inode flag. */
60         xfs_sysctl_val_t xfs_buf_timer; /* Interval between xfsbufd wakeups. */
61         xfs_sysctl_val_t xfs_buf_age;   /* Metadata buffer age before flush. */
62 } xfs_param_t;
63
64 /*
65  * xfs_error_level:
66  *
67  * How much error reporting will be done when internal problems are
68  * encountered.  These problems normally return an EFSCORRUPTED to their
69  * caller, with no other information reported.
70  *
71  * 0    No error reports
72  * 1    Report EFSCORRUPTED errors that will cause a filesystem shutdown
73  * 5    Report all EFSCORRUPTED errors (all of the above errors, plus any
74  *      additional errors that are known to not cause shutdowns)
75  *
76  * xfs_panic_mask bit 0x8 turns the error reports into panics
77  */
78
79 enum {
80         /* XFS_REFCACHE_SIZE = 1 */
81         /* XFS_REFCACHE_PURGE = 2 */
82         XFS_RESTRICT_CHOWN = 3,
83         XFS_SGID_INHERIT = 4,
84         XFS_SYMLINK_MODE = 5,
85         XFS_PANIC_MASK = 6,
86         XFS_ERRLEVEL = 7,
87         XFS_SYNCD_TIMER = 8,
88         /* XFS_PROBE_DMAPI = 9 */
89         /* XFS_PROBE_IOOPS = 10 */
90         /* XFS_PROBE_QUOTA = 11 */
91         XFS_STATS_CLEAR = 12,
92         XFS_INHERIT_SYNC = 13,
93         XFS_INHERIT_NODUMP = 14,
94         XFS_INHERIT_NOATIME = 15,
95         XFS_BUF_TIMER = 16,
96         XFS_BUF_AGE = 17,
97         /* XFS_IO_BYPASS = 18 */
98 };
99
100 extern xfs_param_t      xfs_params;
101
102 #ifdef CONFIG_SYSCTL
103 extern void xfs_sysctl_register(void);
104 extern void xfs_sysctl_unregister(void);
105 #else
106 # define xfs_sysctl_register()          do { } while (0)
107 # define xfs_sysctl_unregister()        do { } while (0)
108 #endif /* CONFIG_SYSCTL */
109
110 #endif /* __XFS_SYSCTL_H__ */