mirror of
https://github.com/moparisthebest/pacman
synced 2024-12-21 23:38:49 -05:00
Use f_bavail for diskspace calculations
This should make pacman's behavior consistent with GNU coreutils df, as well as follow advice from affected filesystems' devs as well as `man statvfs`. This fixes FS#37402 Signed-off-by: Martin Kühne <mysatyre@gmail.com> Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
parent
ad27aa30fb
commit
8c55c0096c
@ -348,11 +348,11 @@ static int check_mountpoint(alpm_handle_t *handle, alpm_mountpoint_t *mp)
|
|||||||
_alpm_log(handle, ALPM_LOG_DEBUG,
|
_alpm_log(handle, ALPM_LOG_DEBUG,
|
||||||
"partition %s, needed %jd, cushion %ju, free %ju\n",
|
"partition %s, needed %jd, cushion %ju, free %ju\n",
|
||||||
mp->mount_dir, (intmax_t)mp->max_blocks_needed,
|
mp->mount_dir, (intmax_t)mp->max_blocks_needed,
|
||||||
(uintmax_t)cushion, (uintmax_t)mp->fsp.f_bfree);
|
(uintmax_t)cushion, (uintmax_t)mp->fsp.f_bavail);
|
||||||
if(needed >= 0 && (fsblkcnt_t)needed > mp->fsp.f_bfree) {
|
if(needed >= 0 && (fsblkcnt_t)needed > mp->fsp.f_bavail) {
|
||||||
_alpm_log(handle, ALPM_LOG_ERROR,
|
_alpm_log(handle, ALPM_LOG_ERROR,
|
||||||
_("Partition %s too full: %jd blocks needed, %ju blocks free\n"),
|
_("Partition %s too full: %jd blocks needed, %ju blocks free\n"),
|
||||||
mp->mount_dir, (intmax_t)needed, (uintmax_t)mp->fsp.f_bfree);
|
mp->mount_dir, (intmax_t)needed, (uintmax_t)mp->fsp.f_bavail);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user