diff options
author | Kent Overstreet <kent.overstreet@gmail.com> | 2020-10-07 05:18:21 +0300 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2023-10-23 00:08:44 +0300 |
commit | 61ce38b862c17acccd0df0004d69710d8b438e99 (patch) | |
tree | 4eefba287f9dee4f51ece3f2aac3d9494b5d2854 /fs/bcachefs/journal.h | |
parent | d5e4dcc29cce41b4bb51bf83c54940018d57e598 (diff) | |
download | linux-61ce38b862c17acccd0df0004d69710d8b438e99.tar.xz |
bcachefs: Fix journal_seq_copy()
We also need to update the journal's bloom filter of inode numbers that
each journal write has upudates for - in case the inode gets evicted
before it gets fsynced.
Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
Diffstat (limited to 'fs/bcachefs/journal.h')
-rw-r--r-- | fs/bcachefs/journal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/bcachefs/journal.h b/fs/bcachefs/journal.h index 26654b9cf0ea..b8e74c483a23 100644 --- a/fs/bcachefs/journal.h +++ b/fs/bcachefs/journal.h @@ -147,6 +147,7 @@ static inline u64 journal_cur_seq(struct journal *j) } u64 bch2_inode_journal_seq(struct journal *, u64); +void bch2_journal_set_has_inum(struct journal *, u64, u64); static inline int journal_state_count(union journal_res_state s, int idx) { |