Searched refs:p_statfs (Results 1 – 1 of 1) sorted by relevance
20 static inline void statfs_ntop(struct statfs *n_statfs, struct statfs_portable *p_statfs) in statfs_ntop() argument22 memset(p_statfs, '\0', sizeof(struct statfs_portable)); in statfs_ntop()23 p_statfs->f_type = n_statfs->f_type; in statfs_ntop()24 p_statfs->f_bsize = n_statfs->f_bsize; in statfs_ntop()25 p_statfs->f_blocks = n_statfs->f_blocks; in statfs_ntop()26 p_statfs->f_bfree = n_statfs->f_bfree; in statfs_ntop()27 p_statfs->f_bavail = n_statfs->f_bavail; in statfs_ntop()28 p_statfs->f_files = n_statfs->f_files; in statfs_ntop()29 p_statfs->f_ffree = n_statfs->f_ffree; in statfs_ntop()30 p_statfs->f_fsid = n_statfs->f_fsid; in statfs_ntop()[all …]