Home
last modified time | relevance | path

Searched refs:i_dquot (Results 1 – 9 of 9) sorted by relevance

/illumos-gate/usr/src/uts/common/fs/ufs/
H A Dquotacalls.c179 (ip->i_mode & IFMT) != IFATTRDIR && ip->i_dquot == NULL) { in opendq_scan_inode()
180 ip->i_dquot = getinoquota(ip); in opendq_scan_inode()
337 if ((dqp = ip->i_dquot) != NULL) { in closedq_scan_inode()
340 ip->i_dquot = NULL; in closedq_scan_inode()
464 ip->i_dquot == NULL) { in setquota_scan_inode()
465 ip->i_dquot = getinoquota(ip); in setquota_scan_inode()
470 else if (sqdp->sqd_type == SQD_TYPE_NO_LIMIT && ip->i_dquot) { in setquota_scan_inode()
471 mutex_enter(&ip->i_dquot->dq_lock); in setquota_scan_inode()
472 dqput(ip->i_dquot); in setquota_scan_inode()
473 mutex_exit(&ip->i_dquot->dq_lock); in setquota_scan_inode()
[all …]
H A Dufs_thread.c399 dqrele(ip->i_dquot); in ufs_delete()
400 ip->i_dquot = NULL; in ufs_delete()
732 if ((ip->i_flag & ISTALE) == 0 && ip->i_dquot) { in ufs_idle_free()
733 TRANS_DQRELE(ufsvfsp, ip->i_dquot); in ufs_idle_free()
734 ip->i_dquot = NULL; in ufs_idle_free()
H A Dquota_ufs.c151 dqp = ip->i_dquot; in chkdq()
451 dqp = ip->i_dquot; in chkiq()
H A Dufs_acl.c197 ASSERT(sip->i_dquot == 0); in ufs_si_store()
359 ASSERT(sip->i_dquot == 0); in ufs_si_store()
476 ASSERT(sip->i_dquot == 0); in ufs_si_load()
1661 ASSERT(sip->i_dquot == 0); in ufs_si_free()
H A Dufs_inode.c366 ip->i_dquot = NULL; in ufs_alloc_inode()
655 ip->i_dquot = getinoquota(ip); in ufs_iget_internal()
H A Dufs_dir.c2105 if (ip->i_dquot != NULL) { in ufs_dirmakeinode()
2208 ip->i_dquot = getinoquota(ip); in ufs_dirmakeinode()
2210 ip->i_dquot = NULL; in ufs_dirmakeinode()
H A Dufs_alloc.c371 ASSERT(!ip->i_dquot); in ufs_ialloc()
H A Dufs_vnops.c2179 dqrele(ip->i_dquot); in ufs_setattr()
2192 ip->i_dquot = getinoquota(ip); in ufs_setattr()
/illumos-gate/usr/src/uts/common/sys/fs/
H A Dufs_inode.h251 struct dquot *i_dquot; /* quota structure controlling this file */ member