From: Tomohiro Kusumi Date: Mon, 17 Oct 2016 14:17:38 +0000 (+0900) Subject: Add FIO_HAVE_FS_STAT/get_fs_free_size() support for NetBSD X-Git-Tag: fio-2.15~15 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=a016c83881fbdc30a62da231314cc21054cd10af;ds=sidebyside Add FIO_HAVE_FS_STAT/get_fs_free_size() support for NetBSD This commit is NetBSD version of 60f840a8 in 2015. This is the same as 60f840a8, as it uses POSIX statvfs. (Note that the function was renamed with _free in c08ad04c) Signed-off-by: Tomohiro Kusumi Signed-off-by: Jens Axboe --- diff --git a/os/os-netbsd.h b/os/os-netbsd.h index 4b0269e6..4c629dde 100644 --- a/os/os-netbsd.h +++ b/os/os-netbsd.h @@ -6,6 +6,7 @@ #include #include #include +#include /* XXX hack to avoid confilcts between rbtree.h and */ #define rb_node _rb_node #include @@ -19,6 +20,7 @@ #define FIO_USE_GENERIC_BDEV_SIZE #define FIO_USE_GENERIC_RAND #define FIO_USE_GENERIC_INIT_RANDOM_STATE +#define FIO_HAVE_FS_STAT #define FIO_HAVE_GETTID #undef FIO_HAVE_CPU_AFFINITY /* XXX notyet */ @@ -55,6 +57,19 @@ static inline int gettid(void) return (int) _lwp_self(); } +static inline unsigned long long get_fs_free_size(const char *path) +{ + unsigned long long ret; + struct statvfs s; + + if (statvfs(path, &s) < 0) + return -1ULL; + + ret = s.f_frsize; + ret *= (unsigned long long) s.f_bfree; + return ret; +} + #ifdef MADV_FREE #define FIO_MADV_FREE MADV_FREE #endif