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
3481
if (xfs_globals.log_recovery_delay) {
fs/xfs/xfs_log_recover.c
3484
xfs_globals.log_recovery_delay);
fs/xfs/xfs_log_recover.c
3485
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
1695
if (xfs_globals.mount_delay) {
fs/xfs/xfs_super.c
1697
xfs_globals.mount_delay);
fs/xfs/xfs_super.c
1698
msleep(xfs_globals.mount_delay * 1000);
fs/xfs/xfs_super.c
1924
if (xfs_globals.always_cow) {
fs/xfs/xfs_sysctl.h
90
extern struct xfs_globals xfs_globals;
fs/xfs/xfs_sysfs.c
110
return sysfs_emit(buf, "%d\n", xfs_globals.bug_on_assert);
fs/xfs/xfs_sysfs.c
130
xfs_globals.log_recovery_delay = val;
fs/xfs/xfs_sysfs.c
140
return sysfs_emit(buf, "%d\n", xfs_globals.log_recovery_delay);
fs/xfs/xfs_sysfs.c
160
xfs_globals.mount_delay = val;
fs/xfs/xfs_sysfs.c
170
return sysfs_emit(buf, "%d\n", xfs_globals.mount_delay);
fs/xfs/xfs_sysfs.c
182
ret = kstrtobool(buf, &xfs_globals.always_cow);
fs/xfs/xfs_sysfs.c
193
return sysfs_emit(buf, "%d\n", xfs_globals.always_cow);
fs/xfs/xfs_sysfs.c
218
xfs_globals.pwork_threads = val;
fs/xfs/xfs_sysfs.c
228
return sysfs_emit(buf, "%d\n", xfs_globals.pwork_threads);
fs/xfs/xfs_sysfs.c
249
ret = kstrtobool(buf, &xfs_globals.larp);
fs/xfs/xfs_sysfs.c
260
return snprintf(buf, PAGE_SIZE, "%d\n", xfs_globals.larp);
fs/xfs/xfs_sysfs.c
277
xfs_globals.bload_leaf_slack = val;
fs/xfs/xfs_sysfs.c
286
return snprintf(buf, PAGE_SIZE, "%d\n", xfs_globals.bload_leaf_slack);
fs/xfs/xfs_sysfs.c
303
xfs_globals.bload_node_slack = val;
fs/xfs/xfs_sysfs.c
312
return snprintf(buf, PAGE_SIZE, "%d\n", xfs_globals.bload_node_slack);
fs/xfs/xfs_sysfs.c
96
xfs_globals.bug_on_assert = true;
fs/xfs/xfs_sysfs.c
98
xfs_globals.bug_on_assert = false;
fs/xfs/xfs_xattr.c
65
return xfs_has_crc(mp) && xfs_globals.larp;