2 * Copyright (c) 2000-2003 Silicon Graphics, Inc. All Rights Reserved.
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of version 2 of the GNU General Public License as
6 * published by the Free Software Foundation.
8 * This program is distributed in the hope that it would be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12 * Further, this software is distributed without any warranty that it is
13 * free of the rightful claim of any third person regarding infringement
14 * or the like. Any license provided herein, whether implied or
15 * otherwise, applies only to this software file. Patent licenses, if
16 * any, provided herein do not apply to combinations of this program with
17 * other software, or any other product whatsoever.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write the Free Software Foundation, Inc., 59
21 * Temple Place - Suite 330, Boston MA 02111-1307, USA.
23 * Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
24 * Mountain View, CA 94043, or:
28 * For further information regarding this notice, see:
30 * http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
37 #include "xfs_trans.h"
42 #include "xfs_alloc.h"
43 #include "xfs_dmapi.h"
44 #include "xfs_quota.h"
45 #include "xfs_mount.h"
46 #include "xfs_alloc_btree.h"
47 #include "xfs_bmap_btree.h"
48 #include "xfs_ialloc_btree.h"
49 #include "xfs_btree.h"
50 #include "xfs_ialloc.h"
51 #include "xfs_attr_sf.h"
52 #include "xfs_dir_sf.h"
53 #include "xfs_dir2_sf.h"
54 #include "xfs_dinode.h"
55 #include "xfs_inode.h"
58 #include "xfs_rtalloc.h"
59 #include "xfs_error.h"
60 #include "xfs_itable.h"
66 #include "xfs_buf_item.h"
67 #include "xfs_trans_space.h"
68 #include "xfs_trans_priv.h"
77 dquot hash-chain lock (hashlock)
78 xqm dquot freelist lock (freelistlock
79 mount's dquot list lock (mplistlock)
80 user dquot lock - lock ordering among dquots is based on the uid or gid
81 group dquot lock - similar to udquots. Between the two dquots, the udquot
82 has to be locked first.
83 pin lock - the dquot lock must be held to take this lock.
87 STATIC
void xfs_qm_dqflush_done(xfs_buf_t
*, xfs_dq_logitem_t
*);
90 xfs_buftarg_t
*xfs_dqerror_target
;
93 int xfs_dqerror_mod
= 33;
97 * Allocate and initialize a dquot. We don't always allocate fresh memory;
98 * we try to reclaim a free dquot if the number of incore dquots are above
100 * The only field inside the core that gets initialized at this point
101 * is the d_id field. The idea is to fill in the entire q_core
102 * when we read in the on disk dquot.
111 boolean_t brandnewdquot
;
113 brandnewdquot
= xfs_qm_dqalloc_incore(&dqp
);
114 dqp
->dq_flags
= type
;
115 INT_SET(dqp
->q_core
.d_id
, ARCH_CONVERT
, id
);
119 * No need to re-initialize these if this is a reclaimed dquot.
122 dqp
->dq_flnext
= dqp
->dq_flprev
= dqp
;
123 mutex_init(&dqp
->q_qlock
, MUTEX_DEFAULT
, "xdq");
124 initnsema(&dqp
->q_flock
, 1, "fdq");
125 sv_init(&dqp
->q_pinwait
, SV_DEFAULT
, "pdq");
127 #ifdef XFS_DQUOT_TRACE
128 dqp
->q_trace
= ktrace_alloc(DQUOT_TRACE_SIZE
, KM_SLEEP
);
129 xfs_dqtrace_entry(dqp
, "DQINIT");
133 * Only the q_core portion was zeroed in dqreclaim_one().
134 * So, we need to reset others.
138 dqp
->MPL_NEXT
= dqp
->HL_NEXT
= NULL
;
139 dqp
->HL_PREVP
= dqp
->MPL_PREVP
= NULL
;
140 dqp
->q_bufoffset
= 0;
141 dqp
->q_fileoffset
= 0;
142 dqp
->q_transp
= NULL
;
143 dqp
->q_gdquot
= NULL
;
144 dqp
->q_res_bcount
= 0;
145 dqp
->q_res_icount
= 0;
146 dqp
->q_res_rtbcount
= 0;
149 ASSERT(dqp
->dq_flnext
== dqp
->dq_flprev
);
151 #ifdef XFS_DQUOT_TRACE
152 ASSERT(dqp
->q_trace
);
153 xfs_dqtrace_entry(dqp
, "DQRECLAIMED_INIT");
158 * log item gets initialized later
164 * This is called to free all the memory associated with a dquot
170 ASSERT(! XFS_DQ_IS_ON_FREELIST(dqp
));
172 mutex_destroy(&dqp
->q_qlock
);
173 freesema(&dqp
->q_flock
);
174 sv_destroy(&dqp
->q_pinwait
);
176 #ifdef XFS_DQUOT_TRACE
178 ktrace_free(dqp
->q_trace
);
181 kmem_zone_free(xfs_Gqm
->qm_dqzone
, dqp
);
182 atomic_dec(&xfs_Gqm
->qm_totaldquots
);
186 * This is what a 'fresh' dquot inside a dquot chunk looks like on disk.
195 * Caller has zero'd the entire dquot 'chunk' already.
197 INT_SET(d
->dd_diskdq
.d_magic
, ARCH_CONVERT
, XFS_DQUOT_MAGIC
);
198 INT_SET(d
->dd_diskdq
.d_version
, ARCH_CONVERT
, XFS_DQUOT_VERSION
);
199 INT_SET(d
->dd_diskdq
.d_id
, ARCH_CONVERT
, id
);
200 INT_SET(d
->dd_diskdq
.d_flags
, ARCH_CONVERT
, type
);
204 #ifdef XFS_DQUOT_TRACE
206 * Dquot tracing for debugging.
216 xfs_dquot_t
*udqp
= NULL
;
219 ASSERT(dqp
->q_trace
);
224 ktrace_enter(dqp
->q_trace
,
225 (void *)(__psint_t
)DQUOT_KTRACE_ENTRY
,
227 (void *)(__psint_t
)dqp
->q_nrefs
,
228 (void *)(__psint_t
)dqp
->dq_flags
,
229 (void *)(__psint_t
)dqp
->q_res_bcount
,
230 (void *)(__psint_t
)INT_GET(dqp
->q_core
.d_bcount
,
232 (void *)(__psint_t
)INT_GET(dqp
->q_core
.d_icount
,
234 (void *)(__psint_t
)INT_GET(dqp
->q_core
.d_blk_hardlimit
,
236 (void *)(__psint_t
)INT_GET(dqp
->q_core
.d_blk_softlimit
,
238 (void *)(__psint_t
)INT_GET(dqp
->q_core
.d_ino_hardlimit
,
240 (void *)(__psint_t
)INT_GET(dqp
->q_core
.d_ino_softlimit
,
242 (void *)(__psint_t
)INT_GET(dqp
->q_core
.d_id
, ARCH_CONVERT
),
243 (void *)(__psint_t
)current_pid(),
244 (void *)(__psint_t
)ino
,
245 (void *)(__psint_t
)retaddr
,
246 (void *)(__psint_t
)udqp
);
253 * If default limits are in force, push them into the dquot now.
254 * We overwrite the dquot limits only if they are zero and this
255 * is not the root dquot.
258 xfs_qm_adjust_dqlimits(
262 xfs_quotainfo_t
*q
= mp
->m_quotainfo
;
264 ASSERT(!INT_ISZERO(d
->d_id
, ARCH_CONVERT
));
266 if (q
->qi_bsoftlimit
&& INT_ISZERO(d
->d_blk_softlimit
, ARCH_CONVERT
))
267 INT_SET(d
->d_blk_softlimit
, ARCH_CONVERT
, q
->qi_bsoftlimit
);
268 if (q
->qi_bhardlimit
&& INT_ISZERO(d
->d_blk_hardlimit
, ARCH_CONVERT
))
269 INT_SET(d
->d_blk_hardlimit
, ARCH_CONVERT
, q
->qi_bhardlimit
);
270 if (q
->qi_isoftlimit
&& INT_ISZERO(d
->d_ino_softlimit
, ARCH_CONVERT
))
271 INT_SET(d
->d_ino_softlimit
, ARCH_CONVERT
, q
->qi_isoftlimit
);
272 if (q
->qi_ihardlimit
&& INT_ISZERO(d
->d_ino_hardlimit
, ARCH_CONVERT
))
273 INT_SET(d
->d_ino_hardlimit
, ARCH_CONVERT
, q
->qi_ihardlimit
);
274 if (q
->qi_rtbsoftlimit
&&
275 INT_ISZERO(d
->d_rtb_softlimit
, ARCH_CONVERT
))
276 INT_SET(d
->d_rtb_softlimit
, ARCH_CONVERT
, q
->qi_rtbsoftlimit
);
277 if (q
->qi_rtbhardlimit
&&
278 INT_ISZERO(d
->d_rtb_hardlimit
, ARCH_CONVERT
))
279 INT_SET(d
->d_rtb_hardlimit
, ARCH_CONVERT
, q
->qi_rtbhardlimit
);
283 * Check the limits and timers of a dquot and start or reset timers
285 * This gets called even when quota enforcement is OFF, which makes our
286 * life a little less complicated. (We just don't reject any quota
287 * reservations in that case, when enforcement is off).
288 * We also return 0 as the values of the timers in Q_GETQUOTA calls, when
290 * In contrast, warnings are a little different in that they don't
291 * 'automatically' get started when limits get exceeded.
294 xfs_qm_adjust_dqtimers(
298 ASSERT(!INT_ISZERO(d
->d_id
, ARCH_CONVERT
));
301 if (INT_GET(d
->d_blk_hardlimit
, ARCH_CONVERT
))
302 ASSERT(INT_GET(d
->d_blk_softlimit
, ARCH_CONVERT
) <=
303 INT_GET(d
->d_blk_hardlimit
, ARCH_CONVERT
));
304 if (INT_GET(d
->d_ino_hardlimit
, ARCH_CONVERT
))
305 ASSERT(INT_GET(d
->d_ino_softlimit
, ARCH_CONVERT
) <=
306 INT_GET(d
->d_ino_hardlimit
, ARCH_CONVERT
));
307 if (INT_GET(d
->d_rtb_hardlimit
, ARCH_CONVERT
))
308 ASSERT(INT_GET(d
->d_rtb_softlimit
, ARCH_CONVERT
) <=
309 INT_GET(d
->d_rtb_hardlimit
, ARCH_CONVERT
));
311 if (INT_ISZERO(d
->d_btimer
, ARCH_CONVERT
)) {
312 if ((INT_GET(d
->d_blk_softlimit
, ARCH_CONVERT
) &&
313 (INT_GET(d
->d_bcount
, ARCH_CONVERT
) >=
314 INT_GET(d
->d_blk_softlimit
, ARCH_CONVERT
))) ||
315 (INT_GET(d
->d_blk_hardlimit
, ARCH_CONVERT
) &&
316 (INT_GET(d
->d_bcount
, ARCH_CONVERT
) >=
317 INT_GET(d
->d_blk_hardlimit
, ARCH_CONVERT
)))) {
318 INT_SET(d
->d_btimer
, ARCH_CONVERT
,
319 get_seconds() + XFS_QI_BTIMELIMIT(mp
));
322 if ((INT_ISZERO(d
->d_blk_softlimit
, ARCH_CONVERT
) ||
323 (INT_GET(d
->d_bcount
, ARCH_CONVERT
) <
324 INT_GET(d
->d_blk_softlimit
, ARCH_CONVERT
))) &&
325 (INT_ISZERO(d
->d_blk_hardlimit
, ARCH_CONVERT
) ||
326 (INT_GET(d
->d_bcount
, ARCH_CONVERT
) <
327 INT_GET(d
->d_blk_hardlimit
, ARCH_CONVERT
)))) {
328 INT_ZERO(d
->d_btimer
, ARCH_CONVERT
);
332 if (INT_ISZERO(d
->d_itimer
, ARCH_CONVERT
)) {
333 if ((INT_GET(d
->d_ino_softlimit
, ARCH_CONVERT
) &&
334 (INT_GET(d
->d_icount
, ARCH_CONVERT
) >=
335 INT_GET(d
->d_ino_softlimit
, ARCH_CONVERT
))) ||
336 (INT_GET(d
->d_ino_hardlimit
, ARCH_CONVERT
) &&
337 (INT_GET(d
->d_icount
, ARCH_CONVERT
) >=
338 INT_GET(d
->d_ino_hardlimit
, ARCH_CONVERT
)))) {
339 INT_SET(d
->d_itimer
, ARCH_CONVERT
,
340 get_seconds() + XFS_QI_ITIMELIMIT(mp
));
343 if ((INT_ISZERO(d
->d_ino_softlimit
, ARCH_CONVERT
) ||
344 (INT_GET(d
->d_icount
, ARCH_CONVERT
) <
345 INT_GET(d
->d_ino_softlimit
, ARCH_CONVERT
))) &&
346 (INT_ISZERO(d
->d_ino_hardlimit
, ARCH_CONVERT
) ||
347 (INT_GET(d
->d_icount
, ARCH_CONVERT
) <
348 INT_GET(d
->d_ino_hardlimit
, ARCH_CONVERT
)))) {
349 INT_ZERO(d
->d_itimer
, ARCH_CONVERT
);
353 if (INT_ISZERO(d
->d_rtbtimer
, ARCH_CONVERT
)) {
354 if ((INT_GET(d
->d_rtb_softlimit
, ARCH_CONVERT
) &&
355 (INT_GET(d
->d_rtbcount
, ARCH_CONVERT
) >=
356 INT_GET(d
->d_rtb_softlimit
, ARCH_CONVERT
))) ||
357 (INT_GET(d
->d_rtb_hardlimit
, ARCH_CONVERT
) &&
358 (INT_GET(d
->d_rtbcount
, ARCH_CONVERT
) >=
359 INT_GET(d
->d_rtb_hardlimit
, ARCH_CONVERT
)))) {
360 INT_SET(d
->d_rtbtimer
, ARCH_CONVERT
,
361 get_seconds() + XFS_QI_RTBTIMELIMIT(mp
));
364 if ((INT_ISZERO(d
->d_rtb_softlimit
, ARCH_CONVERT
) ||
365 (INT_GET(d
->d_rtbcount
, ARCH_CONVERT
) <
366 INT_GET(d
->d_rtb_softlimit
, ARCH_CONVERT
))) &&
367 (INT_ISZERO(d
->d_rtb_hardlimit
, ARCH_CONVERT
) ||
368 (INT_GET(d
->d_rtbcount
, ARCH_CONVERT
) <
369 INT_GET(d
->d_rtb_hardlimit
, ARCH_CONVERT
)))) {
370 INT_ZERO(d
->d_rtbtimer
, ARCH_CONVERT
);
376 * Increment or reset warnings of a given dquot.
386 * root's limits are not real limits.
388 if (INT_ISZERO(d
->d_id
, ARCH_CONVERT
))
392 if (INT_GET(d
->d_blk_softlimit
, ARCH_CONVERT
) &&
393 (INT_GET(d
->d_bcount
, ARCH_CONVERT
) >=
394 INT_GET(d
->d_blk_softlimit
, ARCH_CONVERT
))) {
395 if (flags
& XFS_QMOPT_DOWARN
) {
396 INT_MOD(d
->d_bwarns
, ARCH_CONVERT
, +1);
400 if (INT_ISZERO(d
->d_blk_softlimit
, ARCH_CONVERT
) ||
401 (INT_GET(d
->d_bcount
, ARCH_CONVERT
) <
402 INT_GET(d
->d_blk_softlimit
, ARCH_CONVERT
))) {
403 INT_ZERO(d
->d_bwarns
, ARCH_CONVERT
);
407 if (INT_GET(d
->d_ino_softlimit
, ARCH_CONVERT
) > 0 &&
408 (INT_GET(d
->d_icount
, ARCH_CONVERT
) >=
409 INT_GET(d
->d_ino_softlimit
, ARCH_CONVERT
))) {
410 if (flags
& XFS_QMOPT_DOWARN
) {
411 INT_MOD(d
->d_iwarns
, ARCH_CONVERT
, +1);
415 if ((INT_ISZERO(d
->d_ino_softlimit
, ARCH_CONVERT
)) ||
416 (INT_GET(d
->d_icount
, ARCH_CONVERT
) <
417 INT_GET(d
->d_ino_softlimit
, ARCH_CONVERT
))) {
418 INT_ZERO(d
->d_iwarns
, ARCH_CONVERT
);
422 if (INT_GET(d
->d_iwarns
, ARCH_CONVERT
))
424 "--------@@Inode warnings running : %Lu >= %Lu",
425 INT_GET(d
->d_icount
, ARCH_CONVERT
),
426 INT_GET(d
->d_ino_softlimit
, ARCH_CONVERT
));
427 if (INT_GET(d
->d_bwarns
, ARCH_CONVERT
))
429 "--------@@Blks warnings running : %Lu >= %Lu",
430 INT_GET(d
->d_bcount
, ARCH_CONVERT
),
431 INT_GET(d
->d_blk_softlimit
, ARCH_CONVERT
));
438 * initialize a buffer full of dquots and log the whole thing
441 xfs_qm_init_dquot_blk(
452 ASSERT(XFS_BUF_ISBUSY(bp
));
453 ASSERT(XFS_BUF_VALUSEMA(bp
) <= 0);
455 d
= (xfs_dqblk_t
*)XFS_BUF_PTR(bp
);
458 * ID of the first dquot in the block - id's are zero based.
460 curid
= id
- (id
% XFS_QM_DQPERBLK(mp
));
462 memset(d
, 0, BBTOB(XFS_QI_DQCHUNKLEN(mp
)));
463 for (i
= 0; i
< XFS_QM_DQPERBLK(mp
); i
++, d
++, curid
++)
464 xfs_qm_dqinit_core(curid
, type
, d
);
465 xfs_trans_dquot_buf(tp
, bp
,
469 xfs_trans_log_buf(tp
, bp
, 0, BBTOB(XFS_QI_DQCHUNKLEN(mp
)) - 1);
475 * Allocate a block and fill it with dquots.
476 * This is called when the bmapi finds a hole.
484 xfs_fileoff_t offset_fsb
,
487 xfs_fsblock_t firstblock
;
488 xfs_bmap_free_t flist
;
490 int nmaps
, error
, committed
;
494 xfs_dqtrace_entry(dqp
, "DQALLOC");
497 * Initialize the bmap freelist prior to calling bmapi code.
499 XFS_BMAP_INIT(&flist
, &firstblock
);
500 xfs_ilock(quotip
, XFS_ILOCK_EXCL
);
502 * Return if this type of quotas is turned off while we didn't
505 if (XFS_IS_THIS_QUOTA_OFF(dqp
)) {
506 xfs_iunlock(quotip
, XFS_ILOCK_EXCL
);
511 * xfs_trans_commit normally decrements the vnode ref count
512 * when it unlocks the inode. Since we want to keep the quota
513 * inode around, we bump the vnode ref count now.
515 VN_HOLD(XFS_ITOV(quotip
));
517 xfs_trans_ijoin(tp
, quotip
, XFS_ILOCK_EXCL
);
519 if ((error
= xfs_bmapi(tp
, quotip
,
520 offset_fsb
, XFS_DQUOT_CLUSTER_SIZE_FSB
,
521 XFS_BMAPI_METADATA
| XFS_BMAPI_WRITE
,
523 XFS_QM_DQALLOC_SPACE_RES(mp
),
524 &map
, &nmaps
, &flist
))) {
527 ASSERT(map
.br_blockcount
== XFS_DQUOT_CLUSTER_SIZE_FSB
);
529 ASSERT((map
.br_startblock
!= DELAYSTARTBLOCK
) &&
530 (map
.br_startblock
!= HOLESTARTBLOCK
));
533 * Keep track of the blkno to save a lookup later
535 dqp
->q_blkno
= XFS_FSB_TO_DADDR(mp
, map
.br_startblock
);
537 /* now we can just get the buffer (there's nothing to read yet) */
538 bp
= xfs_trans_get_buf(tp
, mp
->m_ddev_targp
,
540 XFS_QI_DQCHUNKLEN(mp
),
542 if (!bp
|| (error
= XFS_BUF_GETERROR(bp
)))
545 * Make a chunk of dquots out of this buffer and log
548 xfs_qm_init_dquot_blk(tp
, mp
, INT_GET(dqp
->q_core
.d_id
, ARCH_CONVERT
),
549 dqp
->dq_flags
& (XFS_DQ_USER
|XFS_DQ_GROUP
),
552 if ((error
= xfs_bmap_finish(&tp
, &flist
, firstblock
, &committed
))) {
560 xfs_bmap_cancel(&flist
);
562 xfs_iunlock(quotip
, XFS_ILOCK_EXCL
);
568 * Maps a dquot to the buffer containing its on-disk version.
569 * This returns a ptr to the buffer containing the on-disk dquot
570 * in the bpp param, and a ptr to the on-disk dquot within that buffer
576 xfs_disk_dquot_t
**O_ddpp
,
585 xfs_disk_dquot_t
*ddq
;
590 id
= INT_GET(dqp
->q_core
.d_id
, ARCH_CONVERT
);
595 * If we don't know where the dquot lives, find out.
597 if (dqp
->q_blkno
== (xfs_daddr_t
) 0) {
598 /* We use the id as an index */
599 dqp
->q_fileoffset
= (xfs_fileoff_t
) ((uint
)id
/
600 XFS_QM_DQPERBLK(mp
));
602 quotip
= XFS_DQ_TO_QIP(dqp
);
603 xfs_ilock(quotip
, XFS_ILOCK_SHARED
);
605 * Return if this type of quotas is turned off while we didn't
608 if (XFS_IS_THIS_QUOTA_OFF(dqp
)) {
609 xfs_iunlock(quotip
, XFS_ILOCK_SHARED
);
613 * Find the block map; no allocations yet
615 error
= xfs_bmapi(NULL
, quotip
, dqp
->q_fileoffset
,
616 XFS_DQUOT_CLUSTER_SIZE_FSB
,
618 NULL
, 0, &map
, &nmaps
, NULL
);
620 xfs_iunlock(quotip
, XFS_ILOCK_SHARED
);
624 ASSERT(map
.br_blockcount
== 1);
627 * offset of dquot in the (fixed sized) dquot chunk.
629 dqp
->q_bufoffset
= (id
% XFS_QM_DQPERBLK(mp
)) *
631 if (map
.br_startblock
== HOLESTARTBLOCK
) {
633 * We don't allocate unless we're asked to
635 if (!(flags
& XFS_QMOPT_DQALLOC
))
639 if ((error
= xfs_qm_dqalloc(tp
, mp
, dqp
, quotip
,
640 dqp
->q_fileoffset
, &bp
)))
645 * store the blkno etc so that we don't have to do the
646 * mapping all the time
648 dqp
->q_blkno
= XFS_FSB_TO_DADDR(mp
, map
.br_startblock
);
651 ASSERT(dqp
->q_blkno
!= DELAYSTARTBLOCK
);
652 ASSERT(dqp
->q_blkno
!= HOLESTARTBLOCK
);
655 * Read in the buffer, unless we've just done the allocation
656 * (in which case we already have the buf).
659 xfs_dqtrace_entry(dqp
, "DQTOBP READBUF");
660 if ((error
= xfs_trans_read_buf(mp
, tp
, mp
->m_ddev_targp
,
662 XFS_QI_DQCHUNKLEN(mp
),
667 return XFS_ERROR(error
);
669 ASSERT(XFS_BUF_ISBUSY(bp
));
670 ASSERT(XFS_BUF_VALUSEMA(bp
) <= 0);
673 * calculate the location of the dquot inside the buffer.
675 ddq
= (xfs_disk_dquot_t
*)((char *)XFS_BUF_PTR(bp
) + dqp
->q_bufoffset
);
678 * A simple sanity check in case we got a corrupted dquot...
680 if (xfs_qm_dqcheck(ddq
, id
,
681 dqp
->dq_flags
& (XFS_DQ_USER
|XFS_DQ_GROUP
),
682 flags
& (XFS_QMOPT_DQREPAIR
|XFS_QMOPT_DOWARN
),
684 if (!(flags
& XFS_QMOPT_DQREPAIR
)) {
685 xfs_trans_brelse(tp
, bp
);
686 return XFS_ERROR(EIO
);
688 XFS_BUF_BUSY(bp
); /* We dirtied this */
699 * Read in the ondisk dquot using dqtobp() then copy it to an incore version,
700 * and release the buffer immediately.
708 xfs_dquot_t
*dqp
, /* dquot to get filled in */
711 xfs_disk_dquot_t
*ddqp
;
716 * get a pointer to the on-disk dquot and the buffer containing it
717 * dqp already knows its own type (GROUP/USER).
719 xfs_dqtrace_entry(dqp
, "DQREAD");
720 if ((error
= xfs_qm_dqtobp(tp
, dqp
, &ddqp
, &bp
, flags
))) {
724 /* copy everything from disk dquot to the incore dquot */
725 memcpy(&dqp
->q_core
, ddqp
, sizeof(xfs_disk_dquot_t
));
726 ASSERT(INT_GET(dqp
->q_core
.d_id
, ARCH_CONVERT
) == id
);
727 xfs_qm_dquot_logitem_init(dqp
);
730 * Reservation counters are defined as reservation plus current usage
731 * to avoid having to add everytime.
733 dqp
->q_res_bcount
= INT_GET(ddqp
->d_bcount
, ARCH_CONVERT
);
734 dqp
->q_res_icount
= INT_GET(ddqp
->d_icount
, ARCH_CONVERT
);
735 dqp
->q_res_rtbcount
= INT_GET(ddqp
->d_rtbcount
, ARCH_CONVERT
);
737 /* Mark the buf so that this will stay incore a little longer */
738 XFS_BUF_SET_VTYPE_REF(bp
, B_FS_DQUOT
, XFS_DQUOT_REF
);
741 * We got the buffer with a xfs_trans_read_buf() (in dqtobp())
742 * So we need to release with xfs_trans_brelse().
743 * The strategy here is identical to that of inodes; we lock
744 * the dquot in xfs_qm_dqget() before making it accessible to
745 * others. This is because dquots, like inodes, need a good level of
746 * concurrency, and we don't want to take locks on the entire buffers
747 * for dquot accesses.
748 * Note also that the dquot buffer may even be dirty at this point, if
749 * this particular dquot was repaired. We still aren't afraid to
750 * brelse it because we have the changes incore.
752 ASSERT(XFS_BUF_ISBUSY(bp
));
753 ASSERT(XFS_BUF_VALUSEMA(bp
) <= 0);
754 xfs_trans_brelse(tp
, bp
);
761 * allocate an incore dquot from the kernel heap,
762 * and fill its core with quota information kept on disk.
763 * If XFS_QMOPT_DQALLOC is set, it'll allocate a dquot on disk
764 * if it wasn't already allocated.
769 xfs_dqid_t id
, /* gid or uid, depending on type */
770 uint type
, /* UDQUOT or GDQUOT */
771 uint flags
, /* DQALLOC, DQREPAIR */
772 xfs_dquot_t
**O_dqpp
)/* OUT : incore dquot, not locked */
779 dqp
= xfs_qm_dqinit(mp
, id
, type
);
781 if (flags
& XFS_QMOPT_DQALLOC
) {
782 tp
= xfs_trans_alloc(mp
, XFS_TRANS_QM_DQALLOC
);
783 if ((error
= xfs_trans_reserve(tp
,
784 XFS_QM_DQALLOC_SPACE_RES(mp
),
785 XFS_WRITE_LOG_RES(mp
) +
786 BBTOB(XFS_QI_DQCHUNKLEN(mp
)) - 1 +
789 XFS_TRANS_PERM_LOG_RES
,
790 XFS_WRITE_LOG_COUNT
))) {
794 cancelflags
= XFS_TRANS_RELEASE_LOG_RES
;
798 * Read it from disk; xfs_dqread() takes care of
799 * all the necessary initialization of dquot's fields (locks, etc)
801 if ((error
= xfs_qm_dqread(tp
, id
, dqp
, flags
))) {
803 * This can happen if quotas got turned off (ESRCH),
804 * or if the dquot didn't exist on disk and we ask to
807 xfs_dqtrace_entry(dqp
, "DQREAD FAIL");
808 cancelflags
|= XFS_TRANS_ABORT
;
812 if ((error
= xfs_trans_commit(tp
, XFS_TRANS_RELEASE_LOG_RES
,
823 xfs_trans_cancel(tp
, cancelflags
);
825 xfs_qm_dqdestroy(dqp
);
831 * Lookup a dquot in the incore dquot hashtable. We keep two separate
832 * hashtables for user and group dquots; and, these are global tables
833 * inside the XQM, not per-filesystem tables.
834 * The hash chain must be locked by caller, and it is left locked
835 * on return. Returning dquot is locked.
842 xfs_dquot_t
**O_dqpp
)
848 ASSERT(XFS_DQ_IS_HASH_LOCKED(qh
));
850 flist_locked
= B_FALSE
;
853 * Traverse the hashchain looking for a match
855 for (dqp
= qh
->qh_next
; dqp
!= NULL
; dqp
= dqp
->HL_NEXT
) {
857 * We already have the hashlock. We don't need the
858 * dqlock to look at the id field of the dquot, since the
859 * id can't be modified without the hashlock anyway.
861 if (INT_GET(dqp
->q_core
.d_id
, ARCH_CONVERT
) == id
&& dqp
->q_mount
== mp
) {
862 xfs_dqtrace_entry(dqp
, "DQFOUND BY LOOKUP");
864 * All in core dquots must be on the dqlist of mp
866 ASSERT(dqp
->MPL_PREVP
!= NULL
);
869 if (dqp
->q_nrefs
== 0) {
870 ASSERT (XFS_DQ_IS_ON_FREELIST(dqp
));
871 if (! xfs_qm_freelist_lock_nowait(xfs_Gqm
)) {
872 xfs_dqtrace_entry(dqp
, "DQLOOKUP: WANT");
875 * We may have raced with dqreclaim_one()
876 * (and lost). So, flag that we don't
877 * want the dquot to be reclaimed.
879 dqp
->dq_flags
|= XFS_DQ_WANT
;
881 xfs_qm_freelist_lock(xfs_Gqm
);
883 dqp
->dq_flags
&= ~(XFS_DQ_WANT
);
885 flist_locked
= B_TRUE
;
889 * id couldn't have changed; we had the hashlock all
892 ASSERT(INT_GET(dqp
->q_core
.d_id
, ARCH_CONVERT
) == id
);
895 if (dqp
->q_nrefs
!= 0) {
896 xfs_qm_freelist_unlock(xfs_Gqm
);
897 flist_locked
= B_FALSE
;
900 * take it off the freelist
902 xfs_dqtrace_entry(dqp
,
903 "DQLOOKUP: TAKEOFF FL");
904 XQM_FREELIST_REMOVE(dqp
);
905 /* xfs_qm_freelist_print(&(xfs_Gqm->
917 xfs_qm_freelist_unlock(xfs_Gqm
);
919 * move the dquot to the front of the hashchain
921 ASSERT(XFS_DQ_IS_HASH_LOCKED(qh
));
922 if (dqp
->HL_PREVP
!= &qh
->qh_next
) {
923 xfs_dqtrace_entry(dqp
,
924 "DQLOOKUP: HASH MOVETOFRONT");
925 if ((d
= dqp
->HL_NEXT
))
926 d
->HL_PREVP
= dqp
->HL_PREVP
;
927 *(dqp
->HL_PREVP
) = d
;
929 d
->HL_PREVP
= &dqp
->HL_NEXT
;
931 dqp
->HL_PREVP
= &qh
->qh_next
;
934 xfs_dqtrace_entry(dqp
, "LOOKUP END");
936 ASSERT(XFS_DQ_IS_HASH_LOCKED(qh
));
942 ASSERT(XFS_DQ_IS_HASH_LOCKED(qh
));
947 * Given the file system, inode OR id, and type (UDQUOT/GDQUOT), return a
948 * a locked dquot, doing an allocation (if requested) as needed.
949 * When both an inode and an id are given, the inode's id takes precedence.
950 * That is, if the id changes while we don't hold the ilock inside this
951 * function, the new dquot is returned, not necessarily the one requested
952 * in the id argument.
957 xfs_inode_t
*ip
, /* locked inode (optional) */
958 xfs_dqid_t id
, /* gid or uid, depending on type */
959 uint type
, /* UDQUOT or GDQUOT */
960 uint flags
, /* DQALLOC, DQSUSER, DQREPAIR, DOWARN */
961 xfs_dquot_t
**O_dqpp
) /* OUT : locked incore dquot */
968 ASSERT(XFS_IS_QUOTA_RUNNING(mp
));
969 if ((! XFS_IS_UQUOTA_ON(mp
) && type
== XFS_DQ_USER
) ||
970 (! XFS_IS_GQUOTA_ON(mp
) && type
== XFS_DQ_GROUP
)) {
973 h
= XFS_DQ_HASH(mp
, id
, type
);
976 if (xfs_do_dqerror
) {
977 if ((xfs_dqerror_target
== mp
->m_ddev_targp
) &&
978 (xfs_dqreq_num
++ % xfs_dqerror_mod
) == 0) {
979 cmn_err(CE_DEBUG
, "Returning error in dqget");
988 ASSERT(type
== XFS_DQ_USER
|| type
== XFS_DQ_GROUP
);
990 ASSERT(XFS_ISLOCKED_INODE_EXCL(ip
));
991 if (type
== XFS_DQ_USER
)
992 ASSERT(ip
->i_udquot
== NULL
);
994 ASSERT(ip
->i_gdquot
== NULL
);
1000 * Look in the cache (hashtable).
1001 * The chain is kept locked during lookup.
1003 if (xfs_qm_dqlookup(mp
, id
, h
, O_dqpp
) == 0) {
1004 XQM_STATS_INC(xqmstats
.xs_qm_dqcachehits
);
1006 * The dquot was found, moved to the front of the chain,
1007 * taken off the freelist if it was on it, and locked
1008 * at this point. Just unlock the hashchain and return.
1011 ASSERT(XFS_DQ_IS_LOCKED(*O_dqpp
));
1012 XFS_DQ_HASH_UNLOCK(h
);
1013 xfs_dqtrace_entry(*O_dqpp
, "DQGET DONE (FROM CACHE)");
1014 return (0); /* success */
1016 XQM_STATS_INC(xqmstats
.xs_qm_dqcachemisses
);
1019 * Dquot cache miss. We don't want to keep the inode lock across
1020 * a (potential) disk read. Also we don't want to deal with the lock
1021 * ordering between quotainode and this inode. OTOH, dropping the inode
1022 * lock here means dealing with a chown that can happen before
1023 * we re-acquire the lock.
1026 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
1028 * Save the hashchain version stamp, and unlock the chain, so that
1029 * we don't keep the lock across a disk read
1031 version
= h
->qh_version
;
1032 XFS_DQ_HASH_UNLOCK(h
);
1035 * Allocate the dquot on the kernel heap, and read the ondisk
1036 * portion off the disk. Also, do all the necessary initialization
1037 * This can return ENOENT if dquot didn't exist on disk and we didn't
1038 * ask it to allocate; ESRCH if quotas got turned off suddenly.
1040 if ((error
= xfs_qm_idtodq(mp
, id
, type
,
1041 flags
& (XFS_QMOPT_DQALLOC
|XFS_QMOPT_DQREPAIR
|
1045 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
1050 * See if this is mount code calling to look at the overall quota limits
1051 * which are stored in the id == 0 user or group's dquot.
1052 * Since we may not have done a quotacheck by this point, just return
1053 * the dquot without attaching it to any hashtables, lists, etc, or even
1054 * taking a reference.
1055 * The caller must dqdestroy this once done.
1057 if (flags
& XFS_QMOPT_DQSUSER
) {
1064 * Dquot lock comes after hashlock in the lock ordering
1067 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
1068 if (! XFS_IS_DQTYPE_ON(mp
, type
)) {
1069 /* inode stays locked on return */
1070 xfs_qm_dqdestroy(dqp
);
1071 return XFS_ERROR(ESRCH
);
1074 * A dquot could be attached to this inode by now, since
1075 * we had dropped the ilock.
1077 if (type
== XFS_DQ_USER
) {
1079 xfs_qm_dqdestroy(dqp
);
1086 xfs_qm_dqdestroy(dqp
);
1095 * Hashlock comes after ilock in lock order
1097 XFS_DQ_HASH_LOCK(h
);
1098 if (version
!= h
->qh_version
) {
1099 xfs_dquot_t
*tmpdqp
;
1101 * Now, see if somebody else put the dquot in the
1102 * hashtable before us. This can happen because we didn't
1103 * keep the hashchain lock. We don't have to worry about
1104 * lock order between the two dquots here since dqp isn't
1105 * on any findable lists yet.
1107 if (xfs_qm_dqlookup(mp
, id
, h
, &tmpdqp
) == 0) {
1109 * Duplicate found. Just throw away the new dquot
1112 xfs_qm_dqput(tmpdqp
);
1113 XFS_DQ_HASH_UNLOCK(h
);
1114 xfs_qm_dqdestroy(dqp
);
1115 XQM_STATS_INC(xqmstats
.xs_qm_dquot_dups
);
1121 * Put the dquot at the beginning of the hash-chain and mp's list
1122 * LOCK ORDER: hashlock, freelistlock, mplistlock, udqlock, gdqlock ..
1124 ASSERT(XFS_DQ_IS_HASH_LOCKED(h
));
1126 XQM_HASHLIST_INSERT(h
, dqp
);
1129 * Attach this dquot to this filesystem's list of all dquots,
1130 * kept inside the mount structure in m_quotainfo field
1132 xfs_qm_mplist_lock(mp
);
1135 * We return a locked dquot to the caller, with a reference taken
1140 XQM_MPLIST_INSERT(&(XFS_QI_MPL_LIST(mp
)), dqp
);
1142 xfs_qm_mplist_unlock(mp
);
1143 XFS_DQ_HASH_UNLOCK(h
);
1145 ASSERT((ip
== NULL
) || XFS_ISLOCKED_INODE_EXCL(ip
));
1146 xfs_dqtrace_entry(dqp
, "DQGET DONE");
1153 * Release a reference to the dquot (decrement ref-count)
1154 * and unlock it. If there is a group quota attached to this
1155 * dquot, carefully release that too without tripping over
1156 * deadlocks'n'stuff.
1164 ASSERT(dqp
->q_nrefs
> 0);
1165 ASSERT(XFS_DQ_IS_LOCKED(dqp
));
1166 xfs_dqtrace_entry(dqp
, "DQPUT");
1168 if (dqp
->q_nrefs
!= 1) {
1175 * drop the dqlock and acquire the freelist and dqlock
1176 * in the right order; but try to get it out-of-order first
1178 if (! xfs_qm_freelist_lock_nowait(xfs_Gqm
)) {
1179 xfs_dqtrace_entry(dqp
, "DQPUT: FLLOCK-WAIT");
1181 xfs_qm_freelist_lock(xfs_Gqm
);
1188 /* We can't depend on nrefs being == 1 here */
1189 if (--dqp
->q_nrefs
== 0) {
1190 xfs_dqtrace_entry(dqp
, "DQPUT: ON FREELIST");
1192 * insert at end of the freelist.
1194 XQM_FREELIST_INSERT(&(xfs_Gqm
->qm_dqfreelist
), dqp
);
1197 * If we just added a udquot to the freelist, then
1198 * we want to release the gdquot reference that
1199 * it (probably) has. Otherwise it'll keep the
1200 * gdquot from getting reclaimed.
1202 if ((gdqp
= dqp
->q_gdquot
)) {
1204 * Avoid a recursive dqput call
1207 dqp
->q_gdquot
= NULL
;
1210 /* xfs_qm_freelist_print(&(xfs_Gqm->qm_dqfreelist),
1211 "@@@@@++ Free list (after append) @@@@@+");
1217 * If we had a group quota inside the user quota as a hint,
1224 xfs_qm_freelist_unlock(xfs_Gqm
);
1228 * Release a dquot. Flush it if dirty, then dqput() it.
1229 * dquot must not be locked.
1236 xfs_dqtrace_entry(dqp
, "DQRELE");
1240 * We don't care to flush it if the dquot is dirty here.
1241 * That will create stutters that we want to avoid.
1242 * Instead we do a delayed write when we try to reclaim
1243 * a dirty dquot. Also xfs_sync will take part of the burden...
1250 * Write a modified dquot to disk.
1251 * The dquot must be locked and the flush lock too taken by caller.
1252 * The flush lock will not be unlocked until the dquot reaches the disk,
1253 * but the dquot is free to be unlocked and modified by the caller
1254 * in the interim. Dquot is still locked on return. This behavior is
1255 * identical to that of inodes.
1264 xfs_disk_dquot_t
*ddqp
;
1268 ASSERT(XFS_DQ_IS_LOCKED(dqp
));
1269 ASSERT(XFS_DQ_IS_FLUSH_LOCKED(dqp
));
1270 xfs_dqtrace_entry(dqp
, "DQFLUSH");
1273 * If not dirty, nada.
1275 if (!XFS_DQ_IS_DIRTY(dqp
)) {
1281 * Cant flush a pinned dquot. Wait for it.
1283 xfs_qm_dqunpin_wait(dqp
);
1286 * This may have been unpinned because the filesystem is shutting
1287 * down forcibly. If that's the case we must not write this dquot
1288 * to disk, because the log record didn't make it to disk!
1290 if (XFS_FORCED_SHUTDOWN(dqp
->q_mount
)) {
1291 dqp
->dq_flags
&= ~(XFS_DQ_DIRTY
);
1293 return XFS_ERROR(EIO
);
1297 * Get the buffer containing the on-disk dquot
1298 * We don't need a transaction envelope because we know that the
1299 * the ondisk-dquot has already been allocated for.
1301 if ((error
= xfs_qm_dqtobp(NULL
, dqp
, &ddqp
, &bp
, XFS_QMOPT_DOWARN
))) {
1302 xfs_dqtrace_entry(dqp
, "DQTOBP FAIL");
1303 ASSERT(error
!= ENOENT
);
1305 * Quotas could have gotten turned off (ESRCH)
1311 if (xfs_qm_dqcheck(&dqp
->q_core
, INT_GET(ddqp
->d_id
, ARCH_CONVERT
), 0, XFS_QMOPT_DOWARN
,
1312 "dqflush (incore copy)")) {
1313 xfs_force_shutdown(dqp
->q_mount
, XFS_CORRUPT_INCORE
);
1314 return XFS_ERROR(EIO
);
1317 /* This is the only portion of data that needs to persist */
1318 memcpy(ddqp
, &(dqp
->q_core
), sizeof(xfs_disk_dquot_t
));
1321 * Clear the dirty field and remember the flush lsn for later use.
1323 dqp
->dq_flags
&= ~(XFS_DQ_DIRTY
);
1326 /* lsn is 64 bits */
1328 dqp
->q_logitem
.qli_flush_lsn
= dqp
->q_logitem
.qli_item
.li_lsn
;
1332 * Attach an iodone routine so that we can remove this dquot from the
1333 * AIL and release the flush lock once the dquot is synced to disk.
1335 xfs_buf_attach_iodone(bp
, (void(*)(xfs_buf_t
*, xfs_log_item_t
*))
1336 xfs_qm_dqflush_done
, &(dqp
->q_logitem
.qli_item
));
1338 * If the buffer is pinned then push on the log so we won't
1339 * get stuck waiting in the write for too long.
1341 if (XFS_BUF_ISPINNED(bp
)) {
1342 xfs_dqtrace_entry(dqp
, "DQFLUSH LOG FORCE");
1343 xfs_log_force(mp
, (xfs_lsn_t
)0, XFS_LOG_FORCE
);
1346 if (flags
& XFS_QMOPT_DELWRI
) {
1347 xfs_bdwrite(mp
, bp
);
1348 } else if (flags
& XFS_QMOPT_ASYNC
) {
1349 xfs_bawrite(mp
, bp
);
1351 error
= xfs_bwrite(mp
, bp
);
1353 xfs_dqtrace_entry(dqp
, "DQFLUSH END");
1355 * dqp is still locked, but caller is free to unlock it now.
1362 * This is the dquot flushing I/O completion routine. It is called
1363 * from interrupt level when the buffer containing the dquot is
1364 * flushed to disk. It is responsible for removing the dquot logitem
1365 * from the AIL if it has not been re-logged, and unlocking the dquot's
1366 * flush lock. This behavior is very similar to that of inodes..
1370 xfs_qm_dqflush_done(
1372 xfs_dq_logitem_t
*qip
)
1377 dqp
= qip
->qli_dquot
;
1380 * We only want to pull the item from the AIL if its
1381 * location in the log has not changed since we started the flush.
1382 * Thus, we only bother if the dquot's lsn has
1383 * not changed. First we check the lsn outside the lock
1384 * since it's cheaper, and then we recheck while
1385 * holding the lock before removing the dquot from the AIL.
1387 if ((qip
->qli_item
.li_flags
& XFS_LI_IN_AIL
) &&
1388 qip
->qli_item
.li_lsn
== qip
->qli_flush_lsn
) {
1390 AIL_LOCK(dqp
->q_mount
, s
);
1392 * xfs_trans_delete_ail() drops the AIL lock.
1394 if (qip
->qli_item
.li_lsn
== qip
->qli_flush_lsn
)
1395 xfs_trans_delete_ail(dqp
->q_mount
,
1396 (xfs_log_item_t
*)qip
, s
);
1398 AIL_UNLOCK(dqp
->q_mount
, s
);
1402 * Release the dq's flush lock since we're done with it.
1409 xfs_qm_dqflock_nowait(
1414 locked
= cpsema(&((dqp
)->q_flock
));
1416 /* XXX ifdef these out */
1418 (dqp
)->dq_flags
|= XFS_DQ_FLOCKED
;
1424 xfs_qm_dqlock_nowait(
1427 return (mutex_trylock(&((dqp
)->q_qlock
)));
1434 mutex_lock(&(dqp
->q_qlock
), PINOD
);
1441 mutex_unlock(&(dqp
->q_qlock
));
1442 if (dqp
->q_logitem
.qli_dquot
== dqp
) {
1443 /* Once was dqp->q_mount, but might just have been cleared */
1444 xfs_trans_unlocked_item(dqp
->q_logitem
.qli_item
.li_mountp
,
1445 (xfs_log_item_t
*)&(dqp
->q_logitem
));
1451 xfs_dqunlock_nonotify(
1454 mutex_unlock(&(dqp
->q_qlock
));
1464 if (INT_GET(d1
->q_core
.d_id
, ARCH_CONVERT
) > INT_GET(d2
->q_core
.d_id
, ARCH_CONVERT
)) {
1482 * Take a dquot out of the mount's dqlist as well as the hashlist.
1483 * This is called via unmount as well as quotaoff, and the purge
1484 * will always succeed unless there are soft (temp) references
1487 * This returns 0 if it was purged, 1 if it wasn't. It's not an error code
1488 * that we're returning! XXXsup - not cool.
1496 xfs_dqhash_t
*thishash
;
1501 ASSERT(XFS_QM_IS_MPLIST_LOCKED(mp
));
1502 ASSERT(XFS_DQ_IS_HASH_LOCKED(dqp
->q_hash
));
1506 * We really can't afford to purge a dquot that is
1507 * referenced, because these are hard refs.
1508 * It shouldn't happen in general because we went thru _all_ inodes in
1509 * dqrele_all_inodes before calling this and didn't let the mountlock go.
1510 * However it is possible that we have dquots with temporary
1511 * references that are not attached to an inode. e.g. see xfs_setattr().
1513 if (dqp
->q_nrefs
!= 0) {
1515 XFS_DQ_HASH_UNLOCK(dqp
->q_hash
);
1519 ASSERT(XFS_DQ_IS_ON_FREELIST(dqp
));
1522 * If we're turning off quotas, we have to make sure that, for
1523 * example, we don't delete quota disk blocks while dquots are
1524 * in the process of getting written to those disk blocks.
1525 * This dquot might well be on AIL, and we can't leave it there
1526 * if we're turning off quotas. Basically, we need this flush
1527 * lock, and are willing to block on it.
1529 if (! xfs_qm_dqflock_nowait(dqp
)) {
1531 * Block on the flush lock after nudging dquot buffer,
1534 xfs_qm_dqflock_pushbuf_wait(dqp
);
1538 * XXXIf we're turning this type of quotas off, we don't care
1539 * about the dirty metadata sitting in this dquot. OTOH, if
1540 * we're unmounting, we do care, so we flush it and wait.
1542 if (XFS_DQ_IS_DIRTY(dqp
)) {
1543 xfs_dqtrace_entry(dqp
, "DQPURGE ->DQFLUSH: DQDIRTY");
1544 /* dqflush unlocks dqflock */
1546 * Given that dqpurge is a very rare occurrence, it is OK
1547 * that we're holding the hashlist and mplist locks
1548 * across the disk write. But, ... XXXsup
1550 * We don't care about getting disk errors here. We need
1551 * to purge this dquot anyway, so we go ahead regardless.
1553 (void) xfs_qm_dqflush(dqp
, XFS_QMOPT_SYNC
);
1556 ASSERT(dqp
->q_pincount
== 0);
1557 ASSERT(XFS_FORCED_SHUTDOWN(mp
) ||
1558 !(dqp
->q_logitem
.qli_item
.li_flags
& XFS_LI_IN_AIL
));
1560 thishash
= dqp
->q_hash
;
1561 XQM_HASHLIST_REMOVE(thishash
, dqp
);
1562 XQM_MPLIST_REMOVE(&(XFS_QI_MPL_LIST(mp
)), dqp
);
1564 * XXX Move this to the front of the freelist, if we can get the
1567 ASSERT(XFS_DQ_IS_ON_FREELIST(dqp
));
1569 dqp
->q_mount
= NULL
;
1571 dqp
->dq_flags
= XFS_DQ_INACTIVE
;
1572 memset(&dqp
->q_core
, 0, sizeof(dqp
->q_core
));
1575 XFS_DQ_HASH_UNLOCK(thishash
);
1582 xfs_qm_dqprint(xfs_dquot_t
*dqp
)
1584 cmn_err(CE_DEBUG
, "-----------KERNEL DQUOT----------------");
1585 cmn_err(CE_DEBUG
, "---- dquotID = %d",
1586 (int)INT_GET(dqp
->q_core
.d_id
, ARCH_CONVERT
));
1587 cmn_err(CE_DEBUG
, "---- type = %s",
1588 XFS_QM_ISUDQ(dqp
) ? "USR" : "GRP");
1589 cmn_err(CE_DEBUG
, "---- fs = 0x%p", dqp
->q_mount
);
1590 cmn_err(CE_DEBUG
, "---- blkno = 0x%x", (int) dqp
->q_blkno
);
1591 cmn_err(CE_DEBUG
, "---- boffset = 0x%x", (int) dqp
->q_bufoffset
);
1592 cmn_err(CE_DEBUG
, "---- blkhlimit = %Lu (0x%x)",
1593 INT_GET(dqp
->q_core
.d_blk_hardlimit
, ARCH_CONVERT
),
1594 (int) INT_GET(dqp
->q_core
.d_blk_hardlimit
, ARCH_CONVERT
));
1595 cmn_err(CE_DEBUG
, "---- blkslimit = %Lu (0x%x)",
1596 INT_GET(dqp
->q_core
.d_blk_softlimit
, ARCH_CONVERT
),
1597 (int)INT_GET(dqp
->q_core
.d_blk_softlimit
, ARCH_CONVERT
));
1598 cmn_err(CE_DEBUG
, "---- inohlimit = %Lu (0x%x)",
1599 INT_GET(dqp
->q_core
.d_ino_hardlimit
, ARCH_CONVERT
),
1600 (int)INT_GET(dqp
->q_core
.d_ino_hardlimit
, ARCH_CONVERT
));
1601 cmn_err(CE_DEBUG
, "---- inoslimit = %Lu (0x%x)",
1602 INT_GET(dqp
->q_core
.d_ino_softlimit
, ARCH_CONVERT
),
1603 (int)INT_GET(dqp
->q_core
.d_ino_softlimit
, ARCH_CONVERT
));
1604 cmn_err(CE_DEBUG
, "---- bcount = %Lu (0x%x)",
1605 INT_GET(dqp
->q_core
.d_bcount
, ARCH_CONVERT
),
1606 (int)INT_GET(dqp
->q_core
.d_bcount
, ARCH_CONVERT
));
1607 cmn_err(CE_DEBUG
, "---- icount = %Lu (0x%x)",
1608 INT_GET(dqp
->q_core
.d_icount
, ARCH_CONVERT
),
1609 (int)INT_GET(dqp
->q_core
.d_icount
, ARCH_CONVERT
));
1610 cmn_err(CE_DEBUG
, "---- btimer = %d",
1611 (int)INT_GET(dqp
->q_core
.d_btimer
, ARCH_CONVERT
));
1612 cmn_err(CE_DEBUG
, "---- itimer = %d",
1613 (int)INT_GET(dqp
->q_core
.d_itimer
, ARCH_CONVERT
));
1614 cmn_err(CE_DEBUG
, "---------------------------");
1619 * Give the buffer a little push if it is incore and
1620 * wait on the flush lock.
1623 xfs_qm_dqflock_pushbuf_wait(
1629 * Check to see if the dquot has been flushed delayed
1630 * write. If so, grab its buffer and send it
1631 * out immediately. We'll be able to acquire
1632 * the flush lock when the I/O completes.
1634 bp
= xfs_incore(dqp
->q_mount
->m_ddev_targp
, dqp
->q_blkno
,
1635 XFS_QI_DQCHUNKLEN(dqp
->q_mount
),
1636 XFS_INCORE_TRYLOCK
);
1638 if (XFS_BUF_ISDELAYWRITE(bp
)) {
1639 if (XFS_BUF_ISPINNED(bp
)) {
1640 xfs_log_force(dqp
->q_mount
,
1644 xfs_bawrite(dqp
->q_mount
, bp
);