aboutsummaryrefslogtreecommitdiffstats
path: root/fs/gfs2/lops.c
diff options
context:
space:
mode:
authorSteven Whitehouse <swhiteho@redhat.com>2006-08-22 11:03:57 -0400
committerSteven Whitehouse <swhiteho@redhat.com>2006-08-22 11:03:57 -0400
commit08867605e1d5f575685aa2b5bf575aba3d996758 (patch)
tree04e7903b18d11f5e0240d302c55322c36d561324 /fs/gfs2/lops.c
parent[DLM] dump rsb and locks on assert (diff)
downloadlinux-dev-08867605e1d5f575685aa2b5bf575aba3d996758.tar.xz
linux-dev-08867605e1d5f575685aa2b5bf575aba3d996758.zip
[GFS2] Fix to list_del in lops.c
A list_del should have been a list_del_init in lops.c which was resulting in incorrect status returns from list_empty(). Signed-off-by: Steven Whitheouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/lops.c')
-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 04bceb75ff23..82dfc96c4f59 100644
--- a/fs/gfs2/lops.c
+++ b/fs/gfs2/lops.c
@@ -638,7 +638,7 @@ static void databuf_lo_before_commit(struct gfs2_sbd *sdp)
gfs2_log_lock(sdp);
bd1 = list_entry(started.next, struct gfs2_bufdata,
bd_le.le_list);
- list_del(&bd1->bd_le.le_list);
+ list_del_init(&bd1->bd_le.le_list);
sdp->sd_log_num_databuf--;
bh = bd1->bd_bh;
if (bh) {