Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package google-guest-configs for openSUSE:Factory checked in at 2023-10-20 23:18:30 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/google-guest-configs (Old) and /work/SRC/openSUSE:Factory/.google-guest-configs.new.1945 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "google-guest-configs" Fri Oct 20 23:18:30 2023 rev:18 rq:1119156 version:20230929.00 Changes: -------- --- /work/SRC/openSUSE:Factory/google-guest-configs/google-guest-configs.changes 2023-08-28 17:13:52.629767812 +0200 +++ /work/SRC/openSUSE:Factory/.google-guest-configs.new.1945/google-guest-configs.changes 2023-10-20 23:21:13.984296639 +0200 @@ -1,0 +2,6 @@ +Thu Oct 19 12:33:34 UTC 2023 - John Paul Adrian Glaubitz <adrian.glaub...@suse.com> + +- Update to version 20230929.00 + * Update multinic filter to pick only pci devices (#59) + +------------------------------------------------------------------- Old: ---- google-guest-configs-20230808.00.tar.gz New: ---- google-guest-configs-20230929.00.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ google-guest-configs.spec ++++++ --- /var/tmp/diff_new_pack.PmiJvT/_old 2023-10-20 23:21:14.532316634 +0200 +++ /var/tmp/diff_new_pack.PmiJvT/_new 2023-10-20 23:21:14.536316780 +0200 @@ -23,7 +23,7 @@ %define _udevdir %(pkg-config --variable udev_dir udev) %endif Name: google-guest-configs -Version: 20230808.00 +Version: 20230929.00 Release: 0 Summary: Google Cloud Guest Configs License: Apache-2.0 ++++++ google-guest-configs-20230808.00.tar.gz -> google-guest-configs-20230929.00.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/guest-configs-20230808.00/src/usr/bin/google_set_multiqueue new/guest-configs-20230929.00/src/usr/bin/google_set_multiqueue --- old/guest-configs-20230808.00/src/usr/bin/google_set_multiqueue 2023-08-08 17:33:56.000000000 +0200 +++ new/guest-configs-20230929.00/src/usr/bin/google_set_multiqueue 2023-09-29 19:22:44.000000000 +0200 @@ -234,7 +234,7 @@ # IRQ binding for numa 0, CPUs [0, 51] and [104, 155] are for numa 0. numa0_irq_start=1 -find /sys/class/net -type l | xargs -L 1 realpath | sort | xargs -L 1 basename | grep -v lo | while read nic_name; do +find /sys/class/net -type l | xargs -L 1 realpath | grep '/sys/devices/pci' | sort | xargs -L 1 basename | while read nic_name; do nic_numa_node=$(cat /sys/class/net/"$nic_name"/device/numa_node) if [[ $nic_numa_node -ne 0 ]]; then continue @@ -256,7 +256,7 @@ # IRQ binding for numa 1, CPUs [52, 103] and [156, 207] are for numa 1. numa1_irq_start=52 -find /sys/class/net -type l | xargs -L 1 realpath | sort | xargs -L 1 basename | grep -v lo | while read nic_name; do +find /sys/class/net -type l | xargs -L 1 realpath | grep '/sys/devices/pci' | sort | xargs -L 1 basename | while read nic_name; do nic_numa_node=$(cat /sys/class/net/"$nic_name"/device/numa_node) if [[ $nic_numa_node -ne 1 ]]; then continue