Lines Matching defs:buf
72 static int exfat_statfs(struct dentry *dentry, struct kstatfs *buf)
87 buf->f_type = sb->s_magic;
88 buf->f_bsize = sbi->cluster_size;
89 buf->f_blocks = sbi->num_clusters - 2; /* clu 0 & 1 */
90 buf->f_bfree = buf->f_blocks - sbi->used_clusters;
91 buf->f_bavail = buf->f_bfree;
92 buf->f_fsid = u64_to_fsid(id);
94 buf->f_namelen = EXFAT_MAX_FILE_LEN * NLS_MAX_CHARSET_SIZE;