Lines Matching defs:sfs
2577 * @sfs: statfs structure in which to return the information
2580 * pointed to by @sfs (this is initialized with zeros before ntfs_statfs is
2592 static int ntfs_statfs(struct dentry *dentry, struct kstatfs *sfs)
2603 sfs->f_type = NTFS_SB_MAGIC;
2605 sfs->f_bsize = PAGE_SIZE;
2611 sfs->f_blocks = vol->nr_clusters << vol->cluster_size_bits >>
2619 sfs->f_bavail = sfs->f_bfree = size;
2633 sfs->f_files = size;
2635 sfs->f_ffree = __get_nr_free_mft_records(vol, size, max_index);
2642 * by the filesystem type in sfs->f_type. Thus we use the 64-bit
2647 sfs->f_fsid = u64_to_fsid(vol->serial_no);
2649 sfs->f_namelen = NTFS_MAX_NAME_LEN;