Lines Matching refs:statp
33 struct kstatfs *statp, in xfs_fill_statvfs_from_dquot() argument
41 if (limit && statp->f_blocks > limit) { in xfs_fill_statvfs_from_dquot()
42 statp->f_blocks = limit; in xfs_fill_statvfs_from_dquot()
43 statp->f_bfree = statp->f_bavail = in xfs_fill_statvfs_from_dquot()
44 (statp->f_blocks > dqp->q_res_bcount) ? in xfs_fill_statvfs_from_dquot()
45 (statp->f_blocks - dqp->q_res_bcount) : 0; in xfs_fill_statvfs_from_dquot()
51 if (limit && statp->f_files > limit) { in xfs_fill_statvfs_from_dquot()
52 statp->f_files = limit; in xfs_fill_statvfs_from_dquot()
53 statp->f_ffree = in xfs_fill_statvfs_from_dquot()
54 (statp->f_files > dqp->q_res_icount) ? in xfs_fill_statvfs_from_dquot()
55 (statp->f_ffree - dqp->q_res_icount) : 0; in xfs_fill_statvfs_from_dquot()
70 struct kstatfs *statp) in xfs_qm_statvfs() argument
76 xfs_fill_statvfs_from_dquot(statp, dqp); in xfs_qm_statvfs()