Symbol: xfs_globals
fs/xfs/scrub/newbt.c
67
bload->leaf_slack = xfs_globals.bload_leaf_slack;
fs/xfs/scrub/newbt.c
68
bload->node_slack = xfs_globals.bload_node_slack;
fs/xfs/xfs_globals.c
31
struct xfs_globals xfs_globals = {
fs/xfs/xfs_log_recover.c
3492
if (xfs_globals.log_recovery_delay) {
fs/xfs/xfs_log_recover.c
3495
xfs_globals.log_recovery_delay);
fs/xfs/xfs_log_recover.c
3496
msleep(xfs_globals.log_recovery_delay * 1000);
fs/xfs/xfs_message.c
101
if (xfs_globals.bug_on_assert)
fs/xfs/xfs_pwork.c
69
if (xfs_globals.pwork_threads >= 0)
fs/xfs/xfs_pwork.c
70
nr_threads = xfs_globals.pwork_threads;
fs/xfs/xfs_super.c
1698
if (xfs_globals.mount_delay) {
fs/xfs/xfs_super.c
1700
xfs_globals.mount_delay);
fs/xfs/xfs_super.c
1701
msleep(xfs_globals.mount_delay * 1000);
fs/xfs/xfs_super.c
1926
if (xfs_globals.always_cow) {
fs/xfs/xfs_sysctl.h
90
extern struct xfs_globals xfs_globals;
fs/xfs/xfs_sysfs.c
100
xfs_globals.bug_on_assert = false;
fs/xfs/xfs_sysfs.c
112
return sysfs_emit(buf, "%d\n", xfs_globals.bug_on_assert);
fs/xfs/xfs_sysfs.c
132
xfs_globals.log_recovery_delay = val;
fs/xfs/xfs_sysfs.c
142
return sysfs_emit(buf, "%d\n", xfs_globals.log_recovery_delay);
fs/xfs/xfs_sysfs.c
162
xfs_globals.mount_delay = val;
fs/xfs/xfs_sysfs.c
172
return sysfs_emit(buf, "%d\n", xfs_globals.mount_delay);
fs/xfs/xfs_sysfs.c
184
ret = kstrtobool(buf, &xfs_globals.always_cow);
fs/xfs/xfs_sysfs.c
195
return sysfs_emit(buf, "%d\n", xfs_globals.always_cow);
fs/xfs/xfs_sysfs.c
220
xfs_globals.pwork_threads = val;
fs/xfs/xfs_sysfs.c
230
return sysfs_emit(buf, "%d\n", xfs_globals.pwork_threads);
fs/xfs/xfs_sysfs.c
251
ret = kstrtobool(buf, &xfs_globals.larp);
fs/xfs/xfs_sysfs.c
262
return snprintf(buf, PAGE_SIZE, "%d\n", xfs_globals.larp);
fs/xfs/xfs_sysfs.c
279
xfs_globals.bload_leaf_slack = val;
fs/xfs/xfs_sysfs.c
288
return snprintf(buf, PAGE_SIZE, "%d\n", xfs_globals.bload_leaf_slack);
fs/xfs/xfs_sysfs.c
305
xfs_globals.bload_node_slack = val;
fs/xfs/xfs_sysfs.c
314
return snprintf(buf, PAGE_SIZE, "%d\n", xfs_globals.bload_node_slack);
fs/xfs/xfs_sysfs.c
98
xfs_globals.bug_on_assert = true;
fs/xfs/xfs_xattr.c
65
return xfs_has_crc(mp) && xfs_globals.larp;