Searched refs:sfs (Results 1 – 3 of 3) sorted by relevance
549 int venus_statfs(struct dentry *dentry, struct kstatfs *sfs) in venus_statfs() argument560 sfs->f_blocks = outp->coda_statfs.stat.f_blocks; in venus_statfs()561 sfs->f_bfree = outp->coda_statfs.stat.f_bfree; in venus_statfs()562 sfs->f_bavail = outp->coda_statfs.stat.f_bavail; in venus_statfs()563 sfs->f_files = outp->coda_statfs.stat.f_files; in venus_statfs()564 sfs->f_ffree = outp->coda_statfs.stat.f_ffree; in venus_statfs()
2608 static int ntfs_statfs(struct dentry *dentry, struct kstatfs *sfs) in ntfs_statfs() argument2619 sfs->f_type = NTFS_SB_MAGIC; in ntfs_statfs()2621 sfs->f_bsize = PAGE_SIZE; in ntfs_statfs()2627 sfs->f_blocks = vol->nr_clusters << vol->cluster_size_bits >> in ntfs_statfs()2635 sfs->f_bavail = sfs->f_bfree = size; in ntfs_statfs()2649 sfs->f_files = size; in ntfs_statfs()2651 sfs->f_ffree = __get_nr_free_mft_records(vol, size, max_index); in ntfs_statfs()2663 sfs->f_fsid.val[0] = vol->serial_no & 0xffffffff; in ntfs_statfs()2664 sfs->f_fsid.val[1] = (vol->serial_no >> 32) & 0xffffffff; in ntfs_statfs()2666 sfs->f_namelen = NTFS_MAX_NAME_LEN; in ntfs_statfs()
272 static char *check_special_flags(char *sfs, Node *e) in check_special_flags() argument274 char *p = sfs; in check_special_flags()