Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=eaf965270ffff3086ef929e660ace45e862cfd2d
Commit:     eaf965270ffff3086ef929e660ace45e862cfd2d
Parent:     1e1a3d03e927d39282208aed676e49d25129feea
Author:     Steven Whitehouse <[EMAIL PROTECTED]>
AuthorDate: Mon Aug 27 09:49:37 2007 +0100
Committer:  Steven Whitehouse <[EMAIL PROTECTED]>
CommitDate: Wed Oct 10 08:55:58 2007 +0100

    [GFS2] Don't mark jdata dirty in gfs2_unstuffer_page()
    
    Journaled data is marked dirty by gfs2_unpin and should not be marked
    dirty here.
    
    Signed-off-by: Steven Whitehouse <[EMAIL PROTECTED]>
---
 fs/gfs2/bmap.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/fs/gfs2/bmap.c b/fs/gfs2/bmap.c
index 9b89904..1e56f4d 100644
--- a/fs/gfs2/bmap.c
+++ b/fs/gfs2/bmap.c
@@ -95,7 +95,8 @@ static int gfs2_unstuffer_page(struct gfs2_inode *ip, struct 
buffer_head *dibh,
        set_buffer_uptodate(bh);
        if (sdp->sd_args.ar_data == GFS2_DATA_ORDERED || gfs2_is_jdata(ip))
                gfs2_trans_add_bh(ip->i_gl, bh, 0);
-       mark_buffer_dirty(bh);
+       if (!gfs2_is_jdata(ip))
+               mark_buffer_dirty(bh);
 
        if (release) {
                unlock_page(page);
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to