diff options
author | 2025-01-25 17:19:38 -0500 | |
---|---|---|
committer | 2025-01-25 19:33:19 -0500 | |
commit | 37fd6b8176520c7ebe4edf78b01f0ee0a0aab62d (patch) | |
tree | 11e38b5064f47df82d96c02df21a395a52ebe7c9 | |
parent | bcachefs: Improve decompression error messages (diff) | |
download | wireguard-linux-37fd6b8176520c7ebe4edf78b01f0ee0a0aab62d.tar.xz wireguard-linux-37fd6b8176520c7ebe4edf78b01f0ee0a0aab62d.zip |
bcachefs: rebalance, copygc enabled are runtime opts
Fix a regression from when these were switched to normal opts.h options.
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
-rw-r--r-- | fs/bcachefs/opts.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/bcachefs/opts.h b/fs/bcachefs/opts.h index e763d52e0f38..a182b5d454ba 100644 --- a/fs/bcachefs/opts.h +++ b/fs/bcachefs/opts.h @@ -476,13 +476,13 @@ enum fsck_err_opts { NULL, "Enable nocow mode: enables runtime locking in\n"\ "data move path needed if nocow will ever be in use\n")\ x(copygc_enabled, u8, \ - OPT_FS|OPT_MOUNT, \ + OPT_FS|OPT_MOUNT|OPT_RUNTIME, \ OPT_BOOL(), \ BCH2_NO_SB_OPT, true, \ NULL, "Enable copygc: disable for debugging, or to\n"\ "quiet the system when doing performance testing\n")\ x(rebalance_enabled, u8, \ - OPT_FS|OPT_MOUNT, \ + OPT_FS|OPT_MOUNT|OPT_RUNTIME, \ OPT_BOOL(), \ BCH2_NO_SB_OPT, true, \ NULL, "Enable rebalance: disable for debugging, or to\n"\ |