xref: /linux/fs/bcachefs/journal_seq_blacklist_format.h (revision 2a6b6c9a226279b4f6668450ddb21ae655558087)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _BCACHEFS_JOURNAL_SEQ_BLACKLIST_FORMAT_H
3 #define _BCACHEFS_JOURNAL_SEQ_BLACKLIST_FORMAT_H
4 
5 struct journal_seq_blacklist_entry {
6 	__le64			start;
7 	__le64			end;
8 };
9 
10 struct 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