From 60713ffa6ba9f6ede109079ec8afa370c7dba741 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Fri, 2 Aug 1996 03:25:10 +0000 Subject: [PATCH] (get_fs_usage) [STAT_STATFS4] [_CRAY]: Define f_bavail to f_bfree. From by Johan Danielsson. --- lib/fsusage.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/fsusage.c b/lib/fsusage.c index f10c9b3411..c669c5e369 100644 --- a/lib/fsusage.c +++ b/lib/fsusage.c @@ -183,8 +183,11 @@ get_fs_usage (path, disk, fsp) /* Empirically, the block counts on most SVR3 and SVR3-derived systems seem to always be in terms of 512-byte blocks, no matter what value f_bsize has. */ -# if _AIX +# if _AIX || defined(_CRAY) # define CONVERT_BLOCKS(b) adjust_blocks ((b), fsd.f_bsize, 512) +# ifdef _CRAY +# define f_bavail f_bfree +# endif # else # define CONVERT_BLOCKS(b) (b) # ifndef _SEQUENT_ /* _SEQUENT_ is DYNIX/ptx. */ -- 2.30.2