jfs: fix diAllocExt error in resizing filesystem

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Linux Kernel Mailing List
Date: Wednesday, April 21, 2010 - 12:59 pm

Gitweb:     http://git.kernel.org/linus/2b0b39517d1af5294128dbc2fd7ed39c8effa540
Commit:     2b0b39517d1af5294128dbc2fd7ed39c8effa540
Parent:     d7eecb483cc29e929bbc5515b8def830d7fc6ad2
Author:     Bill Pemberton <wfp5p@virginia.edu>
AuthorDate: Fri Apr 16 08:01:20 2010 -0500
Committer:  Dave Kleikamp <shaggy@linux.vnet.ibm.com>
CommitDate: Fri Apr 16 08:01:20 2010 -0500

    jfs: fix diAllocExt error in resizing filesystem
    
    Resizing the filesystem would result in an diAllocExt error in some
    instances because changes in bmp->db_agsize would not get noticed if
    goto extendBmap was called.
    
    Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
    Signed-off-by: Dave Kleikamp <shaggy@linux.vnet.ibm.com>
    Cc: jfs-discussion@lists.sourceforge.net
    Cc: linux-kernel@vger.kernel.org
---
 fs/jfs/resize.c |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/fs/jfs/resize.c b/fs/jfs/resize.c
index 7f24a0b..1aba003 100644
--- a/fs/jfs/resize.c
+++ b/fs/jfs/resize.c
@@ -81,6 +81,7 @@ int jfs_extendfs(struct super_block *sb, s64 newLVSize, int newLogSize)
 	struct inode *iplist[1];
 	struct jfs_superblock *j_sb, *j_sb2;
 	uint old_agsize;
+	int agsizechanged = 0;
 	struct buffer_head *bh, *bh2;
 
 	/* If the volume hasn't grown, get out now */
@@ -333,6 +334,9 @@ int jfs_extendfs(struct super_block *sb, s64 newLVSize, int newLogSize)
 	 */
 	if ((rc = dbExtendFS(ipbmap, XAddress, nblocks)))
 		goto error_out;
+
+	agsizechanged |= (bmp->db_agsize != old_agsize);
+
 	/*
 	 * the map now has extended to cover additional nblocks:
 	 * dn_mapsize = oldMapsize + nblocks;
@@ -432,7 +436,7 @@ int jfs_extendfs(struct super_block *sb, s64 newLVSize, int newLogSize)
 	 * will correctly identify the new ag);
 	 */
 	/* if new AG size the same as old AG size, done! */
-	if (bmp->db_agsize != old_agsize) {
+	if (agsizechanged) {
 		if ((rc = diExtendFS(ipimap, ipbmap)))
 			goto error_out;
 
--
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
jfs: fix diAllocExt error in resizing filesystem, Linux Kernel Mailing ..., (Wed Apr 21, 12:59 pm)