log.c (ca399c96e96e3f372f901a698a6fd17796b8ed32) log.c (490031281d5a33fbdab59e98e165c2cd30fc841b)
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
4 * Copyright (C) 2004-2007 Red Hat, Inc. All rights reserved.
5 */
6
7#include <linux/sched.h>
8#include <linux/slab.h>

--- 158 unchanged lines hidden (view full) ---

167 if (ret) {
168 if (ret == -EBUSY)
169 goto restart;
170 break;
171 }
172 }
173 spin_unlock(&sdp->sd_ail_lock);
174 blk_finish_plug(&plug);
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
4 * Copyright (C) 2004-2007 Red Hat, Inc. All rights reserved.
5 */
6
7#include <linux/sched.h>
8#include <linux/slab.h>

--- 158 unchanged lines hidden (view full) ---

167 if (ret) {
168 if (ret == -EBUSY)
169 goto restart;
170 break;
171 }
172 }
173 spin_unlock(&sdp->sd_ail_lock);
174 blk_finish_plug(&plug);
175 if (ret)
175 if (ret) {
176 gfs2_lm(sdp, "gfs2_ail1_start_one (generic_writepages) "
177 "returned: %d\n", ret);
176 gfs2_withdraw(sdp);
178 gfs2_withdraw(sdp);
179 }
177 trace_gfs2_ail_flush(sdp, wbc, 0);
178}
179
180/**
181 * gfs2_ail1_start - start writeback of all ail1 entries
182 * @sdp: The superblock
183 */
184

--- 955 unchanged lines hidden ---
180 trace_gfs2_ail_flush(sdp, wbc, 0);
181}
182
183/**
184 * gfs2_ail1_start - start writeback of all ail1 entries
185 * @sdp: The superblock
186 */
187

--- 955 unchanged lines hidden ---