Lines Matching defs:sfs
2585 * @sfs: statfs structure in which to return the information
2588 * pointed to by @sfs (this is initialized with zeros before ntfs_statfs is
2600 static int ntfs_statfs(struct dentry *dentry, struct kstatfs *sfs)
2611 sfs->f_type = NTFS_SB_MAGIC;
2613 sfs->f_bsize = PAGE_SIZE;
2619 sfs->f_blocks = vol->nr_clusters << vol->cluster_size_bits >>
2627 sfs->f_bavail = sfs->f_bfree = size;
2641 sfs->f_files = size;
2643 sfs->f_ffree = __get_nr_free_mft_records(vol, size, max_index);
2650 * by the filesystem type in sfs->f_type. Thus we use the 64-bit
2655 sfs->f_fsid = u64_to_fsid(vol->serial_no);
2657 sfs->f_namelen = NTFS_MAX_NAME_LEN;