mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
0560eb9abf
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
20 lines
376 B
C
20 lines
376 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _BCACHEFS_EC_FORMAT_H
|
|
#define _BCACHEFS_EC_FORMAT_H
|
|
|
|
struct bch_stripe {
|
|
struct bch_val v;
|
|
__le16 sectors;
|
|
__u8 algorithm;
|
|
__u8 nr_blocks;
|
|
__u8 nr_redundant;
|
|
|
|
__u8 csum_granularity_bits;
|
|
__u8 csum_type;
|
|
__u8 pad;
|
|
|
|
struct bch_extent_ptr ptrs[];
|
|
} __packed __aligned(8);
|
|
|
|
#endif /* _BCACHEFS_EC_FORMAT_H */
|