diff options
author | Ryan Moeller <[email protected]> | 2021-03-31 13:56:37 -0400 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2021-04-07 13:24:38 -0700 |
commit | 7f789e150f8d8df79e90748046a8469ec354e1a4 (patch) | |
tree | e74994e4852964a8f511804a740660c199ea381a /module | |
parent | 917f4b334c3141a3e1bd5df1456d40b010dfe65f (diff) |
Don't scale zfs_zevent_len_max by CPU count
The lower bound for this scaling to too low and the upper bound is too
high. Use a fixed default length of 512 instead, which is a reasonable
value on any system.
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Ryan Moeller <[email protected]>
Closes #11822
Diffstat (limited to 'module')
-rw-r--r-- | module/zfs/fm.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/module/zfs/fm.c b/module/zfs/fm.c index c79d291ab..72162afd5 100644 --- a/module/zfs/fm.c +++ b/module/zfs/fm.c @@ -69,7 +69,7 @@ #include <sys/console.h> #include <sys/zfs_ioctl.h> -int zfs_zevent_len_max = 0; +int zfs_zevent_len_max = 512; int zfs_zevent_cols = 80; int zfs_zevent_console = 0; @@ -1620,9 +1620,6 @@ fm_init(void) zevent_len_cur = 0; zevent_flags = 0; - if (zfs_zevent_len_max == 0) - zfs_zevent_len_max = ERPT_MAX_ERRS * MAX(max_ncpus, 4); - /* Initialize zevent allocation and generation kstats */ fm_ksp = kstat_create("zfs", 0, "fm", "misc", KSTAT_TYPE_NAMED, sizeof (struct erpt_kstat) / sizeof (kstat_named_t), |