aboutsummaryrefslogtreecommitdiff
path: root/fs/gfs2
diff options
context:
space:
mode:
authorSteven Whitehouse <swhiteho@redhat.com>2013-05-21 12:49:07 +0100
committerSteven Whitehouse <swhiteho@redhat.com>2013-05-24 13:48:09 +0100
commite97e548ba8baffe051146d1f5e897dec48da20e0 (patch)
tree450a7404811befc560ac92eb3361dcfad2ecec32 /fs/gfs2
parent75f96ce6e754eee30d9ec788ad91c6ec21d0a46b (diff)
GFS2: Fix typo in gfs2_log_end_write loop
There was a missing _all in this loop iterator Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2')
-rw-r--r--fs/gfs2/lops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/lops.c b/fs/gfs2/lops.c
index c5fa758fd84..68b4c8f1fce 100644
--- a/fs/gfs2/lops.c
+++ b/fs/gfs2/lops.c
@@ -212,7 +212,7 @@ static void gfs2_end_log_write(struct bio *bio, int error)
fs_err(sdp, "Error %d writing to log\n", error);
}
- bio_for_each_segment(bvec, bio, i) {
+ bio_for_each_segment_all(bvec, bio, i) {
page = bvec->bv_page;
if (page_has_buffers(page))
gfs2_end_log_write_bh(sdp, bvec, error);