/* Return information about the filesystem on which FD resides. */ int __fstatfs64 (int fd, struct statfs64 *buf) { error_t err; if (err = HURD_DPORT_USE (fd, __file_statfs (port, buf))) return __hurd_dfail (fd, err); return 0; }
/* Return information about the filesystem on which FILE resides. */ int __statfs64 (const char *file, struct statfs64 *buf) { error_t err; file_t port; port = __file_name_lookup (file, 0, 0); if (port == MACH_PORT_NULL) return -1; err = __file_statfs (port, buf); __mach_port_deallocate (__mach_task_self (), port); if (err) return __hurd_fail (err); return 0; }