e2fsck: recover revoke blocks on 64bit filesystems correctly

Since the advent of 64bit filesystems, revoke blocks store 64-bit
block numbers instead of 32-bit block numbers.  Therefore we need to
be able to handle that case.

Signed-off-by: Darrick J. Wong <djwong@us.ibm.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
bitmap-optimize
Darrick J. Wong 2011-10-08 13:36:52 -04:00 committed by Theodore Ts'o
parent 84888e5543
commit 79a4dddbf7
2 changed files with 12 additions and 2 deletions

View File

@ -62,6 +62,7 @@ typedef struct {
#define cond_resched() do { } while (0)
typedef unsigned int __be32;
typedef __u64 __be64;
#define __init

View File

@ -723,17 +723,26 @@ static int scan_revoke_records(journal_t *journal, struct buffer_head *bh,
{
journal_revoke_header_t *header;
int offset, max;
int record_len = 4;
header = (journal_revoke_header_t *) bh->b_data;
offset = sizeof(journal_revoke_header_t);
max = be32_to_cpu(header->r_count);
if (JFS_HAS_INCOMPAT_FEATURE(journal, JFS_FEATURE_INCOMPAT_64BIT))
record_len = 8;
while (offset < max) {
unsigned long blocknr;
int err;
blocknr = be32_to_cpu(* ((__be32 *) (bh->b_data+offset)));
offset += 4;
if (record_len == 4)
blocknr = ext2fs_be32_to_cpu(*((__be32 *)(bh->b_data +
offset)));
else
blocknr = ext2fs_be64_to_cpu(*((__be64 *)(bh->b_data +
offset)));
offset += record_len;
err = journal_set_revoke(journal, blocknr, sequence);
if (err)
return err;