Re: [PATCH 2/7] df: Use statvfs instead of non-standard statfs

2017-10-30 Thread Denys Vlasenko
Applied, thanks! On Sat, Oct 7, 2017 at 7:53 PM, James Clarke wrote: > Platforms differ on what their implementations of statfs include. > Importantly, FreeBSD's does not include a f_frsize member inside struct > statfs. However, statvfs is specified by POSIX and includes

[PATCH 2/7] df: Use statvfs instead of non-standard statfs

2017-10-07 Thread James Clarke
Platforms differ on what their implementations of statfs include. Importantly, FreeBSD's does not include a f_frsize member inside struct statfs. However, statvfs is specified by POSIX and includes everything we need, so we can just use that instead. Signed-off-by: James Clarke