Lines Matching defs:sfs
447 * @sfs: statfs structure in which to return the information
450 * pointed to by @sfs (this is initialized with zeros before ntfs_statfs is
465 struct statvfs sfs;
476 sfs.f_bsize = vol->cluster_size;
479 sfs.f_frsize = vol->cluster_size;
486 sfs.f_blocks = vol->nr_clusters;
492 sfs.f_bavail = sfs.f_bfree = size;
502 sfs.f_files = (vol->mftbmp_na->allocated_size << 3) + size;
508 sfs.f_ffree = sfs.f_favail = size;
511 sfs.f_namemax = NTFS_MAX_NAME_LEN;
512 fuse_reply_statfs(req, &sfs);