aboutsummaryrefslogtreecommitdiff
path: root/plugins/check_disk.c
diff options
context:
space:
mode:
authorGravatar Sven Nierlein <sven@nierlein.de> 2021-08-24 09:05:01 +0200
committerGravatar GitHub <noreply@github.com> 2021-08-24 09:05:01 +0200
commite17c1e9ed95b8b9681dccd5a909ac5a02a04416c (patch)
tree9e638a390fcea8460a6373b119d1abace63efda8 /plugins/check_disk.c
parentf1be271c3c492ae1af4674e3a60307b57a6c4539 (diff)
parent23436a18516e66469aeb4d81329d62ee4bfa7a51 (diff)
downloadmonitoring-plugins-e17c1e9ed95b8b9681dccd5a909ac5a02a04416c.tar.gz
Merge pull request #1388 from waja/check_proc_consumption_1357
check_disk: Fixing the stuff that is broken on btrfs
Diffstat (limited to 'plugins/check_disk.c')
-rw-r--r--plugins/check_disk.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/plugins/check_disk.c b/plugins/check_disk.c
index 844e625f..a2735195 100644
--- a/plugins/check_disk.c
+++ b/plugins/check_disk.c
@@ -1068,10 +1068,7 @@ get_stats (struct parameter_list *p, struct fs_usage *fsp) {
void
get_path_stats (struct parameter_list *p, struct fs_usage *fsp) {
- /* 2007-12-08 - Workaround for Gnulib reporting insanely high available
- * space on BSD (the actual value should be negative but fsp->fsu_bavail
- * is unsigned) */
- p->available = fsp->fsu_bavail > fsp->fsu_bfree ? 0 : fsp->fsu_bavail;
+ p->available = fsp->fsu_bavail;
p->available_to_root = fsp->fsu_bfree;
p->used = fsp->fsu_blocks - fsp->fsu_bfree;
if (freespace_ignore_reserved) {