Home
last modified time | relevance | path

Searched refs:softlimit (Results 1 – 5 of 5) sorted by relevance

/linux-2.6.39/Documentation/filesystems/
Dquota.txt8 of used inodes there are actually two limits. The first one is called softlimit
11 softlimit but only for limited period of time. This period is called "grace
13 more space/inodes until he frees enough of them to get below softlimit.
23 When user exceeds a softlimit, runs out of grace time or reaches hardlimit,
49 QUOTA_NL_ISOFTLONGWARN - inode softlimit is exceeded longer
51 QUOTA_NL_ISOFTWARN - inode softlimit
53 QUOTA_NL_BSOFTLONGWARN - space (block) softlimit is exceeded
55 QUOTA_NL_BSOFTWARN - space (block) softlimit
59 QUOTA_NL_ISOFTBELOW - inode softlimit
61 QUOTA_NL_BSOFTBELOW - space (block) softlimit
/linux-2.6.39/fs/xfs/quota/
Dxfs_trans_dquot.c604 xfs_qcnt_t softlimit; in xfs_trans_dqresv() local
619 softlimit = be64_to_cpu(dqp->q_core.d_blk_softlimit); in xfs_trans_dqresv()
620 if (!softlimit) in xfs_trans_dqresv()
621 softlimit = q->qi_bsoftlimit; in xfs_trans_dqresv()
631 softlimit = be64_to_cpu(dqp->q_core.d_rtb_softlimit); in xfs_trans_dqresv()
632 if (!softlimit) in xfs_trans_dqresv()
633 softlimit = q->qi_rtbsoftlimit; in xfs_trans_dqresv()
661 if (softlimit > 0ULL && in xfs_trans_dqresv()
662 softlimit <= nblks + *resbcountp) { in xfs_trans_dqresv()
681 softlimit = be64_to_cpu(dqp->q_core.d_ino_softlimit); in xfs_trans_dqresv()
[all …]
/linux-2.6.39/fs/quota/
DKconfig23 If you say Y here, quota warnings (about exceeding softlimit, reaching
32 If you say Y here, quota warnings (about exceeding softlimit, reaching
/linux-2.6.39/fs/ubifs/
Dio.c345 div_u64(ktime_to_ns(wbuf->softlimit), USEC_PER_SEC), in new_wbuf_timer_nolock()
346 div_u64(ktime_to_ns(wbuf->softlimit) + wbuf->delta, in new_wbuf_timer_nolock()
348 hrtimer_start_range_ns(&wbuf->timer, wbuf->softlimit, wbuf->delta, in new_wbuf_timer_nolock()
971 wbuf->softlimit = ktime_set(WBUF_TIMEOUT_SOFTLIMIT, 0); in ubifs_wbuf_init()
Dubifs.h696 ktime_t softlimit; member