2 * Copyright (c) 2000-2002 Silicon Graphics, Inc.
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation.
9 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
23 #include "xfs_trans.h"
27 #include "xfs_alloc.h"
28 #include "xfs_dmapi.h"
29 #include "xfs_quota.h"
30 #include "xfs_mount.h"
31 #include "xfs_bmap_btree.h"
32 #include "xfs_alloc_btree.h"
33 #include "xfs_ialloc_btree.h"
34 #include "xfs_attr_sf.h"
35 #include "xfs_dir2_sf.h"
36 #include "xfs_dinode.h"
37 #include "xfs_inode.h"
38 #include "xfs_ialloc.h"
39 #include "xfs_itable.h"
40 #include "xfs_btree.h"
42 #include "xfs_rtalloc.h"
43 #include "xfs_error.h"
49 #include "xfs_buf_item.h"
50 #include "xfs_trans_priv.h"
53 STATIC void xfs_trans_alloc_dqinfo(xfs_trans_t *);
56 * Add the locked dquot to the transaction.
57 * The dquot must be locked, and it cannot be associated with any
67 ASSERT(! XFS_DQ_IS_ADDEDTO_TRX(tp, dqp));
68 ASSERT(XFS_DQ_IS_LOCKED(dqp));
69 ASSERT(XFS_DQ_IS_LOGITEM_INITD(dqp));
73 * Get a log_item_desc to point at the new item.
75 (void) xfs_trans_add_item(tp, (xfs_log_item_t*)(lp));
78 * Initialize i_transp so we can later determine if this dquot is
79 * associated with this transaction.
86 * This is called to mark the dquot as needing
87 * to be logged when the transaction is committed. The dquot must
88 * already be associated with the given transaction.
89 * Note that it marks the entire transaction as dirty. In the ordinary
90 * case, this gets called via xfs_trans_commit, after the transaction
91 * is already dirty. However, there's nothing stop this from getting
92 * called directly, as done by xfs_qm_scall_setqlim. Hence, the TRANS_DIRTY
100 xfs_log_item_desc_t *lidp;
102 ASSERT(XFS_DQ_IS_ADDEDTO_TRX(tp, dqp));
103 ASSERT(XFS_DQ_IS_LOCKED(dqp));
105 lidp = xfs_trans_find_item(tp, (xfs_log_item_t*)(&dqp->q_logitem));
106 ASSERT(lidp != NULL);
108 tp->t_flags |= XFS_TRANS_DIRTY;
109 lidp->lid_flags |= XFS_LID_DIRTY;
113 * Carry forward whatever is left of the quota blk reservation to
114 * the spanky new transaction
117 xfs_trans_dup_dqinfo(
121 xfs_dqtrx_t *oq, *nq;
123 xfs_dqtrx_t *oqa, *nqa;
128 xfs_trans_alloc_dqinfo(ntp);
129 oqa = otp->t_dqinfo->dqa_usrdquots;
130 nqa = ntp->t_dqinfo->dqa_usrdquots;
133 * Because the quota blk reservation is carried forward,
134 * it is also necessary to carry forward the DQ_DIRTY flag.
136 if(otp->t_flags & XFS_TRANS_DQ_DIRTY)
137 ntp->t_flags |= XFS_TRANS_DQ_DIRTY;
139 for (j = 0; j < 2; j++) {
140 for (i = 0; i < XFS_QM_TRANS_MAXDQS; i++) {
141 if (oqa[i].qt_dquot == NULL)
146 nq->qt_dquot = oq->qt_dquot;
147 nq->qt_bcount_delta = nq->qt_icount_delta = 0;
148 nq->qt_rtbcount_delta = 0;
151 * Transfer whatever is left of the reservations.
153 nq->qt_blk_res = oq->qt_blk_res - oq->qt_blk_res_used;
154 oq->qt_blk_res = oq->qt_blk_res_used;
156 nq->qt_rtblk_res = oq->qt_rtblk_res -
157 oq->qt_rtblk_res_used;
158 oq->qt_rtblk_res = oq->qt_rtblk_res_used;
160 nq->qt_ino_res = oq->qt_ino_res - oq->qt_ino_res_used;
161 oq->qt_ino_res = oq->qt_ino_res_used;
164 oqa = otp->t_dqinfo->dqa_grpdquots;
165 nqa = ntp->t_dqinfo->dqa_grpdquots;
170 * Wrap around mod_dquot to account for both user and group quotas.
173 xfs_trans_mod_dquot_byino(
184 if (!XFS_IS_QUOTA_ON(mp) ||
185 ip->i_ino == mp->m_sb.sb_uquotino ||
186 ip->i_ino == mp->m_sb.sb_gquotino)
189 if (tp->t_dqinfo == NULL)
190 xfs_trans_alloc_dqinfo(tp);
192 if (XFS_IS_UQUOTA_ON(mp) && ip->i_udquot)
193 (void) xfs_trans_mod_dquot(tp, ip->i_udquot, field, delta);
194 if (XFS_IS_OQUOTA_ON(mp) && ip->i_gdquot)
195 (void) xfs_trans_mod_dquot(tp, ip->i_gdquot, field, delta);
206 for (i = 0; i < XFS_QM_TRANS_MAXDQS; i++) {
207 qa = XFS_QM_DQP_TO_DQACCT(tp, dqp);
209 if (qa[i].qt_dquot == NULL ||
210 qa[i].qt_dquot == dqp) {
219 * Make the changes in the transaction structure.
220 * The moral equivalent to xfs_trans_mod_sb().
221 * We don't touch any fields in the dquot, so we don't care
222 * if it's locked or not (most of the time it won't be).
236 if (tp->t_dqinfo == NULL)
237 xfs_trans_alloc_dqinfo(tp);
239 * Find either the first free slot or the slot that belongs
242 qtrx = xfs_trans_get_dqtrx(tp, dqp);
244 if (qtrx->qt_dquot == NULL)
245 qtrx->qt_dquot = dqp;
250 * regular disk blk reservation
252 case XFS_TRANS_DQ_RES_BLKS:
253 qtrx->qt_blk_res += (ulong)delta;
259 case XFS_TRANS_DQ_RES_INOS:
260 qtrx->qt_ino_res += (ulong)delta;
266 case XFS_TRANS_DQ_BCOUNT:
267 if (qtrx->qt_blk_res && delta > 0) {
268 qtrx->qt_blk_res_used += (ulong)delta;
269 ASSERT(qtrx->qt_blk_res >= qtrx->qt_blk_res_used);
271 qtrx->qt_bcount_delta += delta;
274 case XFS_TRANS_DQ_DELBCOUNT:
275 qtrx->qt_delbcnt_delta += delta;
281 case XFS_TRANS_DQ_ICOUNT:
282 if (qtrx->qt_ino_res && delta > 0) {
283 qtrx->qt_ino_res_used += (ulong)delta;
284 ASSERT(qtrx->qt_ino_res >= qtrx->qt_ino_res_used);
286 qtrx->qt_icount_delta += delta;
292 case XFS_TRANS_DQ_RES_RTBLKS:
293 qtrx->qt_rtblk_res += (ulong)delta;
299 case XFS_TRANS_DQ_RTBCOUNT:
300 if (qtrx->qt_rtblk_res && delta > 0) {
301 qtrx->qt_rtblk_res_used += (ulong)delta;
302 ASSERT(qtrx->qt_rtblk_res >= qtrx->qt_rtblk_res_used);
304 qtrx->qt_rtbcount_delta += delta;
307 case XFS_TRANS_DQ_DELRTBCOUNT:
308 qtrx->qt_delrtb_delta += delta;
314 tp->t_flags |= XFS_TRANS_DQ_DIRTY;
319 * Given an array of dqtrx structures, lock all the dquots associated
320 * and join them to the transaction, provided they have been modified.
321 * We know that the highest number of dquots (of one type - usr OR grp),
322 * involved in a transaction is 2 and that both usr and grp combined - 3.
323 * So, we don't attempt to make this very generic.
326 xfs_trans_dqlockedjoin(
330 ASSERT(q[0].qt_dquot != NULL);
331 if (q[1].qt_dquot == NULL) {
332 xfs_dqlock(q[0].qt_dquot);
333 xfs_trans_dqjoin(tp, q[0].qt_dquot);
335 ASSERT(XFS_QM_TRANS_MAXDQS == 2);
336 xfs_dqlock2(q[0].qt_dquot, q[1].qt_dquot);
337 xfs_trans_dqjoin(tp, q[0].qt_dquot);
338 xfs_trans_dqjoin(tp, q[1].qt_dquot);
344 * Called by xfs_trans_commit() and similar in spirit to
345 * xfs_trans_apply_sb_deltas().
346 * Go thru all the dquots belonging to this transaction and modify the
347 * INCORE dquot to reflect the actual usages.
348 * Unreserve just the reservations done by this transaction.
349 * dquot is still left locked at exit.
352 xfs_trans_apply_dquot_deltas(
357 xfs_dqtrx_t *qtrx, *qa;
362 if (! (tp->t_flags & XFS_TRANS_DQ_DIRTY))
365 ASSERT(tp->t_dqinfo);
366 qa = tp->t_dqinfo->dqa_usrdquots;
367 for (j = 0; j < 2; j++) {
368 if (qa[0].qt_dquot == NULL) {
369 qa = tp->t_dqinfo->dqa_grpdquots;
374 * Lock all of the dquots and join them to the transaction.
376 xfs_trans_dqlockedjoin(tp, qa);
378 for (i = 0; i < XFS_QM_TRANS_MAXDQS; i++) {
381 * The array of dquots is filled
382 * sequentially, not sparsely.
384 if ((dqp = qtrx->qt_dquot) == NULL)
387 ASSERT(XFS_DQ_IS_LOCKED(dqp));
388 ASSERT(XFS_DQ_IS_ADDEDTO_TRX(tp, dqp));
391 * adjust the actual number of blocks used
396 * The issue here is - sometimes we don't make a blkquota
397 * reservation intentionally to be fair to users
398 * (when the amount is small). On the other hand,
399 * delayed allocs do make reservations, but that's
400 * outside of a transaction, so we have no
401 * idea how much was really reserved.
402 * So, here we've accumulated delayed allocation blks and
403 * non-delay blks. The assumption is that the
404 * delayed ones are always reserved (outside of a
405 * transaction), and the others may or may not have
406 * quota reservations.
408 totalbdelta = qtrx->qt_bcount_delta +
409 qtrx->qt_delbcnt_delta;
410 totalrtbdelta = qtrx->qt_rtbcount_delta +
411 qtrx->qt_delrtb_delta;
414 ASSERT(be64_to_cpu(d->d_bcount) >=
415 (xfs_qcnt_t) -totalbdelta);
417 if (totalrtbdelta < 0)
418 ASSERT(be64_to_cpu(d->d_rtbcount) >=
419 (xfs_qcnt_t) -totalrtbdelta);
421 if (qtrx->qt_icount_delta < 0)
422 ASSERT(be64_to_cpu(d->d_icount) >=
423 (xfs_qcnt_t) -qtrx->qt_icount_delta);
426 be64_add(&d->d_bcount, (xfs_qcnt_t)totalbdelta);
428 if (qtrx->qt_icount_delta)
429 be64_add(&d->d_icount, (xfs_qcnt_t)qtrx->qt_icount_delta);
432 be64_add(&d->d_rtbcount, (xfs_qcnt_t)totalrtbdelta);
435 * Get any default limits in use.
436 * Start/reset the timer(s) if needed.
439 xfs_qm_adjust_dqlimits(tp->t_mountp, d);
440 xfs_qm_adjust_dqtimers(tp->t_mountp, d);
443 dqp->dq_flags |= XFS_DQ_DIRTY;
445 * add this to the list of items to get logged
447 xfs_trans_log_dquot(tp, dqp);
449 * Take off what's left of the original reservation.
450 * In case of delayed allocations, there's no
451 * reservation that a transaction structure knows of.
453 if (qtrx->qt_blk_res != 0) {
454 if (qtrx->qt_blk_res != qtrx->qt_blk_res_used) {
455 if (qtrx->qt_blk_res >
456 qtrx->qt_blk_res_used)
457 dqp->q_res_bcount -= (xfs_qcnt_t)
459 qtrx->qt_blk_res_used);
461 dqp->q_res_bcount -= (xfs_qcnt_t)
462 (qtrx->qt_blk_res_used -
467 * These blks were never reserved, either inside
468 * a transaction or outside one (in a delayed
469 * allocation). Also, this isn't always a
470 * negative number since we sometimes
471 * deliberately skip quota reservations.
473 if (qtrx->qt_bcount_delta) {
475 (xfs_qcnt_t)qtrx->qt_bcount_delta;
479 * Adjust the RT reservation.
481 if (qtrx->qt_rtblk_res != 0) {
482 if (qtrx->qt_rtblk_res != qtrx->qt_rtblk_res_used) {
483 if (qtrx->qt_rtblk_res >
484 qtrx->qt_rtblk_res_used)
485 dqp->q_res_rtbcount -= (xfs_qcnt_t)
486 (qtrx->qt_rtblk_res -
487 qtrx->qt_rtblk_res_used);
489 dqp->q_res_rtbcount -= (xfs_qcnt_t)
490 (qtrx->qt_rtblk_res_used -
494 if (qtrx->qt_rtbcount_delta)
495 dqp->q_res_rtbcount +=
496 (xfs_qcnt_t)qtrx->qt_rtbcount_delta;
500 * Adjust the inode reservation.
502 if (qtrx->qt_ino_res != 0) {
503 ASSERT(qtrx->qt_ino_res >=
504 qtrx->qt_ino_res_used);
505 if (qtrx->qt_ino_res > qtrx->qt_ino_res_used)
506 dqp->q_res_icount -= (xfs_qcnt_t)
508 qtrx->qt_ino_res_used);
510 if (qtrx->qt_icount_delta)
512 (xfs_qcnt_t)qtrx->qt_icount_delta;
515 ASSERT(dqp->q_res_bcount >=
516 be64_to_cpu(dqp->q_core.d_bcount));
517 ASSERT(dqp->q_res_icount >=
518 be64_to_cpu(dqp->q_core.d_icount));
519 ASSERT(dqp->q_res_rtbcount >=
520 be64_to_cpu(dqp->q_core.d_rtbcount));
523 * Do the group quotas next
525 qa = tp->t_dqinfo->dqa_grpdquots;
530 * Release the reservations, and adjust the dquots accordingly.
531 * This is called only when the transaction is being aborted. If by
532 * any chance we have done dquot modifications incore (ie. deltas) already,
533 * we simply throw those away, since that's the expected behavior
534 * when a transaction is curtailed without a commit.
537 xfs_trans_unreserve_and_mod_dquots(
542 xfs_dqtrx_t *qtrx, *qa;
545 if (!tp->t_dqinfo || !(tp->t_flags & XFS_TRANS_DQ_DIRTY))
548 qa = tp->t_dqinfo->dqa_usrdquots;
550 for (j = 0; j < 2; j++) {
551 for (i = 0; i < XFS_QM_TRANS_MAXDQS; i++) {
554 * We assume that the array of dquots is filled
555 * sequentially, not sparsely.
557 if ((dqp = qtrx->qt_dquot) == NULL)
560 * Unreserve the original reservation. We don't care
561 * about the number of blocks used field, or deltas.
562 * Also we don't bother to zero the fields.
565 if (qtrx->qt_blk_res) {
569 (xfs_qcnt_t)qtrx->qt_blk_res;
571 if (qtrx->qt_ino_res) {
577 (xfs_qcnt_t)qtrx->qt_ino_res;
580 if (qtrx->qt_rtblk_res) {
585 dqp->q_res_rtbcount -=
586 (xfs_qcnt_t)qtrx->qt_rtblk_res;
592 qa = tp->t_dqinfo->dqa_grpdquots;
597 xfs_quota_error(uint flags)
599 if (flags & XFS_QMOPT_ENOSPC)
605 * This reserves disk blocks and inodes against a dquot.
606 * Flags indicate if the dquot is to be locked here and also
607 * if the blk reservation is for RT or regular blocks.
608 * Sending in XFS_QMOPT_FORCE_RES flag skips the quota check.
620 xfs_qcnt_t hardlimit;
621 xfs_qcnt_t softlimit;
623 xfs_qwarncnt_t warns;
624 xfs_qwarncnt_t warnlimit;
626 xfs_qcnt_t *resbcountp;
627 xfs_quotainfo_t *q = mp->m_quotainfo;
629 if (! (flags & XFS_QMOPT_DQLOCK)) {
632 ASSERT(XFS_DQ_IS_LOCKED(dqp));
633 if (flags & XFS_TRANS_DQ_RES_BLKS) {
634 hardlimit = be64_to_cpu(dqp->q_core.d_blk_hardlimit);
636 hardlimit = q->qi_bhardlimit;
637 softlimit = be64_to_cpu(dqp->q_core.d_blk_softlimit);
639 softlimit = q->qi_bsoftlimit;
640 timer = be32_to_cpu(dqp->q_core.d_btimer);
641 warns = be16_to_cpu(dqp->q_core.d_bwarns);
642 warnlimit = XFS_QI_BWARNLIMIT(dqp->q_mount);
643 resbcountp = &dqp->q_res_bcount;
645 ASSERT(flags & XFS_TRANS_DQ_RES_RTBLKS);
646 hardlimit = be64_to_cpu(dqp->q_core.d_rtb_hardlimit);
648 hardlimit = q->qi_rtbhardlimit;
649 softlimit = be64_to_cpu(dqp->q_core.d_rtb_softlimit);
651 softlimit = q->qi_rtbsoftlimit;
652 timer = be32_to_cpu(dqp->q_core.d_rtbtimer);
653 warns = be16_to_cpu(dqp->q_core.d_rtbwarns);
654 warnlimit = XFS_QI_RTBWARNLIMIT(dqp->q_mount);
655 resbcountp = &dqp->q_res_rtbcount;
659 if ((flags & XFS_QMOPT_FORCE_RES) == 0 &&
661 XFS_IS_QUOTA_ENFORCED(dqp->q_mount)) {
663 cmn_err(CE_DEBUG, "BLK Res: nblks=%ld + resbcount=%Ld"
664 " > hardlimit=%Ld?", nblks, *resbcountp, hardlimit);
668 * dquot is locked already. See if we'd go over the
669 * hardlimit or exceed the timelimit if we allocate
672 if (hardlimit > 0ULL &&
673 (hardlimit <= nblks + *resbcountp)) {
674 error = xfs_quota_error(flags);
678 if (softlimit > 0ULL &&
679 (softlimit <= nblks + *resbcountp)) {
680 if ((timer != 0 && get_seconds() > timer) ||
681 (warns != 0 && warns >= warnlimit)) {
682 error = xfs_quota_error(flags);
688 count = be64_to_cpu(dqp->q_core.d_icount);
689 timer = be32_to_cpu(dqp->q_core.d_itimer);
690 warns = be16_to_cpu(dqp->q_core.d_iwarns);
691 warnlimit = XFS_QI_IWARNLIMIT(dqp->q_mount);
692 hardlimit = be64_to_cpu(dqp->q_core.d_ino_hardlimit);
694 hardlimit = q->qi_ihardlimit;
695 softlimit = be64_to_cpu(dqp->q_core.d_ino_softlimit);
697 softlimit = q->qi_isoftlimit;
698 if (hardlimit > 0ULL && count >= hardlimit) {
699 error = xfs_quota_error(flags);
701 } else if (softlimit > 0ULL && count >= softlimit) {
702 if ((timer != 0 && get_seconds() > timer) ||
703 (warns != 0 && warns >= warnlimit)) {
704 error = xfs_quota_error(flags);
712 * Change the reservation, but not the actual usage.
713 * Note that q_res_bcount = q_core.d_bcount + resv
715 (*resbcountp) += (xfs_qcnt_t)nblks;
717 dqp->q_res_icount += (xfs_qcnt_t)ninos;
720 * note the reservation amt in the trans struct too,
721 * so that the transaction knows how much was reserved by
722 * it against this particular dquot.
723 * We don't do this when we are reserving for a delayed allocation,
724 * because we don't have the luxury of a transaction envelope then.
727 ASSERT(tp->t_dqinfo);
728 ASSERT(flags & XFS_QMOPT_RESBLK_MASK);
730 xfs_trans_mod_dquot(tp, dqp,
731 flags & XFS_QMOPT_RESBLK_MASK,
734 xfs_trans_mod_dquot(tp, dqp,
735 XFS_TRANS_DQ_RES_INOS,
738 ASSERT(dqp->q_res_bcount >= be64_to_cpu(dqp->q_core.d_bcount));
739 ASSERT(dqp->q_res_rtbcount >= be64_to_cpu(dqp->q_core.d_rtbcount));
740 ASSERT(dqp->q_res_icount >= be64_to_cpu(dqp->q_core.d_icount));
743 if (! (flags & XFS_QMOPT_DQLOCK)) {
751 * Given dquot(s), make disk block and/or inode reservations against them.
752 * The fact that this does the reservation against both the usr and
753 * grp/prj quotas is important, because this follows a both-or-nothing
756 * flags = XFS_QMOPT_DQLOCK indicate if dquot(s) need to be locked.
757 * XFS_QMOPT_FORCE_RES evades limit enforcement. Used by chown.
758 * XFS_QMOPT_ENOSPC returns ENOSPC not EDQUOT. Used by pquota.
759 * XFS_TRANS_DQ_RES_BLKS reserves regular disk blocks
760 * XFS_TRANS_DQ_RES_RTBLKS reserves realtime disk blocks
761 * dquots are unlocked on return, if they were not locked by caller.
764 xfs_trans_reserve_quota_bydquots(
773 int resvd = 0, error;
775 if (!XFS_IS_QUOTA_ON(mp))
778 if (tp && tp->t_dqinfo == NULL)
779 xfs_trans_alloc_dqinfo(tp);
781 ASSERT(flags & XFS_QMOPT_RESBLK_MASK);
784 error = xfs_trans_dqresv(tp, mp, udqp, nblks, ninos,
785 (flags & ~XFS_QMOPT_ENOSPC));
792 error = xfs_trans_dqresv(tp, mp, gdqp, nblks, ninos, flags);
795 * can't do it, so backout previous reservation
798 flags |= XFS_QMOPT_FORCE_RES;
799 xfs_trans_dqresv(tp, mp, udqp,
800 -nblks, -ninos, flags);
807 * Didn't change anything critical, so, no need to log
814 * Lock the dquot and change the reservation if we can.
815 * This doesn't change the actual usage, just the reservation.
816 * The inode sent in is locked.
819 xfs_trans_reserve_quota_nblks(
829 if (!XFS_IS_QUOTA_ON(mp))
831 if (XFS_IS_PQUOTA_ON(mp))
832 flags |= XFS_QMOPT_ENOSPC;
834 ASSERT(ip->i_ino != mp->m_sb.sb_uquotino);
835 ASSERT(ip->i_ino != mp->m_sb.sb_gquotino);
837 ASSERT(XFS_ISLOCKED_INODE_EXCL(ip));
838 ASSERT(XFS_IS_QUOTA_RUNNING(ip->i_mount));
839 ASSERT((flags & ~(XFS_QMOPT_FORCE_RES | XFS_QMOPT_ENOSPC)) ==
840 XFS_TRANS_DQ_RES_RTBLKS ||
841 (flags & ~(XFS_QMOPT_FORCE_RES | XFS_QMOPT_ENOSPC)) ==
842 XFS_TRANS_DQ_RES_BLKS);
845 * Reserve nblks against these dquots, with trans as the mediator.
847 error = xfs_trans_reserve_quota_bydquots(tp, mp,
848 ip->i_udquot, ip->i_gdquot,
855 * This routine is called to allocate a quotaoff log item.
858 xfs_trans_get_qoff_item(
860 xfs_qoff_logitem_t *startqoff,
863 xfs_qoff_logitem_t *q;
867 q = xfs_qm_qoff_logitem_init(tp->t_mountp, startqoff, flags);
871 * Get a log_item_desc to point at the new item.
873 (void) xfs_trans_add_item(tp, (xfs_log_item_t*)q);
880 * This is called to mark the quotaoff logitem as needing
881 * to be logged when the transaction is committed. The logitem must
882 * already be associated with the given transaction.
885 xfs_trans_log_quotaoff_item(
887 xfs_qoff_logitem_t *qlp)
889 xfs_log_item_desc_t *lidp;
891 lidp = xfs_trans_find_item(tp, (xfs_log_item_t *)qlp);
892 ASSERT(lidp != NULL);
894 tp->t_flags |= XFS_TRANS_DIRTY;
895 lidp->lid_flags |= XFS_LID_DIRTY;
899 xfs_trans_alloc_dqinfo(
902 (tp)->t_dqinfo = kmem_zone_zalloc(xfs_Gqm->qm_dqtrxzone, KM_SLEEP);
906 xfs_trans_free_dqinfo(
911 kmem_zone_free(xfs_Gqm->qm_dqtrxzone, (tp)->t_dqinfo);
912 (tp)->t_dqinfo = NULL;
915 xfs_dqtrxops_t xfs_trans_dquot_ops = {
916 .qo_dup_dqinfo = xfs_trans_dup_dqinfo,
917 .qo_free_dqinfo = xfs_trans_free_dqinfo,
918 .qo_mod_dquot_byino = xfs_trans_mod_dquot_byino,
919 .qo_apply_dquot_deltas = xfs_trans_apply_dquot_deltas,
920 .qo_reserve_quota_nblks = xfs_trans_reserve_quota_nblks,
921 .qo_reserve_quota_bydquots = xfs_trans_reserve_quota_bydquots,
922 .qo_unreserve_and_mod_dquots = xfs_trans_unreserve_and_mod_dquots,