projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d7b616e
)
[GFS2] Fix ordering of dirty/journal for ordered buffer unstuffing
author
Bob Peterson
<rpeterso@redhat.com>
Sun, 2 Sep 2007 09:55:29 +0000
(10:55 +0100)
committer
Steven Whitehouse
<swhiteho@redhat.com>
Wed, 10 Oct 2007 07:56:05 +0000
(08:56 +0100)
Signed-off-by: Bob Peterson <rpeterso@redhat.com>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
fs/gfs2/bmap.c
patch
|
blob
|
blame
|
history
diff --git
a/fs/gfs2/bmap.c
b/fs/gfs2/bmap.c
index 1e56f4de7358957eb2dcf888613fbaab6a403455..93fa427bb5f501cee6da6ab88afbfd921f584295 100644
(file)
--- a/
fs/gfs2/bmap.c
+++ b/
fs/gfs2/bmap.c
@@
-93,10
+93,10
@@
static int gfs2_unstuffer_page(struct gfs2_inode *ip, struct buffer_head *dibh,
map_bh(bh, inode->i_sb, block);
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);
if (!gfs2_is_jdata(ip))
mark_buffer_dirty(bh);
+ if (sdp->sd_args.ar_data == GFS2_DATA_ORDERED || gfs2_is_jdata(ip))
+ gfs2_trans_add_bh(ip->i_gl, bh, 0);
if (release) {
unlock_page(page);