]> git.sesse.net Git - bcachefs-tools-debian/blob - libbcachefs/super_types.h
Update bcachefs sources to 6a25f7a00d bcachefs: fix ioctl code
[bcachefs-tools-debian] / libbcachefs / super_types.h
1 #ifndef _BCACHE_SUPER_TYPES_H
2 #define _BCACHE_SUPER_TYPES_H
3
4 struct bcache_superblock {
5         struct bch_sb           *sb;
6         struct block_device     *bdev;
7         struct bio              *bio;
8         unsigned                page_order;
9         fmode_t                 mode;
10 };
11
12 struct bch_devs_mask {
13         unsigned long d[BITS_TO_LONGS(BCH_SB_MEMBERS_MAX)];
14 };
15
16 #endif /* _BCACHE_SUPER_TYPES_H */