This patch - Adds a mechanism for queuing up journal entries prior to the journal being started, which will be used for early journal log messages - Adds bch2_fs_log_msg() and improves bch2_trans_log_msg(), which now take format strings. bch2_fs_log_msg() can be used before or after the journal has been started, and will use the appropriate mechanism. - Deletes the now obsolete bch2_journal_log_msg() - And adds more log messages to the recovery path - messages for journal/filesystem started, journal entries being blacklisted, and journal replay starting/finishing. Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
60 lines
1.5 KiB
C
60 lines
1.5 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _BCACHEFS_JOURNAL_IO_H
|
|
#define _BCACHEFS_JOURNAL_IO_H
|
|
|
|
/*
|
|
* Only used for holding the journal entries we read in btree_journal_read()
|
|
* during cache_registration
|
|
*/
|
|
struct journal_replay {
|
|
struct journal_ptr {
|
|
bool csum_good;
|
|
u8 dev;
|
|
u32 bucket;
|
|
u32 bucket_offset;
|
|
u64 sector;
|
|
} ptrs[BCH_REPLICAS_MAX];
|
|
unsigned nr_ptrs;
|
|
|
|
bool csum_good;
|
|
bool ignore;
|
|
/* must be last: */
|
|
struct jset j;
|
|
};
|
|
|
|
static inline struct jset_entry *__jset_entry_type_next(struct jset *jset,
|
|
struct jset_entry *entry, unsigned type)
|
|
{
|
|
while (entry < vstruct_last(jset)) {
|
|
if (entry->type == type)
|
|
return entry;
|
|
|
|
entry = vstruct_next(entry);
|
|
}
|
|
|
|
return NULL;
|
|
}
|
|
|
|
#define for_each_jset_entry_type(entry, jset, type) \
|
|
for (entry = (jset)->start; \
|
|
(entry = __jset_entry_type_next(jset, entry, type)); \
|
|
entry = vstruct_next(entry))
|
|
|
|
#define for_each_jset_key(k, _n, entry, jset) \
|
|
for_each_jset_entry_type(entry, jset, BCH_JSET_ENTRY_btree_keys) \
|
|
vstruct_for_each_safe(entry, k, _n)
|
|
|
|
int bch2_journal_entry_validate(struct bch_fs *, struct jset *,
|
|
struct jset_entry *, unsigned, int, int);
|
|
void bch2_journal_entry_to_text(struct printbuf *, struct bch_fs *,
|
|
struct jset_entry *);
|
|
|
|
void bch2_journal_ptrs_to_text(struct printbuf *, struct bch_fs *,
|
|
struct journal_replay *);
|
|
|
|
int bch2_journal_read(struct bch_fs *, u64 *, u64 *, u64 *);
|
|
|
|
void bch2_journal_write(struct closure *);
|
|
|
|
#endif /* _BCACHEFS_JOURNAL_IO_H */
|