From 7a98f526b52e0ad9a13c77edd1fda528e23640da Mon Sep 17 00:00:00 2001 From: Kent Overstreet Date: Sat, 28 Sep 2024 20:36:50 -0400 Subject: [PATCH] cmd_list: open with noxcl Signed-off-by: Kent Overstreet --- src/commands/list.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/commands/list.rs b/src/commands/list.rs index 33209995..757d6063 100644 --- a/src/commands/list.rs +++ b/src/commands/list.rs @@ -163,6 +163,7 @@ pub struct Cli { fn cmd_list_inner(opt: &Cli) -> anyhow::Result<()> { let mut fs_opts = bcachefs::bch_opts::default(); + opt_set!(fs_opts, noexcl, 1); opt_set!(fs_opts, nochanges, 1); opt_set!(fs_opts, read_only, 1); opt_set!(fs_opts, norecovery, 1);