Home
last modified time | relevance | path

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

/titanic_41/usr/src/uts/common/fs/ufs/
H A Dquotacalls.c182 (ip->i_mode & IFMT) != IFATTRDIR && ip->i_dquot == NULL) { in opendq_scan_inode()
183 ip->i_dquot = getinoquota(ip); in opendq_scan_inode()
340 if ((dqp = ip->i_dquot) != NULL) { in closedq_scan_inode()
343 ip->i_dquot = NULL; in closedq_scan_inode()
467 ip->i_dquot == NULL) { in setquota_scan_inode()
468 ip->i_dquot = getinoquota(ip); in setquota_scan_inode()
473 else if (sqdp->sqd_type == SQD_TYPE_NO_LIMIT && ip->i_dquot) { in setquota_scan_inode()
474 mutex_enter(&ip->i_dquot->dq_lock); in setquota_scan_inode()
475 dqput(ip->i_dquot); in setquota_scan_inode()
476 mutex_exit(&ip->i_dquot->dq_lock); in setquota_scan_inode()
[all …]
H A Dufs_thread.c395 dqrele(ip->i_dquot); in ufs_delete()
396 ip->i_dquot = NULL; in ufs_delete()
730 if ((ip->i_flag & ISTALE) == 0 && ip->i_dquot) { in ufs_idle_free()
731 TRANS_DQRELE(ufsvfsp, ip->i_dquot); in ufs_idle_free()
732 ip->i_dquot = NULL; in ufs_idle_free()
H A Dquota_ufs.c153 dqp = ip->i_dquot; in chkdq()
453 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()
481 ASSERT(sip->i_dquot == 0); in ufs_si_load()
1667 ASSERT(sip->i_dquot == 0); in ufs_si_free()
H A Dufs_inode.c364 ip->i_dquot = NULL; in ufs_alloc_inode()
653 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.c2288 dqrele(ip->i_dquot); in ufs_setattr()
2301 ip->i_dquot = getinoquota(ip); in ufs_setattr()
/titanic_41/usr/src/uts/common/sys/fs/
H A Dufs_inode.h251 struct dquot *i_dquot; /* quota structure controlling this file */ member