Lines Matching refs:stbuf
589 static void convert_fuse_statfs(struct kstatfs *stbuf, struct fuse_kstatfs *attr)
591 stbuf->f_type = FUSE_SUPER_MAGIC;
592 stbuf->f_bsize = attr->bsize;
593 stbuf->f_frsize = attr->frsize;
594 stbuf->f_blocks = attr->blocks;
595 stbuf->f_bfree = attr->bfree;
596 stbuf->f_bavail = attr->bavail;
597 stbuf->f_files = attr->files;
598 stbuf->f_ffree = attr->ffree;
599 stbuf->f_namelen = attr->namelen;