Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at for-next 15 lines 386 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef _BCACHEFS_JOURNAL_SEQ_BLACKLIST_FORMAT_H 3#define _BCACHEFS_JOURNAL_SEQ_BLACKLIST_FORMAT_H 4 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 */