Lines Matching defs:buf
22 static int efs_statfs(struct dentry *dentry, struct kstatfs *buf);
330 static int efs_statfs(struct dentry *dentry, struct kstatfs *buf) {
335 buf->f_type = EFS_SUPER_MAGIC; /* efs magic number */
336 buf->f_bsize = EFS_BLOCKSIZE; /* blocksize */
337 buf->f_blocks = sbi->total_groups * /* total data blocks */
339 buf->f_bfree = sbi->data_free; /* free data blocks */
340 buf->f_bavail = sbi->data_free; /* free blocks for non-root */
341 buf->f_files = sbi->total_groups * /* total inodes */
344 buf->f_ffree = sbi->inode_free; /* free inodes */
345 buf->f_fsid = u64_to_fsid(id);
346 buf->f_namelen = EFS_MAXNAMELEN; /* max filename length */