Lines Matching refs:stbuf
467 static void convert_fuse_statfs(struct kstatfs *stbuf, struct fuse_kstatfs *attr)
469 stbuf->f_type = FUSE_SUPER_MAGIC;
470 stbuf->f_bsize = attr->bsize;
471 stbuf->f_frsize = attr->frsize;
472 stbuf->f_blocks = attr->blocks;
473 stbuf->f_bfree = attr->bfree;
474 stbuf->f_bavail = attr->bavail;
475 stbuf->f_files = attr->files;
476 stbuf->f_ffree = attr->ffree;
477 stbuf->f_namelen = attr->namelen;