blob: baad1748d0d101eef191fb981619c918241cb539 [file] [log] [blame]
Dave Chinner0b61f8a2018-06-05 19:42:14 -07001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Nathan Scott4ce31212005-11-02 14:59:41 +11003 * Copyright (c) 2000-2003 Silicon Graphics, Inc.
4 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include "xfs.h"
7#include "xfs_fs.h"
Darrick J. Wong5467b342019-06-28 19:25:35 -07008#include "xfs_shared.h"
Dave Chinner6ca1c902013-08-12 20:49:26 +10009#include "xfs_format.h"
Dave Chinner239880e2013-10-23 10:50:10 +110010#include "xfs_log_format.h"
11#include "xfs_trans_resv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include "xfs_inode.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110014#include "xfs_quota.h"
Dave Chinner239880e2013-10-23 10:50:10 +110015#include "xfs_trans.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include "xfs_buf_item.h"
17#include "xfs_trans_priv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs_qm.h"
Dave Chinner239880e2013-10-23 10:50:10 +110019#include "xfs_log.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +100021static inline struct xfs_dq_logitem *DQUOT_ITEM(struct xfs_log_item *lip)
22{
23 return container_of(lip, struct xfs_dq_logitem, qli_item);
24}
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026/*
27 * returns the number of iovecs needed to log the given dquot item.
28 */
Dave Chinner166d1362013-08-12 20:50:04 +100029STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -070030xfs_qm_dquot_logitem_size(
Dave Chinner166d1362013-08-12 20:50:04 +100031 struct xfs_log_item *lip,
32 int *nvecs,
33 int *nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -070034{
Dave Chinner166d1362013-08-12 20:50:04 +100035 *nvecs += 2;
36 *nbytes += sizeof(struct xfs_dq_logformat) +
37 sizeof(struct xfs_disk_dquot);
Linus Torvalds1da177e2005-04-16 15:20:36 -070038}
39
40/*
41 * fills in the vector of log iovecs for the given dquot log item.
42 */
43STATIC void
44xfs_qm_dquot_logitem_format(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +100045 struct xfs_log_item *lip,
Christoph Hellwigbde7cff2013-12-13 11:34:02 +110046 struct xfs_log_vec *lv)
Linus Torvalds1da177e2005-04-16 15:20:36 -070047{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +100048 struct xfs_dq_logitem *qlip = DQUOT_ITEM(lip);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +110049 struct xfs_log_iovec *vecp = NULL;
Christoph Hellwigce8e9622013-12-13 11:34:07 +110050 struct xfs_dq_logformat *qlf;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Christoph Hellwigce8e9622013-12-13 11:34:07 +110052 qlf = xlog_prepare_iovec(lv, &vecp, XLOG_REG_TYPE_QFORMAT);
53 qlf->qlf_type = XFS_LI_DQUOT;
54 qlf->qlf_size = 2;
55 qlf->qlf_id = be32_to_cpu(qlip->qli_dquot->q_core.d_id);
56 qlf->qlf_blkno = qlip->qli_dquot->q_blkno;
57 qlf->qlf_len = 1;
58 qlf->qlf_boffset = qlip->qli_dquot->q_bufoffset;
59 xlog_finish_iovec(lv, vecp, sizeof(struct xfs_dq_logformat));
Christoph Hellwigbde7cff2013-12-13 11:34:02 +110060
Christoph Hellwigbde7cff2013-12-13 11:34:02 +110061 xlog_copy_iovec(lv, &vecp, XLOG_REG_TYPE_DQUOT,
62 &qlip->qli_dquot->q_core,
63 sizeof(struct xfs_disk_dquot));
Linus Torvalds1da177e2005-04-16 15:20:36 -070064}
65
66/*
67 * Increment the pin count of the given dquot.
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 */
69STATIC void
70xfs_qm_dquot_logitem_pin(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +100071 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +100073 struct xfs_dquot *dqp = DQUOT_ITEM(lip)->qli_dquot;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 ASSERT(XFS_DQ_IS_LOCKED(dqp));
Peter Leckied1de8022008-10-30 17:05:18 +110076 atomic_inc(&dqp->q_pincount);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077}
78
79/*
80 * Decrement the pin count of the given dquot, and wake up
81 * anyone in xfs_dqwait_unpin() if the count goes to 0. The
Peter Leckiebc3048e2008-10-30 17:05:04 +110082 * dquot must have been previously pinned with a call to
83 * xfs_qm_dquot_logitem_pin().
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070085STATIC void
86xfs_qm_dquot_logitem_unpin(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +100087 struct xfs_log_item *lip,
Christoph Hellwig9412e312010-06-23 18:11:15 +100088 int remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +100090 struct xfs_dquot *dqp = DQUOT_ITEM(lip)->qli_dquot;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Peter Leckiebc3048e2008-10-30 17:05:04 +110092 ASSERT(atomic_read(&dqp->q_pincount) > 0);
93 if (atomic_dec_and_test(&dqp->q_pincount))
94 wake_up(&dqp->q_pinwait);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095}
96
Linus Torvalds1da177e2005-04-16 15:20:36 -070097/*
98 * This is called to wait for the given dquot to be unpinned.
99 * Most of these pin/unpin routines are plagiarized from inode code.
100 */
101void
102xfs_qm_dqunpin_wait(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000103 struct xfs_dquot *dqp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 ASSERT(XFS_DQ_IS_LOCKED(dqp));
Peter Leckiebc3048e2008-10-30 17:05:04 +1100106 if (atomic_read(&dqp->q_pincount) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109 /*
110 * Give the log a push so we don't wait here too long.
111 */
Christoph Hellwiga14a3482010-01-19 09:56:46 +0000112 xfs_log_force(dqp->q_mount, 0);
Peter Leckiebc3048e2008-10-30 17:05:04 +1100113 wait_event(dqp->q_pinwait, (atomic_read(&dqp->q_pincount) == 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114}
115
Carlos Maiolino373b0582017-11-28 08:54:10 -0800116/*
117 * Callback used to mark a buffer with XFS_LI_FAILED when items in the buffer
118 * have been failed during writeback
119 *
120 * this informs the AIL that the dquot is already flush locked on the next push,
121 * and acquires a hold on the buffer to ensure that it isn't reclaimed before
122 * dirty data makes it to disk.
123 */
124STATIC void
125xfs_dquot_item_error(
126 struct xfs_log_item *lip,
127 struct xfs_buf *bp)
128{
Darrick J. Wong75d4a132018-01-16 19:04:27 -0800129 ASSERT(!completion_done(&DQUOT_ITEM(lip)->qli_dquot->q_flush));
Carlos Maiolino373b0582017-11-28 08:54:10 -0800130 xfs_set_li_failed(lip, bp);
131}
132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133STATIC uint
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000134xfs_qm_dquot_logitem_push(
135 struct xfs_log_item *lip,
Matthew Wilcox57e80952018-03-07 14:59:39 -0800136 struct list_head *buffer_list)
137 __releases(&lip->li_ailp->ail_lock)
138 __acquires(&lip->li_ailp->ail_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000140 struct xfs_dquot *dqp = DQUOT_ITEM(lip)->qli_dquot;
Carlos Maiolino373b0582017-11-28 08:54:10 -0800141 struct xfs_buf *bp = lip->li_buf;
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000142 uint rval = XFS_ITEM_SUCCESS;
143 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Peter Leckiebc3048e2008-10-30 17:05:04 +1100145 if (atomic_read(&dqp->q_pincount) > 0)
Dave Chinnerd808f612010-02-02 10:13:42 +1100146 return XFS_ITEM_PINNED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Carlos Maiolino373b0582017-11-28 08:54:10 -0800148 /*
149 * The buffer containing this item failed to be written back
150 * previously. Resubmit the buffer for IO
151 */
Dave Chinner22525c12018-05-09 07:47:34 -0700152 if (test_bit(XFS_LI_FAILED, &lip->li_flags)) {
Carlos Maiolino373b0582017-11-28 08:54:10 -0800153 if (!xfs_buf_trylock(bp))
154 return XFS_ITEM_LOCKED;
155
Carlos Maiolino643c8c02018-01-24 13:38:49 -0800156 if (!xfs_buf_resubmit_failed_buffers(bp, buffer_list))
Carlos Maiolino373b0582017-11-28 08:54:10 -0800157 rval = XFS_ITEM_FLUSHING;
158
159 xfs_buf_unlock(bp);
160 return rval;
161 }
162
Christoph Hellwig800b4842011-12-06 21:58:14 +0000163 if (!xfs_dqlock_nowait(dqp))
Dave Chinnerd808f612010-02-02 10:13:42 +1100164 return XFS_ITEM_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Christoph Hellwigfe7257f2012-04-23 15:58:37 +1000166 /*
167 * Re-check the pincount now that we stabilized the value by
168 * taking the quota lock.
169 */
170 if (atomic_read(&dqp->q_pincount) > 0) {
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000171 rval = XFS_ITEM_PINNED;
172 goto out_unlock;
Christoph Hellwigfe7257f2012-04-23 15:58:37 +1000173 }
174
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000175 /*
176 * Someone else is already flushing the dquot. Nothing we can do
177 * here but wait for the flush to finish and remove the item from
178 * the AIL.
179 */
David Chinnere1f49cf2008-08-13 16:41:43 +1000180 if (!xfs_dqflock_nowait(dqp)) {
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000181 rval = XFS_ITEM_FLUSHING;
182 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 }
184
Matthew Wilcox57e80952018-03-07 14:59:39 -0800185 spin_unlock(&lip->li_ailp->ail_lock);
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000186
187 error = xfs_qm_dqflush(dqp, &bp);
Darrick J. Wong609001b2018-05-04 15:30:20 -0700188 if (!error) {
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000189 if (!xfs_buf_delwri_queue(bp, buffer_list))
190 rval = XFS_ITEM_FLUSHING;
191 xfs_buf_relse(bp);
Brian Foster8d3d7e22020-03-27 08:29:45 -0700192 } else if (error == -EAGAIN)
193 rval = XFS_ITEM_LOCKED;
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000194
Matthew Wilcox57e80952018-03-07 14:59:39 -0800195 spin_lock(&lip->li_ailp->ail_lock);
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000196out_unlock:
197 xfs_dqunlock(dqp);
198 return rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199}
200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201STATIC void
Christoph Hellwigddf92052019-06-28 19:27:32 -0700202xfs_qm_dquot_logitem_release(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000203 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000205 struct xfs_dquot *dqp = DQUOT_ITEM(lip)->qli_dquot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 ASSERT(XFS_DQ_IS_LOCKED(dqp));
208
209 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 * dquots are never 'held' from getting unlocked at the end of
211 * a transaction. Their locking and unlocking is hidden inside the
212 * transaction layer, within trans_commit. Hence, no LI_HOLD flag
213 * for the logitem.
214 */
215 xfs_dqunlock(dqp);
216}
217
Christoph Hellwigddf92052019-06-28 19:27:32 -0700218STATIC void
219xfs_qm_dquot_logitem_committing(
220 struct xfs_log_item *lip,
221 xfs_lsn_t commit_lsn)
222{
223 return xfs_qm_dquot_logitem_release(lip);
224}
225
Christoph Hellwig272e42b2011-10-28 09:54:24 +0000226static const struct xfs_item_ops xfs_dquot_item_ops = {
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000227 .iop_size = xfs_qm_dquot_logitem_size,
228 .iop_format = xfs_qm_dquot_logitem_format,
229 .iop_pin = xfs_qm_dquot_logitem_pin,
230 .iop_unpin = xfs_qm_dquot_logitem_unpin,
Christoph Hellwigddf92052019-06-28 19:27:32 -0700231 .iop_release = xfs_qm_dquot_logitem_release,
232 .iop_committing = xfs_qm_dquot_logitem_committing,
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000233 .iop_push = xfs_qm_dquot_logitem_push,
Carlos Maiolino373b0582017-11-28 08:54:10 -0800234 .iop_error = xfs_dquot_item_error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235};
236
237/*
238 * Initialize the dquot log item for a newly allocated dquot.
239 * The dquot isn't locked at this point, but it isn't on any of the lists
240 * either, so we don't care.
241 */
242void
243xfs_qm_dquot_logitem_init(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000244 struct xfs_dquot *dqp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000246 struct xfs_dq_logitem *lp = &dqp->q_logitem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Dave Chinner43f5efc2010-03-23 10:10:00 +1100248 xfs_log_item_init(dqp->q_mount, &lp->qli_item, XFS_LI_DQUOT,
249 &xfs_dquot_item_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 lp->qli_dquot = dqp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251}
252
253/*------------------ QUOTAOFF LOG ITEMS -------------------*/
254
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000255static inline struct xfs_qoff_logitem *QOFF_ITEM(struct xfs_log_item *lip)
256{
257 return container_of(lip, struct xfs_qoff_logitem, qql_item);
258}
259
260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261/*
262 * This returns the number of iovecs needed to log the given quotaoff item.
263 * We only need 1 iovec for an quotaoff item. It just logs the
264 * quotaoff_log_format structure.
265 */
Dave Chinner166d1362013-08-12 20:50:04 +1000266STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000267xfs_qm_qoff_logitem_size(
Dave Chinner166d1362013-08-12 20:50:04 +1000268 struct xfs_log_item *lip,
269 int *nvecs,
270 int *nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271{
Dave Chinner166d1362013-08-12 20:50:04 +1000272 *nvecs += 1;
273 *nbytes += sizeof(struct xfs_qoff_logitem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274}
275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000277xfs_qm_qoff_logitem_format(
278 struct xfs_log_item *lip,
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100279 struct xfs_log_vec *lv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000281 struct xfs_qoff_logitem *qflip = QOFF_ITEM(lip);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100282 struct xfs_log_iovec *vecp = NULL;
Christoph Hellwigffda4e82013-12-13 11:34:08 +1100283 struct xfs_qoff_logformat *qlf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Christoph Hellwigffda4e82013-12-13 11:34:08 +1100285 qlf = xlog_prepare_iovec(lv, &vecp, XLOG_REG_TYPE_QUOTAOFF);
286 qlf->qf_type = XFS_LI_QUOTAOFF;
287 qlf->qf_size = 1;
288 qlf->qf_flags = qflip->qql_flags;
289 xlog_finish_iovec(lv, vecp, sizeof(struct xfs_qoff_logitem));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290}
291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292/*
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000293 * There isn't much you can do to push a quotaoff item. It is simply
294 * stuck waiting for the log to be flushed to disk.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296STATIC uint
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000297xfs_qm_qoff_logitem_push(
298 struct xfs_log_item *lip,
299 struct list_head *buffer_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300{
301 return XFS_ITEM_LOCKED;
302}
303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304STATIC xfs_lsn_t
305xfs_qm_qoffend_logitem_committed(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000306 struct xfs_log_item *lip,
307 xfs_lsn_t lsn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000309 struct xfs_qoff_logitem *qfe = QOFF_ITEM(lip);
310 struct xfs_qoff_logitem *qfs = qfe->qql_start_lip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Brian Foster854f82b2020-03-16 14:26:09 -0700312 xfs_qm_qoff_logitem_relse(qfs);
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000313
Dave Chinnerb1c5ebb2016-07-22 09:52:35 +1000314 kmem_free(lip->li_lv_shadow);
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000315 kmem_free(qfe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 return (xfs_lsn_t)-1;
317}
318
Brian Foster8a627142020-03-16 14:26:09 -0700319STATIC void
320xfs_qm_qoff_logitem_release(
321 struct xfs_log_item *lip)
322{
323 struct xfs_qoff_logitem *qoff = QOFF_ITEM(lip);
324
325 if (test_bit(XFS_LI_ABORTED, &lip->li_flags)) {
326 if (qoff->qql_start_lip)
327 xfs_qm_qoff_logitem_relse(qoff->qql_start_lip);
328 xfs_qm_qoff_logitem_relse(qoff);
329 }
330}
331
Christoph Hellwig272e42b2011-10-28 09:54:24 +0000332static const struct xfs_item_ops xfs_qm_qoffend_logitem_ops = {
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000333 .iop_size = xfs_qm_qoff_logitem_size,
334 .iop_format = xfs_qm_qoff_logitem_format,
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000335 .iop_committed = xfs_qm_qoffend_logitem_committed,
336 .iop_push = xfs_qm_qoff_logitem_push,
Brian Foster8a627142020-03-16 14:26:09 -0700337 .iop_release = xfs_qm_qoff_logitem_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338};
339
Christoph Hellwig272e42b2011-10-28 09:54:24 +0000340static const struct xfs_item_ops xfs_qm_qoff_logitem_ops = {
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000341 .iop_size = xfs_qm_qoff_logitem_size,
342 .iop_format = xfs_qm_qoff_logitem_format,
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000343 .iop_push = xfs_qm_qoff_logitem_push,
Brian Foster8a627142020-03-16 14:26:09 -0700344 .iop_release = xfs_qm_qoff_logitem_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345};
346
347/*
Brian Foster854f82b2020-03-16 14:26:09 -0700348 * Delete the quotaoff intent from the AIL and free it. On success,
349 * this should only be called for the start item. It can be used for
350 * either on shutdown or abort.
351 */
352void
353xfs_qm_qoff_logitem_relse(
354 struct xfs_qoff_logitem *qoff)
355{
356 struct xfs_log_item *lip = &qoff->qql_item;
357
358 ASSERT(test_bit(XFS_LI_IN_AIL, &lip->li_flags) ||
359 test_bit(XFS_LI_ABORTED, &lip->li_flags) ||
360 XFS_FORCED_SHUTDOWN(lip->li_mountp));
361 xfs_trans_ail_remove(lip, SHUTDOWN_LOG_IO_ERROR);
362 kmem_free(lip->li_lv_shadow);
363 kmem_free(qoff);
364}
365
366/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 * Allocate and initialize an quotaoff item of the correct quota type(s).
368 */
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000369struct xfs_qoff_logitem *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370xfs_qm_qoff_logitem_init(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000371 struct xfs_mount *mp,
372 struct xfs_qoff_logitem *start,
373 uint flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000375 struct xfs_qoff_logitem *qf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Tetsuo Handa707e0dd2019-08-26 12:06:22 -0700377 qf = kmem_zalloc(sizeof(struct xfs_qoff_logitem), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Dave Chinner43f5efc2010-03-23 10:10:00 +1100379 xfs_log_item_init(mp, &qf->qql_item, XFS_LI_QUOTAOFF, start ?
380 &xfs_qm_qoffend_logitem_ops : &xfs_qm_qoff_logitem_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 qf->qql_item.li_mountp = mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 qf->qql_start_lip = start;
Christoph Hellwigffda4e82013-12-13 11:34:08 +1100383 qf->qql_flags = flags;
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000384 return qf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385}