Lines Matching defs:stbuf
646 static void convert_fuse_statfs(struct kstatfs *stbuf, struct fuse_kstatfs *attr)
648 stbuf->f_type = FUSE_SUPER_MAGIC;
649 stbuf->f_bsize = attr->bsize;
650 stbuf->f_frsize = attr->frsize;
651 stbuf->f_blocks = attr->blocks;
652 stbuf->f_bfree = attr->bfree;
653 stbuf->f_bavail = attr->bavail;
654 stbuf->f_files = attr->files;
655 stbuf->f_ffree = attr->ffree;
656 stbuf->f_namelen = attr->namelen;