mirror of
https://github.com/torvalds/linux.git
synced 2024-12-04 18:13:04 +00:00
16 lines
386 B
C
16 lines
386 B
C
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||
|
#ifndef _BCACHEFS_JOURNAL_SEQ_BLACKLIST_FORMAT_H
|
||
|
#define _BCACHEFS_JOURNAL_SEQ_BLACKLIST_FORMAT_H
|
||
|
|
||
|
struct journal_seq_blacklist_entry {
|
||
|
__le64 start;
|
||
|
__le64 end;
|
||
|
};
|
||
|
|
||
|
struct bch_sb_field_journal_seq_blacklist {
|
||
|
struct bch_sb_field field;
|
||
|
struct journal_seq_blacklist_entry start[];
|
||
|
};
|
||
|
|
||
|
#endif /* _BCACHEFS_JOURNAL_SEQ_BLACKLIST_FORMAT_H */
|