hc
2024-05-10 9999e48639b3cecb08ffb37358bcba3b48161b29
kernel/fs/xfs/xfs_globals.c
....@@ -4,7 +4,6 @@
44 * All Rights Reserved.
55 */
66 #include "xfs.h"
7
-#include "xfs_sysctl.h"
87
98 /*
109 * Tunable XFS parameters. xfs_params is required even when CONFIG_SYSCTL=n,
....@@ -16,7 +15,7 @@
1615 /* MIN DFLT MAX */
1716 .sgid_inherit = { 0, 0, 1 },
1817 .symlink_mode = { 0, 0, 1 },
19
- .panic_mask = { 0, 0, 255 },
18
+ .panic_mask = { 0, 0, 256 },
2019 .error_level = { 0, 3, 11 },
2120 .syncd_timer = { 1*100, 30*100, 7200*100},
2221 .stats_clear = { 0, 0, 1 },
....@@ -41,4 +40,7 @@
4140 #else
4241 .bug_on_assert = false, /* assert failures WARN() */
4342 #endif
43
+#ifdef DEBUG
44
+ .pwork_threads = -1, /* automatic thread detection */
45
+#endif
4446 };