Lines Matching refs:dp
54 xfs_disk_dquot_t *dp) in xfs_fill_statvfs_from_dquot() argument
58 limit = dp->d_blk_softlimit ? in xfs_fill_statvfs_from_dquot()
59 be64_to_cpu(dp->d_blk_softlimit) : in xfs_fill_statvfs_from_dquot()
60 be64_to_cpu(dp->d_blk_hardlimit); in xfs_fill_statvfs_from_dquot()
64 (statp->f_blocks > be64_to_cpu(dp->d_bcount)) ? in xfs_fill_statvfs_from_dquot()
65 (statp->f_blocks - be64_to_cpu(dp->d_bcount)) : 0; in xfs_fill_statvfs_from_dquot()
68 limit = dp->d_ino_softlimit ? in xfs_fill_statvfs_from_dquot()
69 be64_to_cpu(dp->d_ino_softlimit) : in xfs_fill_statvfs_from_dquot()
70 be64_to_cpu(dp->d_ino_hardlimit); in xfs_fill_statvfs_from_dquot()
74 (statp->f_files > be64_to_cpu(dp->d_icount)) ? in xfs_fill_statvfs_from_dquot()
75 (statp->f_ffree - be64_to_cpu(dp->d_icount)) : 0; in xfs_fill_statvfs_from_dquot()
101 xfs_disk_dquot_t *dp = &dqp->q_core; in xfs_qm_statvfs() local
103 xfs_fill_statvfs_from_dquot(statp, dp); in xfs_qm_statvfs()