aboutsummaryrefslogtreecommitdiffstats
path: root/fs/gfs2/log.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/gfs2/log.c')
-rw-r--r--fs/gfs2/log.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/gfs2/log.c b/fs/gfs2/log.c
index 60fdc94ccc8a..a591fb8fae20 100644
--- a/fs/gfs2/log.c
+++ b/fs/gfs2/log.c
@@ -256,8 +256,8 @@ static unsigned int current_tail(struct gfs2_sbd *sdp)
256 if (list_empty(&sdp->sd_ail1_list)) 256 if (list_empty(&sdp->sd_ail1_list))
257 tail = sdp->sd_log_head; 257 tail = sdp->sd_log_head;
258 else { 258 else {
259 ai = list_entry(sdp->sd_ail1_list.prev, 259 ai = list_entry(sdp->sd_ail1_list.prev, struct gfs2_ail,
260 struct gfs2_ail, ai_list); 260 ai_list);
261 tail = ai->ai_first; 261 tail = ai->ai_first;
262 } 262 }
263 263