Silvan Calarco
1475c2c6cb
added patches up to kernel 6.4 patch to ignore cc mismatch [release 390.157-1mamba;Thu Jul 27 2023]
34 lines
1.1 KiB
Diff
34 lines
1.1 KiB
Diff
diff --git a/kernel/common/inc/nv-linux.h b/kernel/common/inc/nv-linux.h
|
|
index 10fc418..22ef968 100644
|
|
--- a/kernel/common/inc/nv-linux.h
|
|
+++ b/kernel/common/inc/nv-linux.h
|
|
@@ -174,7 +174,11 @@ static inline uid_t __kuid_val(kuid_t uid)
|
|
|
|
#if defined(NV_VM_INSERT_PAGE_PRESENT)
|
|
#include <linux/pagemap.h>
|
|
+#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 16, 0)
|
|
#include <linux/dma-mapping.h>
|
|
+#else
|
|
+#include <linux/dma-direct.h>
|
|
+#endif
|
|
|
|
#if defined(NV_LINUX_DMA_MAP_OPS_H_PRESENT)
|
|
#include <linux/dma-map-ops.h>
|
|
diff --git a/kernel/conftest.sh b/kernel/conftest.sh
|
|
index b23dbb4..42dc576 100755
|
|
--- a/kernel/conftest.sh
|
|
+++ b/kernel/conftest.sh
|
|
@@ -2056,7 +2056,12 @@ compile_test() {
|
|
# Determine if the phys_to_dma function is present.
|
|
#
|
|
CODE="
|
|
+ #include <linux/version.h>
|
|
+#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 16, 0)
|
|
#include <linux/dma-mapping.h>
|
|
+#else
|
|
+ #include <linux/dma-direct.h>
|
|
+#endif
|
|
void conftest_phys_to_dma(void) {
|
|
phys_to_dma();
|
|
}"
|