lantiq: ltq-vdsl: add kernel 5.10 compatiblity
authorMathias Kresin <dev@kresin.me>
Sun, 27 Dec 2020 20:03:14 +0000 (21:03 +0100)
committerMathias Kresin <dev@kresin.me>
Mon, 12 Apr 2021 21:23:09 +0000 (23:23 +0200)
The pgprot argument to __vmalloc is always PAGE_KERNEL now and was
removed.

Signed-off-by: Mathias Kresin <dev@kresin.me>
package/kernel/lantiq/ltq-vdsl/patches/100-compat.patch

index 28d1da7c33fdca238d5d86b3c584a6b808be363e..edacd5f6b86841a6419f8e1a9605948ce9a21a99 100644 (file)
  #endif
  
     if (pINode == DSL_NULL)
-@@ -917,12 +911,19 @@ DSL_int32_t DSL_DRV_ThreadShutdown(
+@@ -491,7 +485,11 @@ DSL_void_t* DSL_DRV_VMalloc(
+    DSL_DRV_size_t    nSize)
+ {
+    /* VRX500-BU: Better to use vmalloc or vzmalloc here?! */
++#if LINUX_VERSION_CODE < KERNEL_VERSION(5,9,0)
+    return __vmalloc((unsigned long)nSize, GFP_KERNEL, PAGE_KERNEL);
++#else
++   return __vmalloc((unsigned long)nSize, GFP_KERNEL);
++#endif
+    /*   return vmalloc(nSize);*/
+ }
+@@ -917,12 +915,19 @@ DSL_int32_t DSL_DRV_ThreadShutdown(
  
  DSL_uint32_t DSL_DRV_SysTimeGet(DSL_uint32_t nOffset)
  {
@@ -56,7 +68,7 @@
  
     if ( (nOffset == 0) || (nOffset > nTime) )
     {
-@@ -1203,6 +1204,9 @@ static void DSL_DRV_NlSendMsg(DSL_char_t
+@@ -1203,6 +1208,9 @@ static void DSL_DRV_NlSendMsg(DSL_char_t
  }
  #endif
  
@@ -66,7 +78,7 @@
  /* Entry point of driver */
  int __init DSL_ModuleInit(void)
  {
-@@ -1241,6 +1245,10 @@ int __init DSL_ModuleInit(void)
+@@ -1241,6 +1249,10 @@ int __init DSL_ModuleInit(void)
  
     DSL_DRV_DevNodeInit();
  
@@ -77,7 +89,7 @@
     return 0;
  }
  
-@@ -1248,6 +1256,11 @@ void __exit DSL_ModuleCleanup(void)
+@@ -1248,6 +1260,11 @@ void __exit DSL_ModuleCleanup(void)
  {
     printk("Module will be unloaded"DSL_DRV_CRLF);