brintos

brintos / linux-shallow public Read only

0
0
Text · 386 B · 2566b12 Raw
16 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2#ifndef _BCACHEFS_JOURNAL_SEQ_BLACKLIST_FORMAT_H3#define _BCACHEFS_JOURNAL_SEQ_BLACKLIST_FORMAT_H4 5struct journal_seq_blacklist_entry {6	__le64			start;7	__le64			end;8};9 10struct bch_sb_field_journal_seq_blacklist {11	struct bch_sb_field	field;12	struct journal_seq_blacklist_entry start[];13};14 15#endif /* _BCACHEFS_JOURNAL_SEQ_BLACKLIST_FORMAT_H */16