Merge to Fedora kernel-2.6.18-1.2224_FC5 patched with stable patch-2.6.18.1-vs2.0...
[linux-2.6.git] / fs / xfs / linux-2.6 / xfs_globals.c
1 /*
2  * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3  * All Rights Reserved.
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it would be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write the Free Software Foundation,
16  * Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17  */
18 #include "xfs.h"
19 #include "xfs_cred.h"
20 #include "xfs_sysctl.h"
21
22 /*
23  * System memory size - used to scale certain data structures in XFS.
24  */
25 unsigned long xfs_physmem;
26
27 /*
28  * Tunable XFS parameters.  xfs_params is required even when CONFIG_SYSCTL=n,
29  * other XFS code uses these values.  Times are measured in centisecs (i.e.
30  * 100ths of a second).
31  */
32 xfs_param_t xfs_params = {
33                           /*    MIN             DFLT            MAX     */
34         .restrict_chown = {     0,              1,              1       },
35         .sgid_inherit   = {     0,              0,              1       },
36         .symlink_mode   = {     0,              0,              1       },
37         .panic_mask     = {     0,              0,              127     },
38         .error_level    = {     0,              3,              11      },
39         .syncd_timer    = {     1*100,          30*100,         7200*100},
40         .stats_clear    = {     0,              0,              1       },
41         .inherit_sync   = {     0,              1,              1       },
42         .inherit_nodump = {     0,              1,              1       },
43         .inherit_noatim = {     0,              1,              1       },
44         .xfs_buf_timer  = {     100/2,          1*100,          30*100  },
45         .xfs_buf_age    = {     1*100,          15*100,         7200*100},
46         .inherit_nosym  = {     0,              0,              1       },
47         .rotorstep      = {     1,              1,              255     },
48         .inherit_nodfrg = {     0,              1,              1       },
49 };
50
51 /*
52  * Global system credential structure.
53  */
54 cred_t sys_cred_val, *sys_cred = &sys_cred_val;
55