[hackers] [slstatus][patch] corrected calculations for disk space

From: Tobias Tschinkowitz <he4d_AT_posteo.de>
Date: Thu, 17 May 2018 12:43:21 +0200

Hi Aaron,

i checked the complete functionality now for openbsd and had just some
different values for my disk space (compared it to df(1)).
The rest is working fine!

Greets,
Tobias

---
 components/disk.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
diff --git components/disk.c components/disk.c
index 8112981..bf69875 100644
--- components/disk.c
+++ components/disk.c
_AT_@ -17,7 +17,7 @@ disk_free(const char *mnt)
 	}
 
 	return bprintf("%f",
-	               (float)fs.f_bsize * (float)fs.f_bfree / 1024 / 1024 / 1024);
+	               (float)fs.f_frsize * (float)fs.f_bavail / 1024 / 1024 / 1024);
 }
 
 const char *
_AT_@ -31,7 +31,7 @@ disk_perc(const char *mnt)
 	}
 
 	return bprintf("%d", (int)(100 *
-	               (1.0f - ((float)fs.f_bfree / (float)fs.f_blocks))));
+	               (1.0f - ((float)fs.f_bavail / (float)fs.f_blocks))));
 }
 
 const char *
_AT_@ -45,7 +45,7 @@ disk_total(const char *mnt)
 	}
 
 	return bprintf("%f",
-	               (float)fs.f_bsize * (float)fs.f_blocks / 1024 / 1024 / 1024);
+	               (float)fs.f_frsize * (float)fs.f_blocks / 1024 / 1024 / 1024);
 }
 
 const char *
_AT_@ -59,6 +59,6 @@ disk_used(const char *mnt)
 	}
 
 	return bprintf("%f",
-	               (float)fs.f_bsize * ((float)fs.f_blocks -
+	               (float)fs.f_frsize * ((float)fs.f_blocks -
 	               (float)fs.f_bfree) / 1024 / 1024 / 1024);
 }
-- 
2.16.2
Received on Thu May 17 2018 - 12:43:21 CEST

This archive was generated by hypermail 2.3.0 : Thu May 17 2018 - 13:00:39 CEST