Lines Matching defs:buf
220 static int bfs_statfs(struct dentry *dentry, struct kstatfs *buf)
225 buf->f_type = BFS_MAGIC;
226 buf->f_bsize = s->s_blocksize;
227 buf->f_blocks = info->si_blocks;
228 buf->f_bfree = buf->f_bavail = info->si_freeb;
229 buf->f_files = info->si_lasti + 1 - BFS_ROOT_INO;
230 buf->f_ffree = info->si_freei;
231 buf->f_fsid = u64_to_fsid(id);
232 buf->f_namelen = BFS_NAMELEN;