Searched refs:n_statfs (Results 1 – 2 of 2) sorted by relevance
23 static inline void statfs_ntop(struct statfs *n_statfs, struct statfs_portable *p_statfs) in statfs_ntop() argument26 p_statfs->f_type = n_statfs->f_type; in statfs_ntop()27 p_statfs->f_bsize = n_statfs->f_bsize; in statfs_ntop()28 p_statfs->f_blocks = n_statfs->f_blocks; in statfs_ntop()29 p_statfs->f_bfree = n_statfs->f_bfree; in statfs_ntop()30 p_statfs->f_bavail = n_statfs->f_bavail; in statfs_ntop()31 p_statfs->f_files = n_statfs->f_files; in statfs_ntop()32 p_statfs->f_ffree = n_statfs->f_ffree; in statfs_ntop()33 p_statfs->f_fsid = n_statfs->f_fsid; in statfs_ntop()34 p_statfs->f_namelen = n_statfs->f_namelen; in statfs_ntop()[all …]
46 void statfs_ntop(struct statfs *n_statfs, struct statfs_portable *p_statfs) { in statfs_ntop() argument48 p_statfs->f_type = n_statfs->f_type; in statfs_ntop()49 p_statfs->f_bsize = n_statfs->f_bsize; in statfs_ntop()50 p_statfs->f_blocks = n_statfs->f_blocks; in statfs_ntop()51 p_statfs->f_bfree = n_statfs->f_bfree; in statfs_ntop()52 p_statfs->f_bavail = n_statfs->f_bavail; in statfs_ntop()53 p_statfs->f_files = n_statfs->f_files; in statfs_ntop()54 p_statfs->f_ffree = n_statfs->f_ffree; in statfs_ntop()55 memcpy(&p_statfs->f_fsid, &n_statfs->f_fsid, sizeof(int)*2); in statfs_ntop()56 p_statfs->f_namelen = n_statfs->f_namelen; in statfs_ntop()[all …]