Home
last modified time | relevance | path

Searched refs:sfs (Results 1 – 3 of 3) sorted by relevance

/fs/coda/
Dupcall.c550 int venus_statfs(struct dentry *dentry, struct kstatfs *sfs) in venus_statfs() argument
561 sfs->f_blocks = outp->coda_statfs.stat.f_blocks; in venus_statfs()
562 sfs->f_bfree = outp->coda_statfs.stat.f_bfree; in venus_statfs()
563 sfs->f_bavail = outp->coda_statfs.stat.f_bavail; in venus_statfs()
564 sfs->f_files = outp->coda_statfs.stat.f_files; in venus_statfs()
565 sfs->f_ffree = outp->coda_statfs.stat.f_ffree; in venus_statfs()
/fs/ntfs/
Dsuper.c2614 static int ntfs_statfs(struct dentry *dentry, struct kstatfs *sfs) in ntfs_statfs() argument
2625 sfs->f_type = NTFS_SB_MAGIC; in ntfs_statfs()
2627 sfs->f_bsize = PAGE_CACHE_SIZE; in ntfs_statfs()
2633 sfs->f_blocks = vol->nr_clusters << vol->cluster_size_bits >> in ntfs_statfs()
2641 sfs->f_bavail = sfs->f_bfree = size; in ntfs_statfs()
2655 sfs->f_files = size; in ntfs_statfs()
2657 sfs->f_ffree = __get_nr_free_mft_records(vol, size, max_index); in ntfs_statfs()
2669 sfs->f_fsid.val[0] = vol->serial_no & 0xffffffff; in ntfs_statfs()
2670 sfs->f_fsid.val[1] = (vol->serial_no >> 32) & 0xffffffff; in ntfs_statfs()
2672 sfs->f_namelen = NTFS_MAX_NAME_LEN; in ntfs_statfs()
/fs/
Dbinfmt_misc.c238 static char * check_special_flags (char * sfs, Node * e) in check_special_flags() argument
240 char * p = sfs; in check_special_flags()