From mboxrd@z Thu Jan 1 00:00:00 1970 From: Steven Whitehouse Date: Fri, 24 May 2013 14:37:35 +0100 Subject: [Cluster-devel] [PATCH 4/4] GFS2: Fix typo in gfs2_log_end_write loop In-Reply-To: <1369402655-26600-1-git-send-email-swhiteho@redhat.com> References: <1369402655-26600-1-git-send-email-swhiteho@redhat.com> Message-ID: <1369402655-26600-5-git-send-email-swhiteho@redhat.com> List-Id: To: cluster-devel.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit There was a missing _all in this loop iterator Signed-off-by: Steven Whitehouse diff --git a/fs/gfs2/lops.c b/fs/gfs2/lops.c index c5fa758..68b4c8f 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); -- 1.7.4