| .. | .. |
|---|
| 4 | 4 | * All Rights Reserved. |
|---|
| 5 | 5 | */ |
|---|
| 6 | 6 | #include "xfs.h" |
|---|
| 7 | | -#include "xfs_sysctl.h" |
|---|
| 8 | 7 | |
|---|
| 9 | 8 | /* |
|---|
| 10 | 9 | * Tunable XFS parameters. xfs_params is required even when CONFIG_SYSCTL=n, |
|---|
| .. | .. |
|---|
| 16 | 15 | /* MIN DFLT MAX */ |
|---|
| 17 | 16 | .sgid_inherit = { 0, 0, 1 }, |
|---|
| 18 | 17 | .symlink_mode = { 0, 0, 1 }, |
|---|
| 19 | | - .panic_mask = { 0, 0, 255 }, |
|---|
| 18 | + .panic_mask = { 0, 0, 256 }, |
|---|
| 20 | 19 | .error_level = { 0, 3, 11 }, |
|---|
| 21 | 20 | .syncd_timer = { 1*100, 30*100, 7200*100}, |
|---|
| 22 | 21 | .stats_clear = { 0, 0, 1 }, |
|---|
| .. | .. |
|---|
| 41 | 40 | #else |
|---|
| 42 | 41 | .bug_on_assert = false, /* assert failures WARN() */ |
|---|
| 43 | 42 | #endif |
|---|
| 43 | +#ifdef DEBUG |
|---|
| 44 | + .pwork_threads = -1, /* automatic thread detection */ |
|---|
| 45 | +#endif |
|---|
| 44 | 46 | }; |
|---|