mirror of
https://github.com/koverstreet/bcachefs-tools.git
synced 2025-02-09 00:00:04 +03:00
100 lines
2.2 KiB
C
100 lines
2.2 KiB
C
|
#ifndef _BCACHEFS_DISK_GROUPS_H
|
||
|
#define _BCACHEFS_DISK_GROUPS_H
|
||
|
|
||
|
extern const struct bch_sb_field_ops bch_sb_field_ops_disk_groups;
|
||
|
|
||
|
static inline unsigned disk_groups_nr(struct bch_sb_field_disk_groups *groups)
|
||
|
{
|
||
|
return groups
|
||
|
? (vstruct_end(&groups->field) -
|
||
|
(void *) &groups->entries[0]) / sizeof(struct bch_disk_group)
|
||
|
: 0;
|
||
|
}
|
||
|
|
||
|
struct target {
|
||
|
enum {
|
||
|
TARGET_NULL,
|
||
|
TARGET_DEV,
|
||
|
TARGET_GROUP,
|
||
|
} type;
|
||
|
union {
|
||
|
unsigned dev;
|
||
|
unsigned group;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
#define TARGET_DEV_START 1
|
||
|
#define TARGET_GROUP_START (256 + TARGET_DEV_START)
|
||
|
|
||
|
static inline u16 dev_to_target(unsigned dev)
|
||
|
{
|
||
|
return TARGET_DEV_START + dev;
|
||
|
}
|
||
|
|
||
|
static inline u16 group_to_target(unsigned group)
|
||
|
{
|
||
|
return TARGET_GROUP_START + group;
|
||
|
}
|
||
|
|
||
|
static inline struct target target_decode(unsigned target)
|
||
|
{
|
||
|
if (target >= TARGET_GROUP_START)
|
||
|
return (struct target) {
|
||
|
.type = TARGET_GROUP,
|
||
|
.group = target - TARGET_GROUP_START
|
||
|
};
|
||
|
|
||
|
if (target >= TARGET_DEV_START)
|
||
|
return (struct target) {
|
||
|
.type = TARGET_DEV,
|
||
|
.group = target - TARGET_DEV_START
|
||
|
};
|
||
|
|
||
|
return (struct target) { .type = TARGET_NULL };
|
||
|
}
|
||
|
|
||
|
static inline bool dev_in_target(struct bch_dev *ca, unsigned target)
|
||
|
{
|
||
|
struct target t = target_decode(target);
|
||
|
|
||
|
switch (t.type) {
|
||
|
case TARGET_NULL:
|
||
|
return false;
|
||
|
case TARGET_DEV:
|
||
|
return ca->dev_idx == t.dev;
|
||
|
case TARGET_GROUP:
|
||
|
return ca->mi.group && ca->mi.group - 1 == t.group;
|
||
|
default:
|
||
|
BUG();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
static inline bool dev_idx_in_target(struct bch_fs *c, unsigned dev, unsigned target)
|
||
|
{
|
||
|
bool ret;
|
||
|
|
||
|
rcu_read_lock();
|
||
|
ret = dev_in_target(rcu_dereference(c->devs[dev]), target);
|
||
|
rcu_read_unlock();
|
||
|
|
||
|
return ret;
|
||
|
}
|
||
|
|
||
|
const struct bch_devs_mask *bch2_target_to_mask(struct bch_fs *, unsigned);
|
||
|
|
||
|
int bch2_disk_path_find(struct bch_sb_handle *, const char *);
|
||
|
int bch2_disk_path_find_or_create(struct bch_sb_handle *, const char *);
|
||
|
int bch2_disk_path_print(struct bch_sb_handle *, char *, size_t, unsigned);
|
||
|
|
||
|
int bch2_opt_target_parse(struct bch_fs *, const char *, u64 *);
|
||
|
int bch2_opt_target_print(struct bch_fs *, char *, size_t, u64);
|
||
|
|
||
|
int bch2_sb_disk_groups_to_cpu(struct bch_fs *);
|
||
|
|
||
|
int bch2_dev_group_set(struct bch_fs *, struct bch_dev *, const char *);
|
||
|
|
||
|
const char *bch2_sb_validate_disk_groups(struct bch_sb *,
|
||
|
struct bch_sb_field *);
|
||
|
|
||
|
#endif /* _BCACHEFS_DISK_GROUPS_H */
|