|
|
aefe19 |
From 12fe6c7cdd768f87ce6e903a2bbfb0c0591585c5 Mon Sep 17 00:00:00 2001
|
|
|
aefe19 |
From: Kazuhito Hagio <k-hagio-ab@nec.com>
|
|
|
aefe19 |
Date: Fri, 10 Jun 2022 11:49:47 +0900
|
|
|
aefe19 |
Subject: [PATCH 15/18] sbitmapq: Fix for sbitmap_queue without
|
|
|
aefe19 |
min_shallow_depth member
|
|
|
aefe19 |
|
|
|
aefe19 |
The sbitmap_queue.min_shallow_depth member was added by kernel commit
|
|
|
aefe19 |
a327553965de ("sbitmap: fix missed wakeups caused by sbitmap_queue_get_shallow()")
|
|
|
aefe19 |
at Linux 4.18. Without the patch, on earlier kernels the "sbitmapq"
|
|
|
aefe19 |
command fails with the following error:
|
|
|
aefe19 |
|
|
|
aefe19 |
crash> sbitmapq ffff89bb7638ee50
|
|
|
aefe19 |
|
|
|
aefe19 |
sbitmapq: invalid structure member offset: sbitmap_queue_min_shallow_depth
|
|
|
aefe19 |
FILE: sbitmap.c LINE: 398 FUNCTION: sbitmap_queue_context_load()
|
|
|
aefe19 |
|
|
|
aefe19 |
Signed-off-by: Kazuhito Hagio <k-hagio-ab@nec.com>
|
|
|
aefe19 |
Signed-off-by: Lianbo Jiang <lijiang@redhat.com>
|
|
|
aefe19 |
---
|
|
|
aefe19 |
sbitmap.c | 6 ++++--
|
|
|
aefe19 |
1 file changed, 4 insertions(+), 2 deletions(-)
|
|
|
aefe19 |
|
|
|
aefe19 |
diff --git a/sbitmap.c b/sbitmap.c
|
|
|
aefe19 |
index c9f7209f9e3e..bb2f19e6207b 100644
|
|
|
aefe19 |
--- a/sbitmap.c
|
|
|
aefe19 |
+++ b/sbitmap.c
|
|
|
aefe19 |
@@ -371,7 +371,8 @@ static void sbitmap_queue_show(const struct sbitmap_queue_context *sqc,
|
|
|
aefe19 |
else if (VALID_MEMBER(sbitmap_round_robin)) /* 5.13 and later */
|
|
|
aefe19 |
fprintf(fp, "round_robin = %d\n", sc->round_robin);
|
|
|
aefe19 |
|
|
|
aefe19 |
- fprintf(fp, "min_shallow_depth = %u\n", sqc->min_shallow_depth);
|
|
|
aefe19 |
+ if (VALID_MEMBER(sbitmap_queue_min_shallow_depth)) /* 4.18 and later */
|
|
|
aefe19 |
+ fprintf(fp, "min_shallow_depth = %u\n", sqc->min_shallow_depth);
|
|
|
aefe19 |
}
|
|
|
aefe19 |
|
|
|
aefe19 |
static void sbitmap_queue_context_load(ulong addr, struct sbitmap_queue_context *sqc)
|
|
|
aefe19 |
@@ -395,7 +396,8 @@ static void sbitmap_queue_context_load(ulong addr, struct sbitmap_queue_context
|
|
|
aefe19 |
sqc->ws_active = INT(sbitmap_queue_buf + OFFSET(sbitmap_queue_ws_active));
|
|
|
aefe19 |
if (VALID_MEMBER(sbitmap_queue_round_robin))
|
|
|
aefe19 |
sqc->round_robin = BOOL(sbitmap_queue_buf + OFFSET(sbitmap_queue_round_robin));
|
|
|
aefe19 |
- sqc->min_shallow_depth = UINT(sbitmap_queue_buf + OFFSET(sbitmap_queue_min_shallow_depth));
|
|
|
aefe19 |
+ if (VALID_MEMBER(sbitmap_queue_min_shallow_depth))
|
|
|
aefe19 |
+ sqc->min_shallow_depth = UINT(sbitmap_queue_buf + OFFSET(sbitmap_queue_min_shallow_depth));
|
|
|
aefe19 |
|
|
|
aefe19 |
FREEBUF(sbitmap_queue_buf);
|
|
|
aefe19 |
}
|
|
|
aefe19 |
--
|
|
|
aefe19 |
2.30.2
|
|
|
aefe19 |
|