Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package rdma-core for openSUSE:Factory checked in at 2024-02-15 20:59:14 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rdma-core (Old) and /work/SRC/openSUSE:Factory/.rdma-core.new.1815 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rdma-core" Thu Feb 15 20:59:14 2024 rev:63 rq:1146586 version:49.1 Changes: -------- --- /work/SRC/openSUSE:Factory/rdma-core/rdma-core.changes 2024-01-24 19:04:25.309522914 +0100 +++ /work/SRC/openSUSE:Factory/.rdma-core.new.1815/rdma-core.changes 2024-02-15 20:59:36.934337972 +0100 @@ -1,0 +2,6 @@ +Wed Feb 14 13:13:23 UTC 2024 - Nicolas Morey <nicolas.mo...@suse.com> + +- Add kernel-boot-do-not-load-module-unsupported-on-s390.patch + to prevent autoload of module not supported on s390. (bsc#1219805) + +------------------------------------------------------------------- New: ---- kernel-boot-do-not-load-module-unsupported-on-s390.patch BETA DEBUG BEGIN: New: - Add kernel-boot-do-not-load-module-unsupported-on-s390.patch to prevent autoload of module not supported on s390. (bsc#1219805) BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rdma-core.spec ++++++ --- /var/tmp/diff_new_pack.naVmdO/_old 2024-02-15 20:59:38.002375510 +0100 +++ /var/tmp/diff_new_pack.naVmdO/_new 2024-02-15 20:59:38.006375650 +0100 @@ -75,6 +75,7 @@ Source5: gen-pandoc.sh Source6: get_build.py Patch0: disable-rdma-interface-renaming.patch +Patch1: kernel-boot-do-not-load-module-unsupported-on-s390.patch BuildRequires: binutils BuildRequires: cmake >= 2.8.11 BuildRequires: gcc @@ -424,7 +425,11 @@ %setup -q -n %{name}-%{version}%{git_ver} #Extract prebuilt pandoc file in the buildlib directory (cd buildlib && tar -xf %{S:3}) -%patch0 +%patch -P 0 +# On s390, disable autoload of unsupported modules +%ifarch s390 s390x +%patch -P 1 +%endif %build ++++++ kernel-boot-do-not-load-module-unsupported-on-s390.patch ++++++ commit c5ab85be2f7e5ec20e1d135d23847c07ee45e23c Author: Nicolas Morey <nmo...@suse.com> Date: Wed Feb 14 14:11:53 2024 +0100 kernel-boot: do not load module unsupported on s390 Signed-off-by: Nicolas Morey <nmo...@suse.com> diff --git kernel-boot/modules/infiniband.conf kernel-boot/modules/infiniband.conf index 99526e156fff..7f75b85c9ceb 100644 --- kernel-boot/modules/infiniband.conf +++ kernel-boot/modules/infiniband.conf @@ -1,9 +1,9 @@ # These modules are loaded by the system if any InfiniBand device is installed # InfiniBand over IP netdevice -ib_ipoib +#ib_ipoib # Access to fabric management SMPs and GMPs from userspace. -ib_umad +#ib_umad # SCSI Remote Protocol target support # ib_srpt diff --git kernel-boot/modules/opa.conf kernel-boot/modules/opa.conf index b9bc9f1f0146..3f9e6658b1ef 100644 --- kernel-boot/modules/opa.conf +++ kernel-boot/modules/opa.conf @@ -1,10 +1,10 @@ # These modules are loaded by the system if any OmniPath Architecture device # is installed # Infiniband over IP netdevice -ib_ipoib +#ib_ipoib # Access to fabric management SMPs and GMPs from userspace. -ib_umad +#ib_umad # Omnipath Ethernet Virtual NIC netdevice opa_vnic diff --git kernel-boot/modules/rdma.conf kernel-boot/modules/rdma.conf index 2d342dd82f7d..0ebe3b786b28 100644 --- kernel-boot/modules/rdma.conf +++ kernel-boot/modules/rdma.conf @@ -1,6 +1,6 @@ # These modules are loaded by the system if any RDMA devices is installed # iSCSI over RDMA client support -ib_iser +#ib_iser # iSCSI over RDMA target support # ib_isert