Merge tag 'perf-urgent-2023-01-06' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-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.
9669f51d
DW
11 * 100ths of a second) with the exception of blockgc_timer, which is measured
12 * 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},
9669f51d 31 .blockgc_timer = { 1, 300, 3600*24},
1da177e4 32};
2e227178
BF
33
34struct xfs_globals xfs_globals = {
35 .log_recovery_delay = 0, /* no delay by default */
dae5cd81 36 .mount_delay = 0, /* no delay by default */
1040960e
BF
37#ifdef XFS_ASSERT_FATAL
38 .bug_on_assert = true, /* assert failures BUG() */
39#else
40 .bug_on_assert = false, /* assert failures WARN() */
41#endif
40786717
DW
42#ifdef DEBUG
43 .pwork_threads = -1, /* automatic thread detection */
535e2f75 44 .larp = false, /* log attribute replay */
40786717 45#endif
2e227178 46};