mirror of
https://github.com/koverstreet/bcachefs-tools.git
synced 2025-02-03 00:00:07 +03:00
13 lines
235 B
C
13 lines
235 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;
|
|
};
|
|
|
|
#endif /* _BCACHE_SUPER_TYPES_H */
|