summaryrefslogtreecommitdiffstats
path: root/fs/bcachefs/disk_groups_types.h
diff options
context:
space:
mode:
authorKent Overstreet <kent.overstreet@linux.dev>2023-10-22 11:12:14 -0400
committerKent Overstreet <kent.overstreet@linux.dev>2023-10-31 12:18:37 -0400
commite677179b35b7ecbe3cefe33011b69d45171e5e9f (patch)
treeac09673fe202f01873a29f8ce7d23cabe2d780ac /fs/bcachefs/disk_groups_types.h
parent37707bb183b4746f27b0beaf0c3273fd7c79dc66 (diff)
downloadlinux-e677179b35b7ecbe3cefe33011b69d45171e5e9f.tar.gz
linux-e677179b35b7ecbe3cefe33011b69d45171e5e9f.tar.bz2
linux-e677179b35b7ecbe3cefe33011b69d45171e5e9f.zip
bcachefs: bch2_disk_path_to_text() no longer takes sb_lock
We're going to be using bch2_target_to_text() -> bch2_disk_path_to_text() from bch2_bkey_ptrs_to_text() and bch2_bkey_ptrs_invalid(), which can be called in any context. This patch adds the actual label to bch_disk_group_cpu so that it can be used by bch2_disk_path_to_text, and splits out bch2_disk_path_to_text() into two variants - like the previous patch, one for when we have a running filesystem and another for when we only have a superblock. Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
Diffstat (limited to 'fs/bcachefs/disk_groups_types.h')
-rw-r--r--fs/bcachefs/disk_groups_types.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/bcachefs/disk_groups_types.h b/fs/bcachefs/disk_groups_types.h
index 55a67a4dca76..a54ef085b13d 100644
--- a/fs/bcachefs/disk_groups_types.h
+++ b/fs/bcachefs/disk_groups_types.h
@@ -5,6 +5,7 @@
struct bch_disk_group_cpu {
bool deleted;
u16 parent;
+ u8 label[BCH_SB_LABEL_SIZE];
struct bch_devs_mask devs;
};