Home
last modified time | relevance | path

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

/netbsd-src/sys/compat/sys/
H A Dmount.h116 #define __STATFSCLAMP(a) (long)(((a) & ~LONG_MAX) ? LONG_MAX : (a)) in statvfs_to_statfs12() macro
117 s12->f_bsize = __STATFSCLAMP(fs->f_frsize); in statvfs_to_statfs12()
118 s12->f_iosize = __STATFSCLAMP(fs->f_iosize); in statvfs_to_statfs12()
119 s12->f_blocks = __STATFSCLAMP(fs->f_blocks); in statvfs_to_statfs12()
120 s12->f_bfree = __STATFSCLAMP(fs->f_bfree); in statvfs_to_statfs12()
122 s12->f_bavail = __STATFSCLAMP(fs->f_bfree - fs->f_bresvd); in statvfs_to_statfs12()
124 s12->f_bavail = -__STATFSCLAMP(fs->f_bresvd - fs->f_bfree); in statvfs_to_statfs12()
125 s12->f_files = __STATFSCLAMP(fs->f_files); in statvfs_to_statfs12()
126 s12->f_ffree = __STATFSCLAMP(fs->f_ffree); in statvfs_to_statfs12()
130 s12->f_syncwrites = __STATFSCLAMP(fs->f_syncwrites); in statvfs_to_statfs12()
[all …]