X-Git-Url: https://git.octo.it/?a=blobdiff_plain;ds=sidebyside;f=src%2Fdf.c;h=371a7fc3db9973b676322a75362d14b633b45a81;hb=d0bb20feb1c5915e8b8af24cc2d46c4ac82d6704;hp=5391f50c852f8dea77e620683c1a2d5e51fd3eac;hpb=2652653c3db161442d28709d79c3f2d81ab571ee;p=collectd.git diff --git a/src/df.c b/src/df.c index 5391f50c..371a7fc3 100644 --- a/src/df.c +++ b/src/df.c @@ -245,7 +245,22 @@ static int df_read (void) blocksize = BLOCKSIZE(statbuf); - /* Sanity-check for the values in the struct */ + /* + * Sanity-check for the values in the struct + */ + /* Check for negative "available" byes. For example UFS can + * report negative free space for user. Notice. blk_reserved + * will start to diminish after this. */ +#if HAVE_STATVFS + /* Cast is needed to avoid compiler warnings. + * ((struct statvfs).f_bavail is unsigned (POSIX)) */ + if (((int64_t) statbuf.f_bavail) < 0) + statbuf.f_bavail = 0; +#elif HAVE_STATFS + if (statbuf.f_bavail < 0) + statbuf.f_bavail = 0; +#endif + /* Make sure that f_blocks >= f_bfree >= f_bavail */ if (statbuf.f_bfree < statbuf.f_bavail) statbuf.f_bfree = statbuf.f_bavail; if (statbuf.f_blocks < statbuf.f_bfree)