linux-ext4.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] e2fsck: Recover revoke blocks on 64bit filesystems correctly
@ 2011-10-08  7:29 Darrick J. Wong
  2011-10-08 17:37 ` Ted Ts'o
  0 siblings, 1 reply; 2+ messages in thread
From: Darrick J. Wong @ 2011-10-08  7:29 UTC (permalink / raw)
  To: Theodore Tso, Darrick J. Wong; +Cc: linux-ext4

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>
---
 e2fsck/jfs_user.h |    1 +
 e2fsck/recovery.c |   13 +++++++++++--
 2 files changed, 12 insertions(+), 2 deletions(-)


diff --git a/e2fsck/jfs_user.h b/e2fsck/jfs_user.h
index 2bb71c3..9e33306 100644
--- a/e2fsck/jfs_user.h
+++ b/e2fsck/jfs_user.h
@@ -62,6 +62,7 @@ typedef struct {
 #define cond_resched()	do { } while (0)
 
 typedef unsigned int __be32;
+typedef __u64 __be64;
 
 #define __init
 
diff --git a/e2fsck/recovery.c b/e2fsck/recovery.c
index a587bd7..b669941 100644
--- a/e2fsck/recovery.c
+++ b/e2fsck/recovery.c
@@ -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;


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] e2fsck: Recover revoke blocks on 64bit filesystems correctly
  2011-10-08  7:29 [PATCH] e2fsck: Recover revoke blocks on 64bit filesystems correctly Darrick J. Wong
@ 2011-10-08 17:37 ` Ted Ts'o
  0 siblings, 0 replies; 2+ messages in thread
From: Ted Ts'o @ 2011-10-08 17:37 UTC (permalink / raw)
  To: Darrick J. Wong; +Cc: linux-ext4

On Sat, Oct 08, 2011 at 12:29:09AM -0700, Darrick J. Wong wrote:
> 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>

Thanks, applied.

						- Ted

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-10-08 17:37 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-08  7:29 [PATCH] e2fsck: Recover revoke blocks on 64bit filesystems correctly Darrick J. Wong
2011-10-08 17:37 ` Ted Ts'o

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).