X-Git-Url: http://pilppa.org/gitweb/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=fs%2Fjbd2%2Frecovery.c;h=d0ce627539ef11710993c0c4236dc4821e0eacdf;hb=fd6dad616d4fe2f08d690f25ca76b0102158fb3a;hp=b50be8a044eb8d8bb8849bedc662d516bfa971bb;hpb=22aadf8a07067644e101267ed5003043f2ad05bf;p=linux-2.6-omap-h63xx.git diff --git a/fs/jbd2/recovery.c b/fs/jbd2/recovery.c index b50be8a044e..d0ce627539e 100644 --- a/fs/jbd2/recovery.c +++ b/fs/jbd2/recovery.c @@ -311,7 +311,7 @@ int jbd2_journal_skip_recovery(journal_t *journal) static inline unsigned long long read_tag_block(int tag_bytes, journal_block_tag_t *tag) { unsigned long long block = be32_to_cpu(tag->t_blocknr); - if (tag_bytes > JBD_TAG_SIZE32) + if (tag_bytes > JBD2_TAG_SIZE32) block |= (u64)be32_to_cpu(tag->t_blocknr_high) << 32; return block; }