blob: c23257a26c2b81883e7012ff0b526927ec1f77f6 [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-2002 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"
Dave Chinner70a98832013-10-23 10:36:05 +11008#include "xfs_shared.h"
Dave Chinner239880e2013-10-23 10:50:10 +11009#include "xfs_format.h"
10#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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include "xfs_error.h"
Dave Chinner239880e2013-10-23 10:50:10 +110015#include "xfs_trans.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include "xfs_trans_priv.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110017#include "xfs_quota.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs_qm.h"
19
20STATIC void xfs_trans_alloc_dqinfo(xfs_trans_t *);
21
22/*
23 * Add the locked dquot to the transaction.
24 * The dquot must be locked, and it cannot be associated with any
25 * transaction.
26 */
27void
28xfs_trans_dqjoin(
29 xfs_trans_t *tp,
30 xfs_dquot_t *dqp)
31{
Christoph Hellwig191f8482010-04-20 17:01:53 +100032 ASSERT(dqp->q_transp != tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 ASSERT(XFS_DQ_IS_LOCKED(dqp));
Christoph Hellwige98c4142010-06-23 18:11:15 +100034 ASSERT(dqp->q_logitem.qli_dquot == dqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36 /*
37 * Get a log_item_desc to point at the new item.
38 */
Christoph Hellwige98c4142010-06-23 18:11:15 +100039 xfs_trans_add_item(tp, &dqp->q_logitem.qli_item);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41 /*
Christoph Hellwigf3ca87382011-07-08 14:34:47 +020042 * Initialize d_transp so we can later determine if this dquot is
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 * associated with this transaction.
44 */
45 dqp->q_transp = tp;
46}
47
48
49/*
50 * This is called to mark the dquot as needing
51 * to be logged when the transaction is committed. The dquot must
52 * already be associated with the given transaction.
53 * Note that it marks the entire transaction as dirty. In the ordinary
54 * case, this gets called via xfs_trans_commit, after the transaction
55 * is already dirty. However, there's nothing stop this from getting
56 * called directly, as done by xfs_qm_scall_setqlim. Hence, the TRANS_DIRTY
57 * flag.
58 */
59void
60xfs_trans_log_dquot(
61 xfs_trans_t *tp,
62 xfs_dquot_t *dqp)
63{
Christoph Hellwig191f8482010-04-20 17:01:53 +100064 ASSERT(dqp->q_transp == tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 ASSERT(XFS_DQ_IS_LOCKED(dqp));
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 tp->t_flags |= XFS_TRANS_DIRTY;
Dave Chinnere6631f82018-05-09 07:49:37 -070068 set_bit(XFS_LI_DIRTY, &dqp->q_logitem.qli_item.li_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069}
70
71/*
72 * Carry forward whatever is left of the quota blk reservation to
73 * the spanky new transaction
74 */
Christoph Hellwig7d095252009-06-08 15:33:32 +020075void
Linus Torvalds1da177e2005-04-16 15:20:36 -070076xfs_trans_dup_dqinfo(
77 xfs_trans_t *otp,
78 xfs_trans_t *ntp)
79{
80 xfs_dqtrx_t *oq, *nq;
Nan Jia339e4f62015-06-01 10:50:00 +100081 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 xfs_dqtrx_t *oqa, *nqa;
Brian Foster7f884dc2015-06-01 07:15:37 +100083 ulong blk_res_used;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85 if (!otp->t_dqinfo)
86 return;
87
88 xfs_trans_alloc_dqinfo(ntp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90 /*
91 * Because the quota blk reservation is carried forward,
92 * it is also necessary to carry forward the DQ_DIRTY flag.
93 */
Nan Jia339e4f62015-06-01 10:50:00 +100094 if (otp->t_flags & XFS_TRANS_DQ_DIRTY)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 ntp->t_flags |= XFS_TRANS_DQ_DIRTY;
96
Chandra Seetharaman0e6436d2013-06-27 17:25:09 -050097 for (j = 0; j < XFS_QM_TRANS_DQTYPES; j++) {
98 oqa = otp->t_dqinfo->dqs[j];
99 nqa = ntp->t_dqinfo->dqs[j];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 for (i = 0; i < XFS_QM_TRANS_MAXDQS; i++) {
Brian Foster7f884dc2015-06-01 07:15:37 +1000101 blk_res_used = 0;
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 if (oqa[i].qt_dquot == NULL)
104 break;
105 oq = &oqa[i];
106 nq = &nqa[i];
107
Brian Foster7f884dc2015-06-01 07:15:37 +1000108 if (oq->qt_blk_res && oq->qt_bcount_delta > 0)
109 blk_res_used = oq->qt_bcount_delta;
110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 nq->qt_dquot = oq->qt_dquot;
112 nq->qt_bcount_delta = nq->qt_icount_delta = 0;
113 nq->qt_rtbcount_delta = 0;
114
115 /*
116 * Transfer whatever is left of the reservations.
117 */
Brian Foster7f884dc2015-06-01 07:15:37 +1000118 nq->qt_blk_res = oq->qt_blk_res - blk_res_used;
119 oq->qt_blk_res = blk_res_used;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121 nq->qt_rtblk_res = oq->qt_rtblk_res -
122 oq->qt_rtblk_res_used;
123 oq->qt_rtblk_res = oq->qt_rtblk_res_used;
124
125 nq->qt_ino_res = oq->qt_ino_res - oq->qt_ino_res_used;
126 oq->qt_ino_res = oq->qt_ino_res_used;
127
128 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 }
130}
131
132/*
133 * Wrap around mod_dquot to account for both user and group quotas.
134 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200135void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136xfs_trans_mod_dquot_byino(
137 xfs_trans_t *tp,
138 xfs_inode_t *ip,
139 uint field,
140 long delta)
141{
Christoph Hellwig7d095252009-06-08 15:33:32 +0200142 xfs_mount_t *mp = tp->t_mountp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Christoph Hellwig7d095252009-06-08 15:33:32 +0200144 if (!XFS_IS_QUOTA_RUNNING(mp) ||
145 !XFS_IS_QUOTA_ON(mp) ||
Chandra Seetharaman9cad19d2013-06-27 17:25:04 -0500146 xfs_is_quota_inode(&mp->m_sb, ip->i_ino))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 return;
148
149 if (tp->t_dqinfo == NULL)
150 xfs_trans_alloc_dqinfo(tp);
151
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000152 if (XFS_IS_UQUOTA_ON(mp) && ip->i_udquot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 (void) xfs_trans_mod_dquot(tp, ip->i_udquot, field, delta);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500154 if (XFS_IS_GQUOTA_ON(mp) && ip->i_gdquot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 (void) xfs_trans_mod_dquot(tp, ip->i_gdquot, field, delta);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500156 if (XFS_IS_PQUOTA_ON(mp) && ip->i_pdquot)
157 (void) xfs_trans_mod_dquot(tp, ip->i_pdquot, field, delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158}
159
Chandra Seetharaman113a5682013-06-27 17:25:07 -0500160STATIC struct xfs_dqtrx *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161xfs_trans_get_dqtrx(
Chandra Seetharaman113a5682013-06-27 17:25:07 -0500162 struct xfs_trans *tp,
163 struct xfs_dquot *dqp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
Chandra Seetharaman113a5682013-06-27 17:25:07 -0500165 int i;
166 struct xfs_dqtrx *qa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Chandra Seetharaman0e6436d2013-06-27 17:25:09 -0500168 if (XFS_QM_ISUDQ(dqp))
169 qa = tp->t_dqinfo->dqs[XFS_QM_TRANS_USR];
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500170 else if (XFS_QM_ISGDQ(dqp))
Chandra Seetharaman0e6436d2013-06-27 17:25:09 -0500171 qa = tp->t_dqinfo->dqs[XFS_QM_TRANS_GRP];
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500172 else if (XFS_QM_ISPDQ(dqp))
173 qa = tp->t_dqinfo->dqs[XFS_QM_TRANS_PRJ];
174 else
175 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Christoph Hellwig191f8482010-04-20 17:01:53 +1000177 for (i = 0; i < XFS_QM_TRANS_MAXDQS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 if (qa[i].qt_dquot == NULL ||
Christoph Hellwig191f8482010-04-20 17:01:53 +1000179 qa[i].qt_dquot == dqp)
180 return &qa[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 }
182
Christoph Hellwig191f8482010-04-20 17:01:53 +1000183 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184}
185
186/*
187 * Make the changes in the transaction structure.
188 * The moral equivalent to xfs_trans_mod_sb().
189 * We don't touch any fields in the dquot, so we don't care
190 * if it's locked or not (most of the time it won't be).
191 */
192void
193xfs_trans_mod_dquot(
194 xfs_trans_t *tp,
195 xfs_dquot_t *dqp,
196 uint field,
197 long delta)
198{
199 xfs_dqtrx_t *qtrx;
200
201 ASSERT(tp);
Christoph Hellwig7d095252009-06-08 15:33:32 +0200202 ASSERT(XFS_IS_QUOTA_RUNNING(tp->t_mountp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 qtrx = NULL;
204
205 if (tp->t_dqinfo == NULL)
206 xfs_trans_alloc_dqinfo(tp);
207 /*
208 * Find either the first free slot or the slot that belongs
209 * to this dquot.
210 */
211 qtrx = xfs_trans_get_dqtrx(tp, dqp);
212 ASSERT(qtrx);
213 if (qtrx->qt_dquot == NULL)
214 qtrx->qt_dquot = dqp;
215
216 switch (field) {
217
218 /*
219 * regular disk blk reservation
220 */
221 case XFS_TRANS_DQ_RES_BLKS:
222 qtrx->qt_blk_res += (ulong)delta;
223 break;
224
225 /*
226 * inode reservation
227 */
228 case XFS_TRANS_DQ_RES_INOS:
229 qtrx->qt_ino_res += (ulong)delta;
230 break;
231
232 /*
233 * disk blocks used.
234 */
235 case XFS_TRANS_DQ_BCOUNT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 qtrx->qt_bcount_delta += delta;
237 break;
238
239 case XFS_TRANS_DQ_DELBCOUNT:
240 qtrx->qt_delbcnt_delta += delta;
241 break;
242
243 /*
244 * Inode Count
245 */
246 case XFS_TRANS_DQ_ICOUNT:
247 if (qtrx->qt_ino_res && delta > 0) {
248 qtrx->qt_ino_res_used += (ulong)delta;
249 ASSERT(qtrx->qt_ino_res >= qtrx->qt_ino_res_used);
250 }
251 qtrx->qt_icount_delta += delta;
252 break;
253
254 /*
255 * rtblk reservation
256 */
257 case XFS_TRANS_DQ_RES_RTBLKS:
258 qtrx->qt_rtblk_res += (ulong)delta;
259 break;
260
261 /*
262 * rtblk count
263 */
264 case XFS_TRANS_DQ_RTBCOUNT:
265 if (qtrx->qt_rtblk_res && delta > 0) {
266 qtrx->qt_rtblk_res_used += (ulong)delta;
267 ASSERT(qtrx->qt_rtblk_res >= qtrx->qt_rtblk_res_used);
268 }
269 qtrx->qt_rtbcount_delta += delta;
270 break;
271
272 case XFS_TRANS_DQ_DELRTBCOUNT:
273 qtrx->qt_delrtb_delta += delta;
274 break;
275
276 default:
277 ASSERT(0);
278 }
279 tp->t_flags |= XFS_TRANS_DQ_DIRTY;
280}
281
282
283/*
Dave Chinnerb0a9dab2013-07-10 07:04:01 +1000284 * Given an array of dqtrx structures, lock all the dquots associated and join
285 * them to the transaction, provided they have been modified. We know that the
Christoph Hellwig10f73d22013-11-06 03:45:36 -0800286 * highest number of dquots of one type - usr, grp and prj - involved in a
287 * transaction is 3 so we don't need to make this very generic.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 */
289STATIC void
290xfs_trans_dqlockedjoin(
291 xfs_trans_t *tp,
292 xfs_dqtrx_t *q)
293{
294 ASSERT(q[0].qt_dquot != NULL);
295 if (q[1].qt_dquot == NULL) {
296 xfs_dqlock(q[0].qt_dquot);
297 xfs_trans_dqjoin(tp, q[0].qt_dquot);
298 } else {
299 ASSERT(XFS_QM_TRANS_MAXDQS == 2);
300 xfs_dqlock2(q[0].qt_dquot, q[1].qt_dquot);
301 xfs_trans_dqjoin(tp, q[0].qt_dquot);
302 xfs_trans_dqjoin(tp, q[1].qt_dquot);
303 }
304}
305
306
307/*
308 * Called by xfs_trans_commit() and similar in spirit to
309 * xfs_trans_apply_sb_deltas().
310 * Go thru all the dquots belonging to this transaction and modify the
311 * INCORE dquot to reflect the actual usages.
312 * Unreserve just the reservations done by this transaction.
313 * dquot is still left locked at exit.
314 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200315void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316xfs_trans_apply_dquot_deltas(
Brian Foster4b6eae2e2013-03-18 10:51:45 -0400317 struct xfs_trans *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
319 int i, j;
Brian Foster4b6eae2e2013-03-18 10:51:45 -0400320 struct xfs_dquot *dqp;
321 struct xfs_dqtrx *qtrx, *qa;
322 struct xfs_disk_dquot *d;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 long totalbdelta;
324 long totalrtbdelta;
325
Christoph Hellwig7d095252009-06-08 15:33:32 +0200326 if (!(tp->t_flags & XFS_TRANS_DQ_DIRTY))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 return;
328
329 ASSERT(tp->t_dqinfo);
Chandra Seetharaman0e6436d2013-06-27 17:25:09 -0500330 for (j = 0; j < XFS_QM_TRANS_DQTYPES; j++) {
331 qa = tp->t_dqinfo->dqs[j];
332 if (qa[0].qt_dquot == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
335 /*
336 * Lock all of the dquots and join them to the transaction.
337 */
338 xfs_trans_dqlockedjoin(tp, qa);
339
340 for (i = 0; i < XFS_QM_TRANS_MAXDQS; i++) {
341 qtrx = &qa[i];
342 /*
343 * The array of dquots is filled
344 * sequentially, not sparsely.
345 */
346 if ((dqp = qtrx->qt_dquot) == NULL)
347 break;
348
349 ASSERT(XFS_DQ_IS_LOCKED(dqp));
Christoph Hellwig191f8482010-04-20 17:01:53 +1000350 ASSERT(dqp->q_transp == tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
352 /*
353 * adjust the actual number of blocks used
354 */
355 d = &dqp->q_core;
356
357 /*
358 * The issue here is - sometimes we don't make a blkquota
359 * reservation intentionally to be fair to users
360 * (when the amount is small). On the other hand,
361 * delayed allocs do make reservations, but that's
362 * outside of a transaction, so we have no
363 * idea how much was really reserved.
364 * So, here we've accumulated delayed allocation blks and
365 * non-delay blks. The assumption is that the
366 * delayed ones are always reserved (outside of a
367 * transaction), and the others may or may not have
368 * quota reservations.
369 */
370 totalbdelta = qtrx->qt_bcount_delta +
371 qtrx->qt_delbcnt_delta;
372 totalrtbdelta = qtrx->qt_rtbcount_delta +
373 qtrx->qt_delrtb_delta;
Christoph Hellwigea15ab32011-07-13 13:43:50 +0200374#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 if (totalbdelta < 0)
Christoph Hellwig1149d962005-11-02 15:01:12 +1100376 ASSERT(be64_to_cpu(d->d_bcount) >=
Christoph Hellwigea15ab32011-07-13 13:43:50 +0200377 -totalbdelta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
379 if (totalrtbdelta < 0)
Christoph Hellwig1149d962005-11-02 15:01:12 +1100380 ASSERT(be64_to_cpu(d->d_rtbcount) >=
Christoph Hellwigea15ab32011-07-13 13:43:50 +0200381 -totalrtbdelta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
383 if (qtrx->qt_icount_delta < 0)
Christoph Hellwig1149d962005-11-02 15:01:12 +1100384 ASSERT(be64_to_cpu(d->d_icount) >=
Christoph Hellwigea15ab32011-07-13 13:43:50 +0200385 -qtrx->qt_icount_delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386#endif
387 if (totalbdelta)
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800388 be64_add_cpu(&d->d_bcount, (xfs_qcnt_t)totalbdelta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
390 if (qtrx->qt_icount_delta)
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800391 be64_add_cpu(&d->d_icount, (xfs_qcnt_t)qtrx->qt_icount_delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
393 if (totalrtbdelta)
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800394 be64_add_cpu(&d->d_rtbcount, (xfs_qcnt_t)totalrtbdelta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
396 /*
397 * Get any default limits in use.
398 * Start/reset the timer(s) if needed.
399 */
400 if (d->d_id) {
Brian Foster4b6eae2e2013-03-18 10:51:45 -0400401 xfs_qm_adjust_dqlimits(tp->t_mountp, dqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 xfs_qm_adjust_dqtimers(tp->t_mountp, d);
403 }
404
405 dqp->dq_flags |= XFS_DQ_DIRTY;
406 /*
407 * add this to the list of items to get logged
408 */
409 xfs_trans_log_dquot(tp, dqp);
410 /*
411 * Take off what's left of the original reservation.
412 * In case of delayed allocations, there's no
413 * reservation that a transaction structure knows of.
414 */
415 if (qtrx->qt_blk_res != 0) {
Brian Foster7f884dc2015-06-01 07:15:37 +1000416 ulong blk_res_used = 0;
417
418 if (qtrx->qt_bcount_delta > 0)
419 blk_res_used = qtrx->qt_bcount_delta;
420
421 if (qtrx->qt_blk_res != blk_res_used) {
422 if (qtrx->qt_blk_res > blk_res_used)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 dqp->q_res_bcount -= (xfs_qcnt_t)
424 (qtrx->qt_blk_res -
Brian Foster7f884dc2015-06-01 07:15:37 +1000425 blk_res_used);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 else
427 dqp->q_res_bcount -= (xfs_qcnt_t)
Brian Foster7f884dc2015-06-01 07:15:37 +1000428 (blk_res_used -
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 qtrx->qt_blk_res);
430 }
431 } else {
432 /*
433 * These blks were never reserved, either inside
434 * a transaction or outside one (in a delayed
435 * allocation). Also, this isn't always a
436 * negative number since we sometimes
437 * deliberately skip quota reservations.
438 */
439 if (qtrx->qt_bcount_delta) {
440 dqp->q_res_bcount +=
441 (xfs_qcnt_t)qtrx->qt_bcount_delta;
442 }
443 }
444 /*
445 * Adjust the RT reservation.
446 */
447 if (qtrx->qt_rtblk_res != 0) {
Nathan Scott06d10dd2005-06-21 15:48:47 +1000448 if (qtrx->qt_rtblk_res != qtrx->qt_rtblk_res_used) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 if (qtrx->qt_rtblk_res >
450 qtrx->qt_rtblk_res_used)
451 dqp->q_res_rtbcount -= (xfs_qcnt_t)
452 (qtrx->qt_rtblk_res -
453 qtrx->qt_rtblk_res_used);
454 else
455 dqp->q_res_rtbcount -= (xfs_qcnt_t)
456 (qtrx->qt_rtblk_res_used -
457 qtrx->qt_rtblk_res);
458 }
459 } else {
460 if (qtrx->qt_rtbcount_delta)
461 dqp->q_res_rtbcount +=
462 (xfs_qcnt_t)qtrx->qt_rtbcount_delta;
463 }
464
465 /*
466 * Adjust the inode reservation.
467 */
468 if (qtrx->qt_ino_res != 0) {
469 ASSERT(qtrx->qt_ino_res >=
470 qtrx->qt_ino_res_used);
471 if (qtrx->qt_ino_res > qtrx->qt_ino_res_used)
472 dqp->q_res_icount -= (xfs_qcnt_t)
473 (qtrx->qt_ino_res -
474 qtrx->qt_ino_res_used);
475 } else {
476 if (qtrx->qt_icount_delta)
477 dqp->q_res_icount +=
478 (xfs_qcnt_t)qtrx->qt_icount_delta;
479 }
480
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 ASSERT(dqp->q_res_bcount >=
Christoph Hellwig1149d962005-11-02 15:01:12 +1100482 be64_to_cpu(dqp->q_core.d_bcount));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 ASSERT(dqp->q_res_icount >=
Christoph Hellwig1149d962005-11-02 15:01:12 +1100484 be64_to_cpu(dqp->q_core.d_icount));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 ASSERT(dqp->q_res_rtbcount >=
Christoph Hellwig1149d962005-11-02 15:01:12 +1100486 be64_to_cpu(dqp->q_core.d_rtbcount));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 }
489}
490
491/*
492 * Release the reservations, and adjust the dquots accordingly.
493 * This is called only when the transaction is being aborted. If by
494 * any chance we have done dquot modifications incore (ie. deltas) already,
495 * we simply throw those away, since that's the expected behavior
496 * when a transaction is curtailed without a commit.
497 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200498void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499xfs_trans_unreserve_and_mod_dquots(
500 xfs_trans_t *tp)
501{
502 int i, j;
503 xfs_dquot_t *dqp;
504 xfs_dqtrx_t *qtrx, *qa;
Thiago Farina667a9292012-11-12 21:32:59 -0200505 bool locked;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
507 if (!tp->t_dqinfo || !(tp->t_flags & XFS_TRANS_DQ_DIRTY))
508 return;
509
Chandra Seetharaman0e6436d2013-06-27 17:25:09 -0500510 for (j = 0; j < XFS_QM_TRANS_DQTYPES; j++) {
511 qa = tp->t_dqinfo->dqs[j];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 for (i = 0; i < XFS_QM_TRANS_MAXDQS; i++) {
514 qtrx = &qa[i];
515 /*
516 * We assume that the array of dquots is filled
517 * sequentially, not sparsely.
518 */
519 if ((dqp = qtrx->qt_dquot) == NULL)
520 break;
521 /*
522 * Unreserve the original reservation. We don't care
523 * about the number of blocks used field, or deltas.
524 * Also we don't bother to zero the fields.
525 */
Thiago Farina667a9292012-11-12 21:32:59 -0200526 locked = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 if (qtrx->qt_blk_res) {
528 xfs_dqlock(dqp);
Thiago Farina667a9292012-11-12 21:32:59 -0200529 locked = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 dqp->q_res_bcount -=
531 (xfs_qcnt_t)qtrx->qt_blk_res;
532 }
533 if (qtrx->qt_ino_res) {
534 if (!locked) {
535 xfs_dqlock(dqp);
Thiago Farina667a9292012-11-12 21:32:59 -0200536 locked = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 }
538 dqp->q_res_icount -=
539 (xfs_qcnt_t)qtrx->qt_ino_res;
540 }
541
542 if (qtrx->qt_rtblk_res) {
543 if (!locked) {
544 xfs_dqlock(dqp);
Thiago Farina667a9292012-11-12 21:32:59 -0200545 locked = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 }
547 dqp->q_res_rtbcount -=
548 (xfs_qcnt_t)qtrx->qt_rtblk_res;
549 }
550 if (locked)
551 xfs_dqunlock(dqp);
552
553 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 }
555}
556
Christoph Hellwiga210c1a2010-01-17 22:36:19 +0000557STATIC void
558xfs_quota_warn(
559 struct xfs_mount *mp,
560 struct xfs_dquot *dqp,
561 int type)
562{
Masatake YAMATOffc671f2016-01-04 16:10:42 +1100563 enum quota_type qtype;
564
Christoph Hellwiga210c1a2010-01-17 22:36:19 +0000565 if (dqp->dq_flags & XFS_DQ_PROJ)
Masatake YAMATOffc671f2016-01-04 16:10:42 +1100566 qtype = PRJQUOTA;
567 else if (dqp->dq_flags & XFS_DQ_USER)
568 qtype = USRQUOTA;
569 else
570 qtype = GRPQUOTA;
571
572 quota_send_warning(make_kqid(&init_user_ns, qtype,
Eric W. Biederman431f1972012-09-16 02:32:43 -0700573 be32_to_cpu(dqp->q_core.d_id)),
574 mp->m_super->s_dev, type);
Christoph Hellwiga210c1a2010-01-17 22:36:19 +0000575}
576
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577/*
578 * This reserves disk blocks and inodes against a dquot.
579 * Flags indicate if the dquot is to be locked here and also
580 * if the blk reservation is for RT or regular blocks.
581 * Sending in XFS_QMOPT_FORCE_RES flag skips the quota check.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 */
583STATIC int
584xfs_trans_dqresv(
585 xfs_trans_t *tp,
586 xfs_mount_t *mp,
587 xfs_dquot_t *dqp,
588 long nblks,
589 long ninos,
590 uint flags)
591{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 xfs_qcnt_t hardlimit;
593 xfs_qcnt_t softlimit;
Nathan Scott06d10dd2005-06-21 15:48:47 +1000594 time_t timer;
595 xfs_qwarncnt_t warns;
596 xfs_qwarncnt_t warnlimit;
Mitsuo Hayasaka70b54372012-02-06 12:51:05 +0000597 xfs_qcnt_t total_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 xfs_qcnt_t *resbcountp;
599 xfs_quotainfo_t *q = mp->m_quotainfo;
Carlos Maiolinobe607942016-02-08 11:27:55 +1100600 struct xfs_def_quota *defq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100602
603 xfs_dqlock(dqp);
604
Carlos Maiolinobe607942016-02-08 11:27:55 +1100605 defq = xfs_get_defquota(dqp, q);
606
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 if (flags & XFS_TRANS_DQ_RES_BLKS) {
Christoph Hellwig1149d962005-11-02 15:01:12 +1100608 hardlimit = be64_to_cpu(dqp->q_core.d_blk_hardlimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 if (!hardlimit)
Carlos Maiolinobe607942016-02-08 11:27:55 +1100610 hardlimit = defq->bhardlimit;
Christoph Hellwig1149d962005-11-02 15:01:12 +1100611 softlimit = be64_to_cpu(dqp->q_core.d_blk_softlimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 if (!softlimit)
Carlos Maiolinobe607942016-02-08 11:27:55 +1100613 softlimit = defq->bsoftlimit;
Christoph Hellwig1149d962005-11-02 15:01:12 +1100614 timer = be32_to_cpu(dqp->q_core.d_btimer);
615 warns = be16_to_cpu(dqp->q_core.d_bwarns);
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000616 warnlimit = dqp->q_mount->m_quotainfo->qi_bwarnlimit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 resbcountp = &dqp->q_res_bcount;
618 } else {
619 ASSERT(flags & XFS_TRANS_DQ_RES_RTBLKS);
Christoph Hellwig1149d962005-11-02 15:01:12 +1100620 hardlimit = be64_to_cpu(dqp->q_core.d_rtb_hardlimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 if (!hardlimit)
Carlos Maiolinobe607942016-02-08 11:27:55 +1100622 hardlimit = defq->rtbhardlimit;
Christoph Hellwig1149d962005-11-02 15:01:12 +1100623 softlimit = be64_to_cpu(dqp->q_core.d_rtb_softlimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 if (!softlimit)
Carlos Maiolinobe607942016-02-08 11:27:55 +1100625 softlimit = defq->rtbsoftlimit;
Christoph Hellwig1149d962005-11-02 15:01:12 +1100626 timer = be32_to_cpu(dqp->q_core.d_rtbtimer);
627 warns = be16_to_cpu(dqp->q_core.d_rtbwarns);
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000628 warnlimit = dqp->q_mount->m_quotainfo->qi_rtbwarnlimit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 resbcountp = &dqp->q_res_rtbcount;
630 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
632 if ((flags & XFS_QMOPT_FORCE_RES) == 0 &&
633 dqp->q_core.d_id &&
Kouta Ooizumie6d29422007-05-08 13:49:33 +1000634 ((XFS_IS_UQUOTA_ENFORCED(dqp->q_mount) && XFS_QM_ISUDQ(dqp)) ||
Chandra Seetharaman83e782e2013-06-27 17:25:10 -0500635 (XFS_IS_GQUOTA_ENFORCED(dqp->q_mount) && XFS_QM_ISGDQ(dqp)) ||
636 (XFS_IS_PQUOTA_ENFORCED(dqp->q_mount) && XFS_QM_ISPDQ(dqp)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 if (nblks > 0) {
638 /*
639 * dquot is locked already. See if we'd go over the
640 * hardlimit or exceed the timelimit if we allocate
641 * nblks.
642 */
Mitsuo Hayasaka70b54372012-02-06 12:51:05 +0000643 total_count = *resbcountp + nblks;
644 if (hardlimit && total_count > hardlimit) {
Christoph Hellwiga210c1a2010-01-17 22:36:19 +0000645 xfs_quota_warn(mp, dqp, QUOTA_NL_BHARDWARN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 goto error_return;
Christoph Hellwiga210c1a2010-01-17 22:36:19 +0000647 }
Mitsuo Hayasaka70b54372012-02-06 12:51:05 +0000648 if (softlimit && total_count > softlimit) {
Christoph Hellwiga210c1a2010-01-17 22:36:19 +0000649 if ((timer != 0 && get_seconds() > timer) ||
650 (warns != 0 && warns >= warnlimit)) {
651 xfs_quota_warn(mp, dqp,
652 QUOTA_NL_BSOFTLONGWARN);
653 goto error_return;
654 }
655
656 xfs_quota_warn(mp, dqp, QUOTA_NL_BSOFTWARN);
657 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 }
659 if (ninos > 0) {
Mitsuo Hayasaka70b54372012-02-06 12:51:05 +0000660 total_count = be64_to_cpu(dqp->q_core.d_icount) + ninos;
Christoph Hellwig1149d962005-11-02 15:01:12 +1100661 timer = be32_to_cpu(dqp->q_core.d_itimer);
662 warns = be16_to_cpu(dqp->q_core.d_iwarns);
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000663 warnlimit = dqp->q_mount->m_quotainfo->qi_iwarnlimit;
Christoph Hellwig1149d962005-11-02 15:01:12 +1100664 hardlimit = be64_to_cpu(dqp->q_core.d_ino_hardlimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 if (!hardlimit)
Carlos Maiolinobe607942016-02-08 11:27:55 +1100666 hardlimit = defq->ihardlimit;
Christoph Hellwig1149d962005-11-02 15:01:12 +1100667 softlimit = be64_to_cpu(dqp->q_core.d_ino_softlimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 if (!softlimit)
Carlos Maiolinobe607942016-02-08 11:27:55 +1100669 softlimit = defq->isoftlimit;
Christoph Hellwig4d1f88d2010-01-13 22:05:49 +0000670
Mitsuo Hayasaka70b54372012-02-06 12:51:05 +0000671 if (hardlimit && total_count > hardlimit) {
Christoph Hellwiga210c1a2010-01-17 22:36:19 +0000672 xfs_quota_warn(mp, dqp, QUOTA_NL_IHARDWARN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 goto error_return;
Christoph Hellwiga210c1a2010-01-17 22:36:19 +0000674 }
Mitsuo Hayasaka70b54372012-02-06 12:51:05 +0000675 if (softlimit && total_count > softlimit) {
Christoph Hellwiga210c1a2010-01-17 22:36:19 +0000676 if ((timer != 0 && get_seconds() > timer) ||
677 (warns != 0 && warns >= warnlimit)) {
678 xfs_quota_warn(mp, dqp,
679 QUOTA_NL_ISOFTLONGWARN);
680 goto error_return;
681 }
682 xfs_quota_warn(mp, dqp, QUOTA_NL_ISOFTWARN);
683 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 }
685 }
686
687 /*
688 * Change the reservation, but not the actual usage.
689 * Note that q_res_bcount = q_core.d_bcount + resv
690 */
691 (*resbcountp) += (xfs_qcnt_t)nblks;
692 if (ninos != 0)
693 dqp->q_res_icount += (xfs_qcnt_t)ninos;
694
695 /*
696 * note the reservation amt in the trans struct too,
697 * so that the transaction knows how much was reserved by
698 * it against this particular dquot.
699 * We don't do this when we are reserving for a delayed allocation,
700 * because we don't have the luxury of a transaction envelope then.
701 */
702 if (tp) {
703 ASSERT(tp->t_dqinfo);
704 ASSERT(flags & XFS_QMOPT_RESBLK_MASK);
705 if (nblks != 0)
706 xfs_trans_mod_dquot(tp, dqp,
707 flags & XFS_QMOPT_RESBLK_MASK,
708 nblks);
709 if (ninos != 0)
710 xfs_trans_mod_dquot(tp, dqp,
711 XFS_TRANS_DQ_RES_INOS,
712 ninos);
713 }
Christoph Hellwig1149d962005-11-02 15:01:12 +1100714 ASSERT(dqp->q_res_bcount >= be64_to_cpu(dqp->q_core.d_bcount));
715 ASSERT(dqp->q_res_rtbcount >= be64_to_cpu(dqp->q_core.d_rtbcount));
716 ASSERT(dqp->q_res_icount >= be64_to_cpu(dqp->q_core.d_icount));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Christoph Hellwig4d1f88d2010-01-13 22:05:49 +0000718 xfs_dqunlock(dqp);
719 return 0;
720
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721error_return:
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100722 xfs_dqunlock(dqp);
Christoph Hellwig4d1f88d2010-01-13 22:05:49 +0000723 if (flags & XFS_QMOPT_ENOSPC)
Dave Chinner24513372014-06-25 14:58:08 +1000724 return -ENOSPC;
725 return -EDQUOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726}
727
728
729/*
Nathan Scott9a2a7de2006-03-31 13:04:49 +1000730 * Given dquot(s), make disk block and/or inode reservations against them.
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500731 * The fact that this does the reservation against user, group and
732 * project quotas is important, because this follows a all-or-nothing
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 * approach.
734 *
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100735 * flags = XFS_QMOPT_FORCE_RES evades limit enforcement. Used by chown.
Nathan Scott9a2a7de2006-03-31 13:04:49 +1000736 * XFS_QMOPT_ENOSPC returns ENOSPC not EDQUOT. Used by pquota.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 * XFS_TRANS_DQ_RES_BLKS reserves regular disk blocks
738 * XFS_TRANS_DQ_RES_RTBLKS reserves realtime disk blocks
739 * dquots are unlocked on return, if they were not locked by caller.
740 */
741int
742xfs_trans_reserve_quota_bydquots(
Chandra Seetharaman113a5682013-06-27 17:25:07 -0500743 struct xfs_trans *tp,
744 struct xfs_mount *mp,
745 struct xfs_dquot *udqp,
746 struct xfs_dquot *gdqp,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500747 struct xfs_dquot *pdqp,
Chandra Seetharaman113a5682013-06-27 17:25:07 -0500748 long nblks,
749 long ninos,
750 uint flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751{
Chandra Seetharaman113a5682013-06-27 17:25:07 -0500752 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Christoph Hellwig7d095252009-06-08 15:33:32 +0200754 if (!XFS_IS_QUOTA_RUNNING(mp) || !XFS_IS_QUOTA_ON(mp))
Nathan Scott9a2a7de2006-03-31 13:04:49 +1000755 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
757 if (tp && tp->t_dqinfo == NULL)
758 xfs_trans_alloc_dqinfo(tp);
759
760 ASSERT(flags & XFS_QMOPT_RESBLK_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
762 if (udqp) {
Nathan Scott9a2a7de2006-03-31 13:04:49 +1000763 error = xfs_trans_dqresv(tp, mp, udqp, nblks, ninos,
764 (flags & ~XFS_QMOPT_ENOSPC));
765 if (error)
766 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 }
768
769 if (gdqp) {
Nathan Scott9a2a7de2006-03-31 13:04:49 +1000770 error = xfs_trans_dqresv(tp, mp, gdqp, nblks, ninos, flags);
Chandra Seetharaman113a5682013-06-27 17:25:07 -0500771 if (error)
772 goto unwind_usr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 }
774
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500775 if (pdqp) {
776 error = xfs_trans_dqresv(tp, mp, pdqp, nblks, ninos, flags);
777 if (error)
778 goto unwind_grp;
779 }
780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 /*
Nathan Scottc41564b2006-03-29 08:55:14 +1000782 * Didn't change anything critical, so, no need to log
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 */
Nathan Scott9a2a7de2006-03-31 13:04:49 +1000784 return 0;
Chandra Seetharaman113a5682013-06-27 17:25:07 -0500785
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500786unwind_grp:
787 flags |= XFS_QMOPT_FORCE_RES;
788 if (gdqp)
789 xfs_trans_dqresv(tp, mp, gdqp, -nblks, -ninos, flags);
Chandra Seetharaman113a5682013-06-27 17:25:07 -0500790unwind_usr:
791 flags |= XFS_QMOPT_FORCE_RES;
792 if (udqp)
793 xfs_trans_dqresv(tp, mp, udqp, -nblks, -ninos, flags);
794 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795}
796
797
798/*
799 * Lock the dquot and change the reservation if we can.
800 * This doesn't change the actual usage, just the reservation.
801 * The inode sent in is locked.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200803int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804xfs_trans_reserve_quota_nblks(
Christoph Hellwig7d095252009-06-08 15:33:32 +0200805 struct xfs_trans *tp,
806 struct xfs_inode *ip,
807 long nblks,
808 long ninos,
809 uint flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810{
Christoph Hellwig7d095252009-06-08 15:33:32 +0200811 struct xfs_mount *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
Christoph Hellwig7d095252009-06-08 15:33:32 +0200813 if (!XFS_IS_QUOTA_RUNNING(mp) || !XFS_IS_QUOTA_ON(mp))
Nathan Scott9a2a7de2006-03-31 13:04:49 +1000814 return 0;
815 if (XFS_IS_PQUOTA_ON(mp))
816 flags |= XFS_QMOPT_ENOSPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
Chandra Seetharaman9cad19d2013-06-27 17:25:04 -0500818 ASSERT(!xfs_is_quota_inode(&mp->m_sb, ip->i_ino));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
Christoph Hellwig579aa9c2008-04-22 17:34:00 +1000820 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Nathan Scott9a2a7de2006-03-31 13:04:49 +1000821 ASSERT((flags & ~(XFS_QMOPT_FORCE_RES | XFS_QMOPT_ENOSPC)) ==
822 XFS_TRANS_DQ_RES_RTBLKS ||
823 (flags & ~(XFS_QMOPT_FORCE_RES | XFS_QMOPT_ENOSPC)) ==
824 XFS_TRANS_DQ_RES_BLKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
826 /*
827 * Reserve nblks against these dquots, with trans as the mediator.
828 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200829 return xfs_trans_reserve_quota_bydquots(tp, mp,
830 ip->i_udquot, ip->i_gdquot,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500831 ip->i_pdquot,
Christoph Hellwig7d095252009-06-08 15:33:32 +0200832 nblks, ninos, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833}
834
835/*
836 * This routine is called to allocate a quotaoff log item.
837 */
838xfs_qoff_logitem_t *
839xfs_trans_get_qoff_item(
840 xfs_trans_t *tp,
841 xfs_qoff_logitem_t *startqoff,
842 uint flags)
843{
844 xfs_qoff_logitem_t *q;
845
846 ASSERT(tp != NULL);
847
848 q = xfs_qm_qoff_logitem_init(tp->t_mountp, startqoff, flags);
849 ASSERT(q != NULL);
850
851 /*
852 * Get a log_item_desc to point at the new item.
853 */
Christoph Hellwige98c4142010-06-23 18:11:15 +1000854 xfs_trans_add_item(tp, &q->qql_item);
855 return q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856}
857
858
859/*
860 * This is called to mark the quotaoff logitem as needing
861 * to be logged when the transaction is committed. The logitem must
862 * already be associated with the given transaction.
863 */
864void
865xfs_trans_log_quotaoff_item(
866 xfs_trans_t *tp,
867 xfs_qoff_logitem_t *qlp)
868{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 tp->t_flags |= XFS_TRANS_DIRTY;
Dave Chinnere6631f82018-05-09 07:49:37 -0700870 set_bit(XFS_LI_DIRTY, &qlp->qql_item.li_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871}
872
873STATIC void
874xfs_trans_alloc_dqinfo(
875 xfs_trans_t *tp)
876{
Christoph Hellwiga05931c2012-03-13 08:52:37 +0000877 tp->t_dqinfo = kmem_zone_zalloc(xfs_qm_dqtrxzone, KM_SLEEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878}
879
Christoph Hellwig7d095252009-06-08 15:33:32 +0200880void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881xfs_trans_free_dqinfo(
882 xfs_trans_t *tp)
883{
884 if (!tp->t_dqinfo)
885 return;
Christoph Hellwiga05931c2012-03-13 08:52:37 +0000886 kmem_zone_free(xfs_qm_dqtrxzone, tp->t_dqinfo);
Christoph Hellwig7d095252009-06-08 15:33:32 +0200887 tp->t_dqinfo = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888}