mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 08:44:21 +08:00
1c6fdbd8f2
Initially forked from drivers/md/bcache, bcachefs is a new copy-on-write filesystem with every feature you could possibly want. Website: https://bcachefs.org Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
15 lines
502 B
C
15 lines
502 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _BCACHEFS_JOURNAL_SEQ_BLACKLIST_H
|
|
#define _BCACHEFS_JOURNAL_SEQ_BLACKLIST_H
|
|
|
|
struct journal_replay;
|
|
|
|
struct journal_seq_blacklist *
|
|
bch2_journal_seq_blacklist_find(struct journal *, u64);
|
|
int bch2_journal_seq_should_ignore(struct bch_fs *, u64, struct btree *);
|
|
int bch2_journal_seq_blacklist_read(struct journal *,
|
|
struct journal_replay *);
|
|
void bch2_journal_seq_blacklist_write(struct journal *);
|
|
|
|
#endif /* _BCACHEFS_JOURNAL_SEQ_BLACKLIST_H */
|