diff options
author | Kent Overstreet <kent.overstreet@linux.dev> | 2025-08-08 19:34:08 -0400 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2025-08-08 19:35:16 -0400 |
commit | 530e8ade4e6af7d152f4f79bf9f2b9dec6441f2b (patch) | |
tree | 084270bb4753d359209edc71b56866709fbb0a27 /c_src | |
parent | 28db8e8e792288f91fd3165d887fd27208918dc0 (diff) |
device_scan now uses no_version_check
Fix a compatibility issue - old tools can now mount newer filesystems
with incompatible features, even if they can't do anything else with
them.
cmd_show_super now uses no_version_check as well.
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
Diffstat (limited to 'c_src')
-rw-r--r-- | c_src/cmd_super.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/c_src/cmd_super.c b/c_src/cmd_super.c index 4eacabc0..7e270769 100644 --- a/c_src/cmd_super.c +++ b/c_src/cmd_super.c @@ -159,6 +159,7 @@ int cmd_show_super(int argc, char *argv[]) opt_set(opts, noexcl, true); opt_set(opts, nochanges, true); + opt_set(opts, no_version_check, true); struct bch_sb_handle sb; int ret = bch2_read_super(dev, &opts, &sb); |