Remove RAIDZ reconstruct flags from debug defaults

Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Paul Dagnelie <paul.dagnelie@klarasystems.com>
Closes #17227
This commit is contained in:
Paul Dagnelie
2025-08-25 15:23:47 -07:00
committed by Brian Behlendorf
parent 7f7c58389e
commit 0620c979a5
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -251,11 +251,11 @@ spa_mode_t spa_mode_global = SPA_MODE_UNINIT;
#ifdef ZFS_DEBUG
/*
* Everything except dprintf, set_error, spa, and indirect_remap is on
* by default in debug builds.
* Everything except dprintf, set_error, indirect_remap, and raidz_reconstruct
* is on by default in debug builds.
*/
int zfs_flags = ~(ZFS_DEBUG_DPRINTF | ZFS_DEBUG_SET_ERROR |
ZFS_DEBUG_INDIRECT_REMAP);
ZFS_DEBUG_INDIRECT_REMAP | ZFS_DEBUG_RAIDZ_RECONSTRUCT);
#else
int zfs_flags = 0;
#endif