mm/memunmap: don't access uninitialized memmap in memunmap_pages()
[linux-2.6-block.git] / fs / xfs / xfs_globals.c
CommitLineData
0b61f8a4 1// SPDX-License-Identifier: GPL-2.0
1da177e4 2/*
7b718769
NS
3 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
4 * All Rights Reserved.
1da177e4 5 */
1da177e4 6#include "xfs.h"
1da177e4 7
1da177e4
LT
8/*
9 * Tunable XFS parameters. xfs_params is required even when CONFIG_SYSCTL=n,
10 * other XFS code uses these values. Times are measured in centisecs (i.e.
83104d44
DW
11 * 100ths of a second) with the exception of eofb_timer and cowb_timer, which
12 * are measured in seconds.
1da177e4
LT
13 */
14xfs_param_t xfs_params = {
15 /* MIN DFLT MAX */
1da177e4
LT
16 .sgid_inherit = { 0, 0, 1 },
17 .symlink_mode = { 0, 0, 1 },
d519da41 18 .panic_mask = { 0, 0, 256 },
1da177e4
LT
19 .error_level = { 0, 3, 11 },
20 .syncd_timer = { 1*100, 30*100, 7200*100},
21 .stats_clear = { 0, 0, 1 },
22 .inherit_sync = { 0, 1, 1 },
23 .inherit_nodump = { 0, 1, 1 },
24 .inherit_noatim = { 0, 1, 1 },
25 .xfs_buf_timer = { 100/2, 1*100, 30*100 },
26 .xfs_buf_age = { 1*100, 15*100, 7200*100},
27 .inherit_nosym = { 0, 0, 1 },
28 .rotorstep = { 1, 1, 255 },
d3446eac 29 .inherit_nodfrg = { 0, 1, 1 },
8da22d7a 30 .fstrm_timer = { 1, 30*100, 3600*100},
579b62fa 31 .eofb_timer = { 1, 300, 3600*24},
83104d44 32 .cowb_timer = { 1, 1800, 3600*24},
1da177e4 33};
2e227178
BF
34
35struct xfs_globals xfs_globals = {
36 .log_recovery_delay = 0, /* no delay by default */
dae5cd81 37 .mount_delay = 0, /* no delay by default */
1040960e
BF
38#ifdef XFS_ASSERT_FATAL
39 .bug_on_assert = true, /* assert failures BUG() */
40#else
41 .bug_on_assert = false, /* assert failures WARN() */
42#endif
40786717
DW
43#ifdef DEBUG
44 .pwork_threads = -1, /* automatic thread detection */
45#endif
2e227178 46};