Blame SOURCES/0006-memory-Handle-struct-slab-changes-on-Linux-5.17-rc1-.patch

604236
From a392b27653e4e75460753522af0f006006b4dc4e Mon Sep 17 00:00:00 2001
604236
From: Alexander Egorenkov <egorenar@linux.ibm.com>
604236
Date: Mon, 6 Dec 2021 16:04:19 +0100
604236
Subject: [PATCH 06/11] memory: Handle struct slab changes on Linux 5.17-rc1
604236
 and later
604236
604236
Since kernel commit d122019bf061 ("mm: Split slab into its own type"),
604236
the struct slab is used for both SLAB and SLUB. Therefore, don't depend
604236
on the non-presence of the struct slab to decide whether SLAB implementation
604236
should be chosen and use the member variable "cpu_slab" of the struct
604236
kmem_cache instead, it should be present only in SLUB.
604236
604236
Without the patch, crash fails to start with the error message:
604236
604236
  crash: invalid structure member offset: kmem_cache_s_num
604236
             FILE: memory.c  LINE: 9619  FUNCTION: kmem_cache_init()
604236
604236
Signed-off-by: Alexander Egorenkov <egorenar@linux.ibm.com>
604236
Signed-off-by: Lianbo Jiang <lijiang@redhat.com>
604236
---
604236
 memory.c | 3 ++-
604236
 1 file changed, 2 insertions(+), 1 deletion(-)
604236
604236
diff --git a/memory.c b/memory.c
604236
index 86c02c132890..5af45fd7d834 100644
604236
--- a/memory.c
604236
+++ b/memory.c
604236
@@ -576,7 +576,8 @@ vm_init(void)
604236
 		STRUCT_SIZE_INIT(cpucache_s, "cpucache_s");
604236
 
604236
         } else if (!VALID_STRUCT(kmem_slab_s) && 
604236
-		   !VALID_STRUCT(slab_s) && 
604236
+		   !VALID_STRUCT(slab_s) &&
604236
+		   !MEMBER_EXISTS("kmem_cache", "cpu_slab") &&
604236
 		   (VALID_STRUCT(slab) || (vt->flags & SLAB_OVERLOAD_PAGE))) {
604236
                 vt->flags |= PERCPU_KMALLOC_V2;
604236
 
604236
-- 
604236
2.20.1
604236