Lines Matching refs:statp
1149 struct kstatfs *statp) in xfs_fs_statfs() argument
1156 statp->f_type = XFS_SB_MAGIC; in xfs_fs_statfs()
1157 statp->f_namelen = MAXNAMELEN - 1; in xfs_fs_statfs()
1160 statp->f_fsid.val[0] = (u32)id; in xfs_fs_statfs()
1161 statp->f_fsid.val[1] = (u32)(id >> 32); in xfs_fs_statfs()
1166 statp->f_bsize = sbp->sb_blocksize; in xfs_fs_statfs()
1168 statp->f_blocks = sbp->sb_dblocks - lsize; in xfs_fs_statfs()
1169 statp->f_bfree = statp->f_bavail = in xfs_fs_statfs()
1171 fakeinos = statp->f_bfree << sbp->sb_inopblog; in xfs_fs_statfs()
1175 statp->f_files = in xfs_fs_statfs()
1181 statp->f_files = min_t(typeof(statp->f_files), in xfs_fs_statfs()
1182 statp->f_files, in xfs_fs_statfs()
1184 statp->f_ffree = statp->f_files - (sbp->sb_icount - sbp->sb_ifree); in xfs_fs_statfs()
1187 XFS_QM_DQSTATVFS(XFS_I(dentry->d_inode), statp); in xfs_fs_statfs()