diff options
| author | David Malone <dwmalone@FreeBSD.org> | 2007-09-18 19:50:33 +0000 |
|---|---|---|
| committer | David Malone <dwmalone@FreeBSD.org> | 2007-09-18 19:50:33 +0000 |
| commit | 3ab8526963fe1bcf17dec5b4b2b4449fbae7928d (patch) | |
| tree | fd0570d70b25da7a29c4ce04d71bd87ba30cb8ce /sys/amd64/linux32/linux.h | |
| parent | 079d60f0843e6e30ea96f2df249594229e548055 (diff) | |
Notes
Diffstat (limited to 'sys/amd64/linux32/linux.h')
| -rw-r--r-- | sys/amd64/linux32/linux.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sys/amd64/linux32/linux.h b/sys/amd64/linux32/linux.h index b9984025ec33..a904afc2da86 100644 --- a/sys/amd64/linux32/linux.h +++ b/sys/amd64/linux32/linux.h @@ -242,6 +242,19 @@ struct l_stat64 { l_ulonglong st_ino; } __packed; +struct l_statfs64 { + l_int f_type; + l_int f_bsize; + uint64_t f_blocks; + uint64_t f_bfree; + uint64_t f_bavail; + uint64_t f_files; + uint64_t f_ffree; + l_fsid_t f_fsid; + l_int f_namelen; + l_int f_spare[6]; +} __packed; + struct l_new_utsname { char sysname[LINUX_MAX_UTSNAME]; char nodename[LINUX_MAX_UTSNAME]; |
