Lines Matching defs:bufp
59 * @bufp: output buffer
62 * vxfs_statfs fills the statfs buffer @bufp with information
75 vxfs_statfs(struct dentry *dentry, struct kstatfs *bufp)
80 bufp->f_type = VXFS_SUPER_MAGIC;
81 bufp->f_bsize = dentry->d_sb->s_blocksize;
82 bufp->f_blocks = fs32_to_cpu(infp, raw_sb->vs_dsize);
83 bufp->f_bfree = fs32_to_cpu(infp, raw_sb->vs_free);
84 bufp->f_bavail = 0;
85 bufp->f_files = 0;
86 bufp->f_ffree = fs32_to_cpu(infp, raw_sb->vs_ifree);
87 bufp->f_namelen = VXFS_NAMELEN;