Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package nvidia-open-driver-G06-signed for
openSUSE:Factory checked in at 2026-02-06 21:30:16
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/nvidia-open-driver-G06-signed (Old)
and /work/SRC/openSUSE:Factory/.nvidia-open-driver-G06-signed.new.1670
(New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "nvidia-open-driver-G06-signed"
Fri Feb 6 21:30:16 2026 rev:87 rq:1331424 version:580.126.09
Changes:
--------
---
/work/SRC/openSUSE:Factory/nvidia-open-driver-G06-signed/nvidia-open-driver-G06-signed.changes
2026-01-28 15:06:55.545451467 +0100
+++
/work/SRC/openSUSE:Factory/.nvidia-open-driver-G06-signed.new.1670/nvidia-open-driver-G06-signed.changes
2026-02-06 21:31:03.552008004 +0100
@@ -1,0 +2,6 @@
+Thu Jan 29 09:44:34 UTC 2026 - Stefan Dirsch <[email protected]>
+
+- apply kernel-5.14.patch also on sle15-sp5 in order to fix build
+ and adjusted it to sle15-sp5 kernel
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ nvidia-open-driver-G06-signed.spec ++++++
--- /var/tmp/diff_new_pack.fyeCSR/_old 2026-02-06 21:31:04.384042913 +0100
+++ /var/tmp/diff_new_pack.fyeCSR/_new 2026-02-06 21:31:04.388043081 +0100
@@ -101,7 +101,7 @@
Source15: kmp-trigger.sh
Source17: kmp-post.sh
Source18: Check4WrongSupplements.sh
-%if 0%{?sle_version} < 150500
+%if 0%{?sle_version} < 150600
Patch0: kernel-5.14.patch
%endif
BuildRequires: %{kernel_module_package_buildreqs}
++++++ kernel-5.14.patch ++++++
--- /var/tmp/diff_new_pack.fyeCSR/_old 2026-02-06 21:31:04.520048619 +0100
+++ /var/tmp/diff_new_pack.fyeCSR/_new 2026-02-06 21:31:04.528048955 +0100
@@ -1,6 +1,21 @@
----
open-gpu-kernel-modules-580.126.09/kernel-open/nvidia-uvm/uvm_pmm_gpu.c.orig
2026-01-13 19:18:18.022084000 +0100
-+++ open-gpu-kernel-modules-580.126.09/kernel-open/nvidia-uvm/uvm_pmm_gpu.c
2026-01-13 19:30:36.214892000 +0100
-@@ -3282,11 +3282,13 @@ static void device_p2p_page_free(struct
+Index: open-gpu-kernel-modules-580.126.09/kernel-open/nvidia-uvm/uvm_pmm_gpu.c
+===================================================================
+---
open-gpu-kernel-modules-580.126.09.orig/kernel-open/nvidia-uvm/uvm_pmm_gpu.c
++++ open-gpu-kernel-modules-580.126.09/kernel-open/nvidia-uvm/uvm_pmm_gpu.c
+@@ -3159,10 +3159,12 @@ static void devmem_page_free(struct page
+
&gpu->pmm.root_chunks.va_block_lazy_free_q_item);
+ }
+
++#if defined(NV_PAGEMAP_OPS_HAS_FOLIO_FREE)
+ static void devmem_folio_free(struct folio *folio)
+ {
+ devmem_page_free(&folio->page);
+ }
++#endif
+
+ // This is called by HMM when the CPU faults on a ZONE_DEVICE private entry.
+ static vm_fault_t devmem_fault(struct vm_fault *vmf)
+@@ -3282,11 +3284,13 @@ static void device_p2p_page_free(struct
nv_kref_put(&p2p_mem->refcount, device_p2p_page_free_wake);
}
@@ -14,4 +29,17 @@
#if UVM_CDMM_PAGES_SUPPORTED()
static void device_coherent_page_free(struct page *page)
+@@ -3294,10 +3298,12 @@ static void device_coherent_page_free(st
+ device_p2p_page_free(page);
+ }
+
++#if defined(NV_PAGEMAP_OPS_HAS_FOLIO_FREE)
+ static void device_coherent_folio_free(struct folio *folio)
+ {
+ device_p2p_page_free(&folio->page);
+ }
++#endif
+
+ static const struct dev_pagemap_ops uvm_device_coherent_pgmap_ops =
+ {