diff options
Diffstat (limited to 'fs/jbd2/revoke.c')
| -rw-r--r-- | fs/jbd2/revoke.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/jbd2/revoke.c b/fs/jbd2/revoke.c index 198c9c10276d..d5e95a175c92 100644 --- a/fs/jbd2/revoke.c +++ b/fs/jbd2/revoke.c @@ -91,8 +91,8 @@  #include <linux/list.h>  #include <linux/init.h>  #include <linux/bio.h> -#endif  #include <linux/log2.h> +#endif  static struct kmem_cache *jbd2_revoke_record_cache;  static struct kmem_cache *jbd2_revoke_table_cache; @@ -597,7 +597,7 @@ static void write_one_revoke_record(journal_t *journal,  	offset = *offsetp;  	/* Do we need to leave space at the end for a checksum? */ -	if (JBD2_HAS_INCOMPAT_FEATURE(journal, JBD2_FEATURE_INCOMPAT_CSUM_V2)) +	if (jbd2_journal_has_csum_v2or3(journal))  		csum_size = sizeof(struct jbd2_journal_revoke_tail);  	/* Make sure we have a descriptor with space left for the record */ @@ -644,7 +644,7 @@ static void jbd2_revoke_csum_set(journal_t *j, struct buffer_head *bh)  	struct jbd2_journal_revoke_tail *tail;  	__u32 csum; -	if (!JBD2_HAS_INCOMPAT_FEATURE(j, JBD2_FEATURE_INCOMPAT_CSUM_V2)) +	if (!jbd2_journal_has_csum_v2or3(j))  		return;  	tail = (struct jbd2_journal_revoke_tail *)(bh->b_data + j->j_blocksize -  |