import kexec-tools-2.0.20-56.el8

This commit is contained in:
CentOS Sources 2021-08-10 04:23:38 +00:00 committed by Andrew Lukoshko
parent 830dcd5c4c
commit 3c71e580a2
2 changed files with 10 additions and 7 deletions

View File

@ -1221,7 +1221,7 @@ do_estimate() {
local kdump_mods
local -A large_mods
local baseline
local kernel_size mod_size initrd_size baseline_size runtime_size reserved_size estimated_size recommanded_size
local kernel_size mod_size initrd_size baseline_size runtime_size reserved_size estimated_size recommended_size
local size_mb=$(( 1024 * 1024 ))
setup_initrd
@ -1279,13 +1279,13 @@ do_estimate() {
estimated_size=$((kernel_size + mod_size + initrd_size + runtime_size + crypt_size))
if [[ $baseline_size -gt $estimated_size ]]; then
recommanded_size=$baseline_size
recommended_size=$baseline_size
else
recommanded_size=$estimated_size
recommended_size=$estimated_size
fi
echo "Reserved crashkernel: $((reserved_size / size_mb))M"
echo "Recommanded crashkernel: $((recommanded_size / size_mb))M"
echo "Recommended crashkernel: $((recommended_size / size_mb))M"
echo
echo "Kernel image size: $((kernel_size / size_mb))M"
echo "Kernel modules size: $((mod_size / size_mb))M"
@ -1303,8 +1303,8 @@ do_estimate() {
done
fi
if [[ $reserved_size -lt $recommanded_size ]]; then
echo "WARNING: Current crashkernel size is lower than recommanded size $((recommanded_size / size_mb))M."
if [[ $reserved_size -lt $recommended_size ]]; then
echo "WARNING: Current crashkernel size is lower than recommended size $((recommended_size / size_mb))M."
fi
}

View File

@ -1,6 +1,6 @@
Name: kexec-tools
Version: 2.0.20
Release: 55%{?dist}
Release: 56%{?dist}
License: GPLv2
Group: Applications/System
Summary: The kexec/kdump userspace component
@ -406,6 +406,9 @@ done
%endif
%changelog
* Fri Aug 6 2021 Pingfan Liu <piliu@redhat.com> - 2.0.20-56
- kdumpctl: fix a typo
* Mon Aug 2 2021 Pingfan Liu <piliu@redhat.com> - 2.0.20-55
- kdump/ppc64: migration action registration clean up