Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kdump for openSUSE:Factory checked in at 2025-02-09 20:00:49 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kdump (Old) and /work/SRC/openSUSE:Factory/.kdump.new.2316 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kdump" Sun Feb 9 20:00:49 2025 rev:156 rq:1244211 version:2.0.16 Changes: -------- --- /work/SRC/openSUSE:Factory/kdump/kdump.changes 2025-01-25 19:10:25.455597692 +0100 +++ /work/SRC/openSUSE:Factory/.kdump.new.2316/kdump.changes 2025-02-09 20:00:56.409181553 +0100 @@ -1,0 +2,12 @@ +Fri Feb 7 17:08:23 UTC 2025 - Jiri Bohac <[email protected]> + +- upgrade to version 2.0.16 + * fix KDUMP_AUTO_RESIZE + +------------------------------------------------------------------- +Fri Jan 31 17:27:53 UTC 2025 - Jiri Bohac <[email protected]> + +- upgrade to version 2.0.15 + * dracut: fix filtering ro keys in kdump_bond_config (bsc#1233137) + +------------------------------------------------------------------- Old: ---- kdump-2.0.14.tar.xz New: ---- kdump-2.0.16.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kdump.spec ++++++ --- /var/tmp/diff_new_pack.DP5ewO/_old 2025-02-09 20:00:56.913202276 +0100 +++ /var/tmp/diff_new_pack.DP5ewO/_new 2025-02-09 20:00:56.917202440 +0100 @@ -57,7 +57,7 @@ %define dracutlibdir %{_prefix}/lib/dracut Name: kdump -Version: 2.0.14 +Version: 2.0.16 Release: 0 Summary: Kernel crash dump scripts and utilities License: GPL-2.0-or-later ++++++ kdump-2.0.14.tar.xz -> kdump-2.0.16.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdump-2.0.14/NEWS new/kdump-2.0.16/NEWS --- old/kdump-2.0.14/NEWS 2025-01-22 18:50:05.000000000 +0100 +++ new/kdump-2.0.16/NEWS 2025-02-07 15:45:24.000000000 +0100 @@ -1,3 +1,15 @@ +2.0.16 +------ +* fix KDUMP_AUTO_RESIZE + +2.0.15 +------ +* dracut: fix filtering ro keys in kdump_bond_config (bsc#1233137) + +2.0.14 +------ + * spec: add dependency on ethtool + 2.0.13 ------ * allow negative KDUMP_KEEP_OLD_DUMPS (bsc#1234845) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdump-2.0.14/dracut/setup-kdump.functions new/kdump-2.0.16/dracut/setup-kdump.functions --- old/kdump-2.0.14/dracut/setup-kdump.functions 2025-01-22 18:50:05.000000000 +0100 +++ new/kdump-2.0.16/dracut/setup-kdump.functions 2025-02-07 15:45:24.000000000 +0100 @@ -364,13 +364,14 @@ local ro_keys=( ad_actor_key + ad_actor_system ad_aggregator ad_num_ports ad_partner_key ad_partner_mac ) local ro_sed="s/,\(${ro_keys[@]}\)=[^,]*//g" - ro_sed="${ro_sed// /\|}" + ro_sed="${ro_sed// /\\|}" opts=$(ip -d link show "$bond" | \ sed -n '3{s/^ *bond//;s/ \([^ ]*\) \([^ ]*\)/,\1=\2/g;'"$ro_sed"';p}') diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdump-2.0.14/init/load.sh new/kdump-2.0.16/init/load.sh --- old/kdump-2.0.14/init/load.sh 2025-01-22 18:50:05.000000000 +0100 +++ new/kdump-2.0.16/init/load.sh 2025-02-07 15:45:24.000000000 +0100 @@ -313,7 +313,7 @@ rebuild_kdumprd || exit 1 fi -if [ "$shrink" = yes ] ; then +if [ "$shrink" = true ] ; then kdumptool calibrate --shrink > /dev/null fi diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdump-2.0.14/kdumptool/calibrate.cc new/kdump-2.0.16/kdumptool/calibrate.cc --- old/kdump-2.0.14/kdumptool/calibrate.cc 2025-01-22 18:50:05.000000000 +0100 +++ new/kdump-2.0.16/kdumptool/calibrate.cc 2025-02-07 15:45:24.000000000 +0100 @@ -1150,6 +1150,12 @@ #endif if (m_shrink) - shrink_crash_size(required << 10); + try { + shrink_crash_size(required << 10); + } + catch(std::runtime_error &e) { + cerr << "Error shrinking reserved memory: " << e.what() << endl; + exit(1); + } }
