Blame SOURCES/0004-sbitmapq-fix-invalid-offset-for-sbitmap_queue_round_.patch

d67611
From 530fe6ad7e4d7ff6254596c1219d25ed929e3867 Mon Sep 17 00:00:00 2001
d67611
From: Lianbo Jiang <lijiang@redhat.com>
d67611
Date: Mon, 23 May 2022 18:04:15 +0800
d67611
Subject: [PATCH 04/18] sbitmapq: fix invalid offset for
d67611
 "sbitmap_queue_round_robin" on Linux v5.13-rc1
d67611
d67611
Kernel commit efe1f3a1d583 ("scsi: sbitmap: Maintain allocation
d67611
round_robin in sbitmap") moved the round_robin member from struct
d67611
sbitmap_queue to struct sbitmap.  Without the patch, the sbitmapq
d67611
will fail:
d67611
d67611
  crash> sbitmapq 0xffff8e99d0dc8010
d67611
d67611
  sbitmapq: invalid structure member offset: sbitmap_queue_round_robin
d67611
          FILE: sbitmap.c  LINE: 378  FUNCTION: sbitmap_queue_context_load()
d67611
d67611
Signed-off-by: Lianbo Jiang <lijiang@redhat.com>
d67611
---
d67611
 defs.h    |  2 ++
d67611
 sbitmap.c | 12 ++++++++++--
d67611
 symbols.c |  2 ++
d67611
 3 files changed, 14 insertions(+), 2 deletions(-)
d67611
d67611
diff --git a/defs.h b/defs.h
d67611
index 0aeb98c4f654..ecbced24d2e3 100644
d67611
--- a/defs.h
d67611
+++ b/defs.h
d67611
@@ -2169,6 +2169,7 @@ struct offset_table {                    /* stash of commonly-used offsets */
d67611
 	long sbq_wait_state_wait_cnt;
d67611
 	long sbq_wait_state_wait;
d67611
 	long sbitmap_alloc_hint;
d67611
+	long sbitmap_round_robin;
d67611
 };
d67611
 
d67611
 struct size_table {         /* stash of commonly-used sizes */
d67611
@@ -5909,6 +5910,7 @@ struct sbitmap_context {
d67611
 	unsigned map_nr;
d67611
 	ulong map_addr;
d67611
 	ulong alloc_hint;
d67611
+	bool round_robin;
d67611
 };
d67611
 
d67611
 typedef bool (*sbitmap_for_each_fn)(unsigned int idx, void *p);
d67611
diff --git a/sbitmap.c b/sbitmap.c
d67611
index 2921d5447c65..7b318b533702 100644
d67611
--- a/sbitmap.c
d67611
+++ b/sbitmap.c
d67611
@@ -352,7 +352,11 @@ static void sbitmap_queue_show(const struct sbitmap_queue_context *sqc,
d67611
 
d67611
 	FREEBUF(sbq_wait_state_buf);
d67611
 
d67611
-	fprintf(fp, "round_robin = %d\n", sqc->round_robin);
d67611
+	if (VALID_MEMBER(sbitmap_queue_round_robin))
d67611
+		fprintf(fp, "round_robin = %d\n", sqc->round_robin);
d67611
+	else if (VALID_MEMBER(sbitmap_round_robin)) /* 5.13 and later */
d67611
+		fprintf(fp, "round_robin = %d\n", sc->round_robin);
d67611
+
d67611
 	fprintf(fp, "min_shallow_depth = %u\n", sqc->min_shallow_depth);
d67611
 }
d67611
 
d67611
@@ -374,7 +378,8 @@ static void sbitmap_queue_context_load(ulong addr, struct sbitmap_queue_context
d67611
 	sqc->wake_index = INT(sbitmap_queue_buf + OFFSET(sbitmap_queue_wake_index));
d67611
 	sqc->ws_addr = ULONG(sbitmap_queue_buf + OFFSET(sbitmap_queue_ws));
d67611
 	sqc->ws_active = INT(sbitmap_queue_buf + OFFSET(sbitmap_queue_ws_active));
d67611
-	sqc->round_robin = BOOL(sbitmap_queue_buf + OFFSET(sbitmap_queue_round_robin));
d67611
+	if (VALID_MEMBER(sbitmap_queue_round_robin))
d67611
+		sqc->round_robin = BOOL(sbitmap_queue_buf + OFFSET(sbitmap_queue_round_robin));
d67611
 	sqc->min_shallow_depth = UINT(sbitmap_queue_buf + OFFSET(sbitmap_queue_min_shallow_depth));
d67611
 
d67611
 	FREEBUF(sbitmap_queue_buf);
d67611
@@ -396,6 +401,8 @@ void sbitmap_context_load(ulong addr, struct sbitmap_context *sc)
d67611
 	sc->map_addr = ULONG(sbitmap_buf + OFFSET(sbitmap_map));
d67611
 	if (VALID_MEMBER(sbitmap_alloc_hint))
d67611
 		sc->alloc_hint = ULONG(sbitmap_buf + OFFSET(sbitmap_alloc_hint));
d67611
+	if (VALID_MEMBER(sbitmap_round_robin))
d67611
+		sc->round_robin = BOOL(sbitmap_buf + OFFSET(sbitmap_round_robin));
d67611
 
d67611
 	FREEBUF(sbitmap_buf);
d67611
 }
d67611
@@ -522,6 +529,7 @@ void sbitmapq_init(void)
d67611
 	MEMBER_OFFSET_INIT(sbitmap_map_nr, "sbitmap", "map_nr");
d67611
 	MEMBER_OFFSET_INIT(sbitmap_map, "sbitmap", "map");
d67611
 	MEMBER_OFFSET_INIT(sbitmap_alloc_hint, "sbitmap", "alloc_hint");
d67611
+	MEMBER_OFFSET_INIT(sbitmap_round_robin, "sbitmap", "round_robin");
d67611
 
d67611
 	MEMBER_OFFSET_INIT(sbitmap_queue_sb, "sbitmap_queue", "sb");
d67611
 	MEMBER_OFFSET_INIT(sbitmap_queue_alloc_hint, "sbitmap_queue", "alloc_hint");
d67611
diff --git a/symbols.c b/symbols.c
d67611
index fd0eb06899f0..5d12a021c769 100644
d67611
--- a/symbols.c
d67611
+++ b/symbols.c
d67611
@@ -10710,6 +10710,8 @@ dump_offset_table(char *spec, ulong makestruct)
d67611
 		OFFSET(sbitmap_map));
d67611
 	fprintf(fp, "            sbitmap_alloc_hint: %ld\n",
d67611
 		OFFSET(sbitmap_alloc_hint));
d67611
+	fprintf(fp, "           sbitmap_round_robin: %ld\n",
d67611
+		OFFSET(sbitmap_round_robin));
d67611
 	fprintf(fp, "              sbitmap_queue_sb: %ld\n",
d67611
 		OFFSET(sbitmap_queue_sb));
d67611
 	fprintf(fp, "      sbitmap_queue_alloc_hint: %ld\n",
d67611
-- 
d67611
2.30.2
d67611