Home
last modified time | relevance | path

Searched refs:xfs_globals (Results 1 – 10 of 10) sorted by relevance

/linux-6.12.1/fs/xfs/
Dxfs_sysfs.c95 xfs_globals.bug_on_assert = true; in bug_on_assert_store()
97 xfs_globals.bug_on_assert = false; in bug_on_assert_store()
109 return sysfs_emit(buf, "%d\n", xfs_globals.bug_on_assert); in bug_on_assert_show()
129 xfs_globals.log_recovery_delay = val; in log_recovery_delay_store()
139 return sysfs_emit(buf, "%d\n", xfs_globals.log_recovery_delay); in log_recovery_delay_show()
159 xfs_globals.mount_delay = val; in mount_delay_store()
169 return sysfs_emit(buf, "%d\n", xfs_globals.mount_delay); in mount_delay_show()
181 ret = kstrtobool(buf, &xfs_globals.always_cow); in always_cow_store()
192 return sysfs_emit(buf, "%d\n", xfs_globals.always_cow); in always_cow_show()
217 xfs_globals.pwork_threads = val; in pwork_threads_store()
[all …]
Dxfs_sysctl.h83 struct xfs_globals { struct
95 extern struct xfs_globals xfs_globals; argument
Dxfs_globals.c35 struct xfs_globals xfs_globals = { variable
Dxfs_pwork.c69 if (xfs_globals.pwork_threads >= 0) in xfs_pwork_init()
70 nr_threads = xfs_globals.pwork_threads; in xfs_pwork_init()
Dxfs_message.c101 if (xfs_globals.bug_on_assert) in assfail()
Dxfs_xattr.c66 return xfs_has_crc(mp) && xfs_globals.larp; in xfs_attr_want_log_assist()
DMakefile81 xfs_globals.o \
Dxfs_super.c1538 if (xfs_globals.mount_delay) { in xfs_fs_fill_super()
1540 xfs_globals.mount_delay); in xfs_fs_fill_super()
1541 msleep(xfs_globals.mount_delay * 1000); in xfs_fs_fill_super()
1744 if (xfs_globals.always_cow) { in xfs_fs_fill_super()
Dxfs_log_recover.c3470 if (xfs_globals.log_recovery_delay) { in xlog_recover()
3473 xfs_globals.log_recovery_delay); in xlog_recover()
3474 msleep(xfs_globals.log_recovery_delay * 1000); in xlog_recover()
/linux-6.12.1/fs/xfs/scrub/
Dnewbt.c56 bload->leaf_slack = xfs_globals.bload_leaf_slack; in xrep_newbt_estimate_slack()
57 bload->node_slack = xfs_globals.bload_node_slack; in xrep_newbt_estimate_slack()