statfs
int (*statfs) (const char *, struct statvfs *);
int (*statfs) (const char *, struct statfs *);
int (*statfs) (struct fuse_statfs_compat1 *);
int (*statfs) (const char *, struct statvfs *);
int (*statfs) (const char *, struct statfs *);
void (*statfs) (fuse_req_t req, fuse_ino_t ino);
void (*statfs) (fuse_req_t req);
int fuse_reply_statfs_compat(fuse_req_t req, const struct statfs *stbuf);
void (*statfs) (fuse_req_t req);
struct statfs mnt_stat; /* cache of filesystem stats */
fVolumeCapabilities.Set(FS_VOLUME_CAPABILITY_READ_FS_INFO, fLowLevelOps.statfs);
fVolumeCapabilities.Set(FS_VOLUME_CAPABILITY_READ_FS_INFO, fFS->ops.statfs);
if (ops->statfs == NULL)
ops->statfs(&request, inode);
if (fFS->ops.statfs == NULL)
if (fs->ops.statfs == NULL)
return fs->ops.statfs(path, buf);
struct statfs ftsp_statfs;
if (statfs(ent->fts_path, &priv->ftsp_statfs) != -1) {
fuseOps->statfs = fuse_statfs;