mirror of
https://github.com/koverstreet/bcachefs-tools.git
synced 2025-02-23 00:00:02 +03:00
17 lines
315 B
C
17 lines
315 B
C
#ifndef _BCACHE_SUPER_TYPES_H
|
|
#define _BCACHE_SUPER_TYPES_H
|
|
|
|
struct bcache_superblock {
|
|
struct bch_sb *sb;
|
|
struct block_device *bdev;
|
|
struct bio *bio;
|
|
unsigned page_order;
|
|
fmode_t mode;
|
|
};
|
|
|
|
struct bch_devs_mask {
|
|
unsigned long d[BITS_TO_LONGS(BCH_SB_MEMBERS_MAX)];
|
|
};
|
|
|
|
#endif /* _BCACHE_SUPER_TYPES_H */
|