cluster: RHEL56 - gfs2: remove update_flags everywhere

Bob Peterson rpeterso at fedoraproject.org
Sat Apr 10 04:52:10 UTC 2010


Gitweb:        http://git.fedorahosted.org/git/cluster.git?p=cluster.git;a=commitdiff;h=6c6638cd6055c03ef74351dc7a179c5a178b0b16
Commit:        6c6638cd6055c03ef74351dc7a179c5a178b0b16
Parent:        e7282c8a25ee830c068b3598814bc285d4398e24
Author:        Bob Peterson <bob at ganesha.peterson>
AuthorDate:    Mon Nov 30 15:16:07 2009 -0600
Committer:     Bob Peterson <rpeterso at redhat.com>
CommitterDate: Fri Apr 9 22:59:22 2010 -0500

gfs2: remove update_flags everywhere

This patch removes the update_flags from all the gfs2-utils code.
This help to untangle the buffer_head mess and helps solve
issues where file systems were being updated even when no errors
are found.

rhbz#455300
---
 gfs2/convert/gfs2_convert.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/gfs2/convert/gfs2_convert.c b/gfs2/convert/gfs2_convert.c
index 207838b..f27b25f 100644
--- a/gfs2/convert/gfs2_convert.c
+++ b/gfs2/convert/gfs2_convert.c
@@ -676,7 +676,7 @@ void fix_jdatatree(struct gfs2_sbd *sbp, struct gfs2_inode *ip,
 		/* First, build up the metatree */
 		for (h = 0; h < blk->height; h++) {
 			lookup_block(ip, bh, h, &blk->mp, 1, &new, &block);
-			brelse(bh, updated);
+			brelse(bh);
 			if (!block)
 				break;
 
@@ -693,7 +693,7 @@ void fix_jdatatree(struct gfs2_sbd *sbp, struct gfs2_inode *ip,
 		memcpy(bh->b_data + ptramt,
 		       (char *)srcptr, amount);
 		srcptr += amount;
-		brelse(bh, updated);
+		brelse(bh);
 
 		copied += amount;
 
@@ -825,7 +825,7 @@ int adjust_jdata_inode(struct gfs2_sbd *sbp, struct gfs2_buffer_head *dibh,
 				memset(bh->b_data + sizeof(struct gfs_indirect), 0,
 				       sbp->bsize - sizeof(struct gfs_indirect));
 			}
-			brelse(bh, updated);
+			brelse(bh);
 			/* Free the block so we can reuse it. This allows us to
 			   convert a "full" file system. */
 			ip->i_di.di_blocks--;


More information about the cluster-commits mailing list