diff --git a/.crash.metadata b/.crash.metadata
index c9c8191..6b9eecf 100644
--- a/.crash.metadata
+++ b/.crash.metadata
@@ -1,2 +1,2 @@
-c5511a10f2be0d44a74d7d832663a5567befad3f SOURCES/crash-8.0.1.tar.gz
+50fe939615cc034273e255e4903edec17dc6ee68 SOURCES/crash-8.0.2.tar.gz
 6bf5ee7877a4740835745ed97ce525a00bb2232c SOURCES/gdb-10.2.tar.gz
diff --git a/.gitignore b/.gitignore
index f9673d2..c4a230f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,2 @@
-SOURCES/crash-8.0.1.tar.gz
+SOURCES/crash-8.0.2.tar.gz
 SOURCES/gdb-10.2.tar.gz
diff --git a/SOURCES/0001-gdb-Fix-an-assertion-failure-in-the-gdb-s-copy_type.patch b/SOURCES/0001-gdb-Fix-an-assertion-failure-in-the-gdb-s-copy_type.patch
new file mode 100644
index 0000000..a227f44
--- /dev/null
+++ b/SOURCES/0001-gdb-Fix-an-assertion-failure-in-the-gdb-s-copy_type.patch
@@ -0,0 +1,75 @@
+From d941266da5fb9c386128a180f39281ec9d4aa242 Mon Sep 17 00:00:00 2001
+From: Lianbo Jiang <lijiang@redhat.com>
+Date: Mon, 20 Feb 2023 15:57:04 +0800
+Subject: [PATCH] gdb: Fix an assertion failure in the gdb's copy_type()
+
+This is a backported patch from gdb. Without the patch, the following
+crash command may abort due to an assertion failure in the gdb's
+copy_type():
+
+  crash> px __per_cpu_start:0
+  gdbtypes.c:5505: internal-error: type* copy_type(const type*): Assertion `TYPE_OBJFILE_OWNED (type)' failed.
+  A problem internal to GDB has been detected,
+  further debugging may prove unreliable.
+  Quit this debugging session? (y or n)
+
+The gdb commit 8e2da1651879 ("Fix assertion failure in copy_type")
+solved the current issue.
+
+Reported-by: Buland Kumar Singh <bsingh@redhat.com>
+Signed-off-by: Lianbo Jiang <lijiang@redhat.com>
+---
+ gdb-10.2.patch | 40 ++++++++++++++++++++++++++++++++++++++++
+ 1 file changed, 40 insertions(+)
+
+diff --git a/gdb-10.2.patch b/gdb-10.2.patch
+index 91edfb338445..8c3b5a7fdf77 100644
+--- a/gdb-10.2.patch
++++ b/gdb-10.2.patch
+@@ -1737,3 +1737,43 @@ exit 0
+          struct field *nextfield;
+          short nfields;
+          struct type *typedef_type, *target_type;
++--- gdb-10.2/gdb/gdbtypes.c.orig
+++++ gdb-10.2/gdb/gdbtypes.c
++@@ -5492,27 +5492,25 @@ copy_type_recursive (struct objfile *objfile,
++ }
++ 
++ /* Make a copy of the given TYPE, except that the pointer & reference
++-   types are not preserved.
++-   
++-   This function assumes that the given type has an associated objfile.
++-   This objfile is used to allocate the new type.  */
+++   types are not preserved. */
++ 
++ struct type *
++ copy_type (const struct type *type)
++ {
++-  struct type *new_type;
++-
++-  gdb_assert (TYPE_OBJFILE_OWNED (type));
+++  struct type *new_type = alloc_type_copy (type);
++ 
++-  new_type = alloc_type_copy (type);
++   TYPE_INSTANCE_FLAGS (new_type) = TYPE_INSTANCE_FLAGS (type);
++   TYPE_LENGTH (new_type) = TYPE_LENGTH (type);
++   memcpy (TYPE_MAIN_TYPE (new_type), TYPE_MAIN_TYPE (type),
++ 	  sizeof (struct main_type));
++   if (type->main_type->dyn_prop_list != NULL)
++-    new_type->main_type->dyn_prop_list
++-      = copy_dynamic_prop_list (&TYPE_OBJFILE (type) -> objfile_obstack,
++-				type->main_type->dyn_prop_list);
+++    {
+++      struct obstack *storage = (TYPE_OBJFILE_OWNED (type)
+++                                ? &TYPE_OBJFILE (type)->objfile_obstack
+++                                : gdbarch_obstack (TYPE_OWNER (type).gdbarch));
+++      new_type->main_type->dyn_prop_list
+++       = copy_dynamic_prop_list (storage, type->main_type->dyn_prop_list);
+++    }
++ 
++   return new_type;
++ }
++
+-- 
+2.37.1
+
diff --git a/SOURCES/0001-ppc64-update-the-NR_CPUS-to-8192.patch b/SOURCES/0001-ppc64-update-the-NR_CPUS-to-8192.patch
deleted file mode 100644
index f90cc10..0000000
--- a/SOURCES/0001-ppc64-update-the-NR_CPUS-to-8192.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From ae52398a13fa9a238279114ed671c7c514c154ee Mon Sep 17 00:00:00 2001
-From: Sourabh Jain <sourabhjain@linux.ibm.com>
-Date: Mon, 9 May 2022 12:49:56 +0530
-Subject: [PATCH] ppc64: update the NR_CPUS to 8192
-
-Since the kernel commit 2d8ae638bb86 ("powerpc: Make the NR_CPUS max 8192")
-the NR_CPUS on Linux kernel ranges from 1-8192. So let's match NR_CPUS with
-the max NR_CPUS count on the Linux kernel.
-
-Signed-off-by: Sourabh Jain <sourabhjain@linux.ibm.com>
----
- defs.h | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/defs.h b/defs.h
-index 1e8360d65a3b..a6735d07b32f 100644
---- a/defs.h
-+++ b/defs.h
-@@ -136,7 +136,7 @@
- #define NR_CPUS  (4096)
- #endif
- #ifdef PPC64
--#define NR_CPUS  (2048)
-+#define NR_CPUS  (8192)
- #endif
- #ifdef S390
- #define NR_CPUS  (512)
--- 
-2.30.2
-
diff --git a/SOURCES/0001-sbitmapq-remove-struct-and-member-validation-in-sbit.patch b/SOURCES/0001-sbitmapq-remove-struct-and-member-validation-in-sbit.patch
deleted file mode 100644
index ffca545..0000000
--- a/SOURCES/0001-sbitmapq-remove-struct-and-member-validation-in-sbit.patch
+++ /dev/null
@@ -1,62 +0,0 @@
-From 364b2e413c69daf189d2bc0238e3ba9b0dcbd937 Mon Sep 17 00:00:00 2001
-From: Lianbo Jiang <lijiang@redhat.com>
-Date: Mon, 23 May 2022 18:04:13 +0800
-Subject: [PATCH 01/15] sbitmapq: remove struct and member validation in
- sbitmapq_init()
-
-Let's remove the struct and member validation from sbitmapq_init(), which
-will help the crash to display the actual error when the sbitmapq fails.
-
-Without the patch:
-  crash> sbitmapq ffff8e99d0dc8010
-  sbitmapq: command not supported or applicable on this architecture or kernel
-
-With the patch:
-  crash> sbitmapq ffff8e99d0dc8010
-
-  sbitmapq: invalid structure member offset: sbitmap_queue_alloc_hint
-          FILE: sbitmap.c  LINE: 365  FUNCTION: sbitmap_queue_context_load()
-
-Signed-off-by: Lianbo Jiang <lijiang@redhat.com>
----
- sbitmap.c | 24 ------------------------
- 1 file changed, 24 deletions(-)
-
-diff --git a/sbitmap.c b/sbitmap.c
-index 96a61e6c2c71..7693eef6cebd 100644
---- a/sbitmap.c
-+++ b/sbitmap.c
-@@ -525,30 +525,6 @@ void sbitmapq_init(void)
- 	MEMBER_OFFSET_INIT(sbq_wait_state_wait_cnt, "sbq_wait_state", "wait_cnt");
- 	MEMBER_OFFSET_INIT(sbq_wait_state_wait, "sbq_wait_state", "wait");
- 
--	if (!VALID_SIZE(sbitmap_word) ||
--			!VALID_SIZE(sbitmap) ||
--			!VALID_SIZE(sbitmap_queue) ||
--			!VALID_SIZE(sbq_wait_state) ||
--			INVALID_MEMBER(sbitmap_word_depth) ||
--			INVALID_MEMBER(sbitmap_word_word) ||
--			INVALID_MEMBER(sbitmap_word_cleared) ||
--			INVALID_MEMBER(sbitmap_depth) ||
--			INVALID_MEMBER(sbitmap_shift) ||
--			INVALID_MEMBER(sbitmap_map_nr) ||
--			INVALID_MEMBER(sbitmap_map) ||
--			INVALID_MEMBER(sbitmap_queue_sb) ||
--			INVALID_MEMBER(sbitmap_queue_alloc_hint) ||
--			INVALID_MEMBER(sbitmap_queue_wake_batch) ||
--			INVALID_MEMBER(sbitmap_queue_wake_index) ||
--			INVALID_MEMBER(sbitmap_queue_ws) ||
--			INVALID_MEMBER(sbitmap_queue_ws_active) ||
--			INVALID_MEMBER(sbitmap_queue_round_robin) ||
--			INVALID_MEMBER(sbitmap_queue_min_shallow_depth) ||
--			INVALID_MEMBER(sbq_wait_state_wait_cnt) ||
--			INVALID_MEMBER(sbq_wait_state_wait)) {
--		command_not_supported();
--	}
--
- 	sb_flags |= SB_FLAG_INIT;
- }
- 
--- 
-2.30.2
-
diff --git a/SOURCES/0002-Fix-for-bt-command-printing-bogus-exception-frame-wa.patch b/SOURCES/0002-Fix-for-bt-command-printing-bogus-exception-frame-wa.patch
new file mode 100644
index 0000000..c8bac89
--- /dev/null
+++ b/SOURCES/0002-Fix-for-bt-command-printing-bogus-exception-frame-wa.patch
@@ -0,0 +1,79 @@
+From 92de7c34b1f910abff4d77522f74454ea0263a90 Mon Sep 17 00:00:00 2001
+From: Lianbo Jiang <lijiang@redhat.com>
+Date: Mon, 13 Feb 2023 11:12:12 +0800
+Subject: [PATCH] Fix for "bt" command printing "bogus exception frame" warning
+
+Currently, the "bt" command may print a bogus exception frame
+and the remaining frame will be truncated on x86_64 when using the
+"virsh send-key <kvm guest> KEY_LEFTALT KEY_SYSRQ KEY_C" command
+to trigger a panic from the KVM host. For example:
+
+  crash> bt
+  PID: 0        TASK: ffff9e7a47e32f00  CPU: 3    COMMAND: "swapper/3"
+   #0 [ffffba7900118bb8] machine_kexec at ffffffff87e5c2c7
+   #1 [ffffba7900118c08] __crash_kexec at ffffffff87f9500d
+   #2 [ffffba7900118cd0] panic at ffffffff87edfff9
+   #3 [ffffba7900118d50] sysrq_handle_crash at ffffffff883ce2c1
+   ...
+   #16 [ffffba7900118fd8] handle_edge_irq at ffffffff87f559f2
+   #17 [ffffba7900118ff0] asm_call_on_stack at ffffffff88800fa2
+   --- <IRQ stack> ---
+   #18 [ffffba790008bda0] asm_call_on_stack at ffffffff88800fa2
+       RIP: ffffffffffffffff  RSP: 0000000000000124  RFLAGS: 00000003
+       RAX: 0000000000000000  RBX: 0000000000000001  RCX: 0000000000000000
+       RDX: ffffffff88800c1e  RSI: 0000000000000000  RDI: 0000000000000000
+       RBP: 0000000000000001   R8: 0000000000000000   R9: 0000000000000000
+       R10: 0000000000000000  R11: ffffffff88760555  R12: ffffba790008be08
+       R13: ffffffff87f18002  R14: ffff9e7a47e32f00  R15: ffff9e7bb6198e00
+       ORIG_RAX: 0000000000000000  CS: 0003  SS: 0000
+  bt: WARNING: possibly bogus exception frame
+  crash>
+
+The following related kernel commits cause the current issue, crash
+needs to adjust the value of irq_eframe_link.
+
+Related kernel commits:
+[1] v5.8: 931b94145981 ("x86/entry: Provide helpers for executing on the irqstack")
+[2] v5.8: fa5e5c409213 ("x86/entry: Use idtentry for interrupts")
+[3] v5.12: 52d743f3b712 ("x86/softirq: Remove indirection in do_softirq_own_stack()")
+
+Signed-off-by: Lianbo Jiang <lijiang@redhat.com>
+Signed-off-by: Kazuhito Hagio <k-hagio-ab@nec.com>
+---
+ x86_64.c | 13 +++++++++++++
+ 1 file changed, 13 insertions(+)
+
+diff --git a/x86_64.c b/x86_64.c
+index 7a5d6f050c89..5b671bd97775 100644
+--- a/x86_64.c
++++ b/x86_64.c
+@@ -3938,6 +3938,11 @@ in_exception_stack:
+         if (irq_eframe) {
+                 bt->flags |= BT_EXCEPTION_FRAME;
+                 i = (irq_eframe - bt->stackbase)/sizeof(ulong);
++                if (symbol_exists("asm_common_interrupt")) {
++			i -= 1;
++			up = (ulong *)(&bt->stackbuf[i*sizeof(ulong)]);
++			bt->instptr = *up;
++                }
+                 x86_64_print_stack_entry(bt, ofp, level, i, bt->instptr);
+                 bt->flags &= ~(ulonglong)BT_EXCEPTION_FRAME;
+                 cs = x86_64_exception_frame(EFRAME_PRINT|EFRAME_CS, 0, 
+@@ -6521,6 +6526,14 @@ x86_64_irq_eframe_link_init(void)
+ 	else
+ 		return; 
+ 
++	if (symbol_exists("asm_common_interrupt")) {
++		if (symbol_exists("asm_call_on_stack"))
++			machdep->machspec->irq_eframe_link = -64;
++		else
++			machdep->machspec->irq_eframe_link = -32;
++		return;
++	}
++
+ 	if (THIS_KERNEL_VERSION < LINUX(2,6,9)) 
+ 		return;
+ 
+-- 
+2.37.1
+
diff --git a/SOURCES/0002-sbitmapq-fix-invalid-offset-for-sbitmap_queue_alloc_.patch b/SOURCES/0002-sbitmapq-fix-invalid-offset-for-sbitmap_queue_alloc_.patch
deleted file mode 100644
index 6ee686b..0000000
--- a/SOURCES/0002-sbitmapq-fix-invalid-offset-for-sbitmap_queue_alloc_.patch
+++ /dev/null
@@ -1,118 +0,0 @@
-From a295cb40cd5d24fb5995cc78d29c5def3843d285 Mon Sep 17 00:00:00 2001
-From: Lianbo Jiang <lijiang@redhat.com>
-Date: Mon, 23 May 2022 18:04:14 +0800
-Subject: [PATCH 02/15] sbitmapq: fix invalid offset for
- "sbitmap_queue_alloc_hint" on Linux v5.13-rc1
-
-Kernel commit c548e62bcf6a ("scsi: sbitmap: Move allocation hint
-into sbitmap") moved the alloc_hint member from struct sbitmap_queue
-to struct sbitmap.  Without the patch, the sbitmapq will fail:
-
-  crash> sbitmapq 0xffff8e99d0dc8010
-
-  sbitmapq: invalid structure member offset: sbitmap_queue_alloc_hint
-          FILE: sbitmap.c  LINE: 365  FUNCTION: sbitmap_queue_context_load()
-
-Signed-off-by: Lianbo Jiang <lijiang@redhat.com>
----
- defs.h    |  2 ++
- sbitmap.c | 14 ++++++++++++--
- symbols.c |  2 ++
- 3 files changed, 16 insertions(+), 2 deletions(-)
-
-diff --git a/defs.h b/defs.h
-index a6735d07b32f..0aeb98c4f654 100644
---- a/defs.h
-+++ b/defs.h
-@@ -2168,6 +2168,7 @@ struct offset_table {                    /* stash of commonly-used offsets */
- 	long sbitmap_queue_min_shallow_depth;
- 	long sbq_wait_state_wait_cnt;
- 	long sbq_wait_state_wait;
-+	long sbitmap_alloc_hint;
- };
- 
- struct size_table {         /* stash of commonly-used sizes */
-@@ -5907,6 +5908,7 @@ struct sbitmap_context {
- 	unsigned shift;
- 	unsigned map_nr;
- 	ulong map_addr;
-+	ulong alloc_hint;
- };
- 
- typedef bool (*sbitmap_for_each_fn)(unsigned int idx, void *p);
-diff --git a/sbitmap.c b/sbitmap.c
-index 7693eef6cebd..2921d5447c65 100644
---- a/sbitmap.c
-+++ b/sbitmap.c
-@@ -285,6 +285,7 @@ void sbitmap_for_each_set(const struct sbitmap_context *sc,
- static void sbitmap_queue_show(const struct sbitmap_queue_context *sqc,
- 		const struct sbitmap_context *sc)
- {
-+	ulong alloc_hint_addr = 0;
- 	int cpus = get_cpus_possible();
- 	int sbq_wait_state_size, wait_cnt_off, wait_off, list_head_off;
- 	char *sbq_wait_state_buf;
-@@ -297,6 +298,11 @@ static void sbitmap_queue_show(const struct sbitmap_queue_context *sqc,
- 	fprintf(fp, "bits_per_word = %u\n", 1U << sc->shift);
- 	fprintf(fp, "map_nr = %u\n", sc->map_nr);
- 
-+	if (VALID_MEMBER(sbitmap_queue_alloc_hint))
-+		alloc_hint_addr = sqc->alloc_hint;
-+	else if (VALID_MEMBER(sbitmap_alloc_hint)) /* 5.13 and later */
-+		alloc_hint_addr = sc->alloc_hint;
-+
- 	fputs("alloc_hint = {", fp);
- 	first = true;
- 	for (i = 0; i < cpus; i++) {
-@@ -307,7 +313,7 @@ static void sbitmap_queue_show(const struct sbitmap_queue_context *sqc,
- 			fprintf(fp, ", ");
- 		first = false;
- 
--		ptr = kt->__per_cpu_offset[i] + sqc->alloc_hint;
-+		ptr = kt->__per_cpu_offset[i] + alloc_hint_addr;
- 		readmem(ptr, KVADDR, &val, sizeof(val), "alloc_hint", FAULT_ON_ERROR);
- 
- 		fprintf(fp, "%u", val);
-@@ -362,7 +368,8 @@ static void sbitmap_queue_context_load(ulong addr, struct sbitmap_queue_context
- 		error(FATAL, "cannot read sbitmap_queue\n");
- 	}
- 
--	sqc->alloc_hint = ULONG(sbitmap_queue_buf + OFFSET(sbitmap_queue_alloc_hint));
-+	if (VALID_MEMBER(sbitmap_queue_alloc_hint))
-+		sqc->alloc_hint = ULONG(sbitmap_queue_buf + OFFSET(sbitmap_queue_alloc_hint));
- 	sqc->wake_batch = UINT(sbitmap_queue_buf + OFFSET(sbitmap_queue_wake_batch));
- 	sqc->wake_index = INT(sbitmap_queue_buf + OFFSET(sbitmap_queue_wake_index));
- 	sqc->ws_addr = ULONG(sbitmap_queue_buf + OFFSET(sbitmap_queue_ws));
-@@ -387,6 +394,8 @@ void sbitmap_context_load(ulong addr, struct sbitmap_context *sc)
- 	sc->shift = UINT(sbitmap_buf + OFFSET(sbitmap_shift));
- 	sc->map_nr = UINT(sbitmap_buf + OFFSET(sbitmap_map_nr));
- 	sc->map_addr = ULONG(sbitmap_buf + OFFSET(sbitmap_map));
-+	if (VALID_MEMBER(sbitmap_alloc_hint))
-+		sc->alloc_hint = ULONG(sbitmap_buf + OFFSET(sbitmap_alloc_hint));
- 
- 	FREEBUF(sbitmap_buf);
- }
-@@ -512,6 +521,7 @@ void sbitmapq_init(void)
- 	MEMBER_OFFSET_INIT(sbitmap_shift, "sbitmap", "shift");
- 	MEMBER_OFFSET_INIT(sbitmap_map_nr, "sbitmap", "map_nr");
- 	MEMBER_OFFSET_INIT(sbitmap_map, "sbitmap", "map");
-+	MEMBER_OFFSET_INIT(sbitmap_alloc_hint, "sbitmap", "alloc_hint");
- 
- 	MEMBER_OFFSET_INIT(sbitmap_queue_sb, "sbitmap_queue", "sb");
- 	MEMBER_OFFSET_INIT(sbitmap_queue_alloc_hint, "sbitmap_queue", "alloc_hint");
-diff --git a/symbols.c b/symbols.c
-index ba5e2741347d..fd0eb06899f0 100644
---- a/symbols.c
-+++ b/symbols.c
-@@ -10708,6 +10708,8 @@ dump_offset_table(char *spec, ulong makestruct)
- 		OFFSET(sbitmap_map_nr));
- 	fprintf(fp, "                   sbitmap_map: %ld\n",
- 		OFFSET(sbitmap_map));
-+	fprintf(fp, "            sbitmap_alloc_hint: %ld\n",
-+		OFFSET(sbitmap_alloc_hint));
- 	fprintf(fp, "              sbitmap_queue_sb: %ld\n",
- 		OFFSET(sbitmap_queue_sb));
- 	fprintf(fp, "      sbitmap_queue_alloc_hint: %ld\n",
--- 
-2.30.2
-
diff --git a/SOURCES/0003-Fix-for-bt-command-unnecessarily-printing-an-excepti.patch b/SOURCES/0003-Fix-for-bt-command-unnecessarily-printing-an-excepti.patch
new file mode 100644
index 0000000..266e3dc
--- /dev/null
+++ b/SOURCES/0003-Fix-for-bt-command-unnecessarily-printing-an-excepti.patch
@@ -0,0 +1,78 @@
+From e0e6e4a7ee03b3d00b50a9e4db2f2ea6f7da0da3 Mon Sep 17 00:00:00 2001
+From: Lianbo Jiang <lijiang@redhat.com>
+Date: Wed, 15 Feb 2023 16:24:57 +0800
+Subject: [PATCH] Fix for "bt" command unnecessarily printing an exception
+ frame
+
+Kernel commit 7d65f4a65532 ("irq: Consolidate do_softirq() arch overriden
+implementations") renamed the call_softirq to do_softirq_own_stack, and
+there is no exception frame also when coming from do_softirq_own_stack.
+Without the patch, crash may unnecessarily output an exception frame with
+a warning as below:
+
+  crash> foreach bt
+  ...
+  PID: 0        TASK: ffff914f820a8000  CPU: 25   COMMAND: "swapper/25"
+   #0 [fffffe0000504e48] crash_nmi_callback at ffffffffa665d763
+   #1 [fffffe0000504e50] nmi_handle at ffffffffa662a423
+   #2 [fffffe0000504ea8] default_do_nmi at ffffffffa6fe7dc9
+   #3 [fffffe0000504ec8] do_nmi at ffffffffa662a97f
+   #4 [fffffe0000504ef0] end_repeat_nmi at ffffffffa70015e8
+      [exception RIP: clone_endio+172]
+      RIP: ffffffffc005c1ec  RSP: ffffa1d403d08e98  RFLAGS: 00000246
+      RAX: 0000000000000000  RBX: ffff915326fba230  RCX: 0000000000000018
+      RDX: ffffffffc0075400  RSI: 0000000000000000  RDI: ffff915326fba230
+      RBP: ffff915326fba1c0   R8: 0000000000001000   R9: ffff915308d6d2a0
+      R10: 000000a97dfe5e10  R11: ffffa1d40038fe98  R12: ffff915302babc40
+      R13: ffff914f94360000  R14: 0000000000000000  R15: 0000000000000000
+      ORIG_RAX: ffffffffffffffff  CS: 0010  SS: 0018
+  --- <NMI exception stack> ---
+   #5 [ffffa1d403d08e98] clone_endio at ffffffffc005c1ec [dm_mod]
+   #6 [ffffa1d403d08ed0] blk_update_request at ffffffffa6a96954
+   #7 [ffffa1d403d08f10] scsi_end_request at ffffffffa6c9b968
+   #8 [ffffa1d403d08f48] scsi_io_completion at ffffffffa6c9bb3e
+   #9 [ffffa1d403d08f90] blk_complete_reqs at ffffffffa6aa0e95
+   #10 [ffffa1d403d08fa0] __softirqentry_text_start at ffffffffa72000dc
+   #11 [ffffa1d403d08ff0] do_softirq_own_stack at ffffffffa7000f9a
+  --- <IRQ stack> ---
+   #12 [ffffa1d40038fe70] do_softirq_own_stack at ffffffffa7000f9a
+      [exception RIP: unknown or invalid address]
+      RIP: 0000000000000000  RSP: 0000000000000000  RFLAGS: 00000000
+      RAX: ffffffffa672eae5  RBX: ffffffffa83b34e0  RCX: ffffffffa672eb12
+      RDX: 0000000000000010  RSI: 8b7d6c8869010c00  RDI: 0000000000000085
+      RBP: 0000000000000286   R8: ffff914f820a8000   R9: ffffffffa67a94e0
+      R10: 0000000000000286  R11: ffffffffa66fb4c5  R12: ffffffffa67a898b
+      R13: 0000000000000000  R14: fffffffffffffff8  R15: ffffffffa67a1e68
+      ORIG_RAX: 0000000000000000  CS: 0000  SS: ffffffffa672edff
+   bt: WARNING: possibly bogus exception frame
+   #13 [ffffa1d40038ff30] start_secondary at ffffffffa665fa2c
+   #14 [ffffa1d40038ff50] secondary_startup_64_no_verify at ffffffffa6600116
+   ...
+
+Reported-by: Marco Patalano <mpatalan@redhat.com>
+Signed-off-by: Lianbo Jiang <lijiang@redhat.com>
+---
+ x86_64.c | 5 +++--
+ 1 file changed, 3 insertions(+), 2 deletions(-)
+
+diff --git a/x86_64.c b/x86_64.c
+index 5b671bd97775..6cac3936b33d 100644
+--- a/x86_64.c
++++ b/x86_64.c
+@@ -3825,10 +3825,11 @@ in_exception_stack:
+ 		up -= 1;
+                 bt->instptr = *up;
+ 		/*
+-		 *  No exception frame when coming from call_softirq.
++		 *  No exception frame when coming from do_softirq_own_stack
++		 *  or call_softirq.
+ 		 */
+ 		if ((sp = value_search(bt->instptr, &offset)) && 
+-		    STREQ(sp->name, "call_softirq"))
++		    (STREQ(sp->name, "do_softirq_own_stack") || STREQ(sp->name, "call_softirq")))
+ 			irq_eframe = 0;
+                 bt->frameptr = 0;
+                 done = FALSE;
+-- 
+2.37.1
+
diff --git a/SOURCES/0003-sbitmapq-fix-invalid-offset-for-sbitmap_queue_round_.patch b/SOURCES/0003-sbitmapq-fix-invalid-offset-for-sbitmap_queue_round_.patch
deleted file mode 100644
index 0079053..0000000
--- a/SOURCES/0003-sbitmapq-fix-invalid-offset-for-sbitmap_queue_round_.patch
+++ /dev/null
@@ -1,103 +0,0 @@
-From 530fe6ad7e4d7ff6254596c1219d25ed929e3867 Mon Sep 17 00:00:00 2001
-From: Lianbo Jiang <lijiang@redhat.com>
-Date: Mon, 23 May 2022 18:04:15 +0800
-Subject: [PATCH 03/15] sbitmapq: fix invalid offset for
- "sbitmap_queue_round_robin" on Linux v5.13-rc1
-
-Kernel commit efe1f3a1d583 ("scsi: sbitmap: Maintain allocation
-round_robin in sbitmap") moved the round_robin member from struct
-sbitmap_queue to struct sbitmap.  Without the patch, the sbitmapq
-will fail:
-
-  crash> sbitmapq 0xffff8e99d0dc8010
-
-  sbitmapq: invalid structure member offset: sbitmap_queue_round_robin
-          FILE: sbitmap.c  LINE: 378  FUNCTION: sbitmap_queue_context_load()
-
-Signed-off-by: Lianbo Jiang <lijiang@redhat.com>
----
- defs.h    |  2 ++
- sbitmap.c | 12 ++++++++++--
- symbols.c |  2 ++
- 3 files changed, 14 insertions(+), 2 deletions(-)
-
-diff --git a/defs.h b/defs.h
-index 0aeb98c4f654..ecbced24d2e3 100644
---- a/defs.h
-+++ b/defs.h
-@@ -2169,6 +2169,7 @@ struct offset_table {                    /* stash of commonly-used offsets */
- 	long sbq_wait_state_wait_cnt;
- 	long sbq_wait_state_wait;
- 	long sbitmap_alloc_hint;
-+	long sbitmap_round_robin;
- };
- 
- struct size_table {         /* stash of commonly-used sizes */
-@@ -5909,6 +5910,7 @@ struct sbitmap_context {
- 	unsigned map_nr;
- 	ulong map_addr;
- 	ulong alloc_hint;
-+	bool round_robin;
- };
- 
- typedef bool (*sbitmap_for_each_fn)(unsigned int idx, void *p);
-diff --git a/sbitmap.c b/sbitmap.c
-index 2921d5447c65..7b318b533702 100644
---- a/sbitmap.c
-+++ b/sbitmap.c
-@@ -352,7 +352,11 @@ static void sbitmap_queue_show(const struct sbitmap_queue_context *sqc,
- 
- 	FREEBUF(sbq_wait_state_buf);
- 
--	fprintf(fp, "round_robin = %d\n", sqc->round_robin);
-+	if (VALID_MEMBER(sbitmap_queue_round_robin))
-+		fprintf(fp, "round_robin = %d\n", sqc->round_robin);
-+	else if (VALID_MEMBER(sbitmap_round_robin)) /* 5.13 and later */
-+		fprintf(fp, "round_robin = %d\n", sc->round_robin);
-+
- 	fprintf(fp, "min_shallow_depth = %u\n", sqc->min_shallow_depth);
- }
- 
-@@ -374,7 +378,8 @@ static void sbitmap_queue_context_load(ulong addr, struct sbitmap_queue_context
- 	sqc->wake_index = INT(sbitmap_queue_buf + OFFSET(sbitmap_queue_wake_index));
- 	sqc->ws_addr = ULONG(sbitmap_queue_buf + OFFSET(sbitmap_queue_ws));
- 	sqc->ws_active = INT(sbitmap_queue_buf + OFFSET(sbitmap_queue_ws_active));
--	sqc->round_robin = BOOL(sbitmap_queue_buf + OFFSET(sbitmap_queue_round_robin));
-+	if (VALID_MEMBER(sbitmap_queue_round_robin))
-+		sqc->round_robin = BOOL(sbitmap_queue_buf + OFFSET(sbitmap_queue_round_robin));
- 	sqc->min_shallow_depth = UINT(sbitmap_queue_buf + OFFSET(sbitmap_queue_min_shallow_depth));
- 
- 	FREEBUF(sbitmap_queue_buf);
-@@ -396,6 +401,8 @@ void sbitmap_context_load(ulong addr, struct sbitmap_context *sc)
- 	sc->map_addr = ULONG(sbitmap_buf + OFFSET(sbitmap_map));
- 	if (VALID_MEMBER(sbitmap_alloc_hint))
- 		sc->alloc_hint = ULONG(sbitmap_buf + OFFSET(sbitmap_alloc_hint));
-+	if (VALID_MEMBER(sbitmap_round_robin))
-+		sc->round_robin = BOOL(sbitmap_buf + OFFSET(sbitmap_round_robin));
- 
- 	FREEBUF(sbitmap_buf);
- }
-@@ -522,6 +529,7 @@ void sbitmapq_init(void)
- 	MEMBER_OFFSET_INIT(sbitmap_map_nr, "sbitmap", "map_nr");
- 	MEMBER_OFFSET_INIT(sbitmap_map, "sbitmap", "map");
- 	MEMBER_OFFSET_INIT(sbitmap_alloc_hint, "sbitmap", "alloc_hint");
-+	MEMBER_OFFSET_INIT(sbitmap_round_robin, "sbitmap", "round_robin");
- 
- 	MEMBER_OFFSET_INIT(sbitmap_queue_sb, "sbitmap_queue", "sb");
- 	MEMBER_OFFSET_INIT(sbitmap_queue_alloc_hint, "sbitmap_queue", "alloc_hint");
-diff --git a/symbols.c b/symbols.c
-index fd0eb06899f0..5d12a021c769 100644
---- a/symbols.c
-+++ b/symbols.c
-@@ -10710,6 +10710,8 @@ dump_offset_table(char *spec, ulong makestruct)
- 		OFFSET(sbitmap_map));
- 	fprintf(fp, "            sbitmap_alloc_hint: %ld\n",
- 		OFFSET(sbitmap_alloc_hint));
-+	fprintf(fp, "           sbitmap_round_robin: %ld\n",
-+		OFFSET(sbitmap_round_robin));
- 	fprintf(fp, "              sbitmap_queue_sb: %ld\n",
- 		OFFSET(sbitmap_queue_sb));
- 	fprintf(fp, "      sbitmap_queue_alloc_hint: %ld\n",
--- 
-2.30.2
-
diff --git a/SOURCES/0004-sbitmapq-fix-invalid-offset-for-sbitmap_word_depth-o.patch b/SOURCES/0004-sbitmapq-fix-invalid-offset-for-sbitmap_word_depth-o.patch
deleted file mode 100644
index 07edd5b..0000000
--- a/SOURCES/0004-sbitmapq-fix-invalid-offset-for-sbitmap_word_depth-o.patch
+++ /dev/null
@@ -1,101 +0,0 @@
-From 3750803f6ae5f5ad071f86ca916dbbb17b7a83a5 Mon Sep 17 00:00:00 2001
-From: Lianbo Jiang <lijiang@redhat.com>
-Date: Mon, 23 May 2022 18:04:16 +0800
-Subject: [PATCH 04/15] sbitmapq: fix invalid offset for "sbitmap_word_depth"
- on Linux v5.18-rc1
-
-Kernel commit 3301bc53358a ("lib/sbitmap: kill 'depth' from sbitmap_word")
-removed the depth member from struct sbitmap_word.  Without the patch, the
-sbitmapq will fail:
-
-  crash> sbitmapq 0xffff8e99d0dc8010
-
-  sbitmapq: invalid structure member offset: sbitmap_word_depth
-          FILE: sbitmap.c  LINE: 84  FUNCTION: __sbitmap_weight()
-
-Signed-off-by: Lianbo Jiang <lijiang@redhat.com>
----
- sbitmap.c | 19 +++++++++++--------
- 1 file changed, 11 insertions(+), 8 deletions(-)
-
-diff --git a/sbitmap.c b/sbitmap.c
-index 7b318b533702..e8ebd62fe01c 100644
---- a/sbitmap.c
-+++ b/sbitmap.c
-@@ -78,10 +78,16 @@ static unsigned long bitmap_weight(unsigned long bitmap, unsigned int bits)
- 	return w;
- }
- 
-+static inline unsigned int __map_depth(const struct sbitmap_context *sc, int index)
-+{
-+       if (index == sc->map_nr - 1)
-+               return sc->depth - (index << sc->shift);
-+       return 1U << sc->shift;
-+}
-+
- static unsigned int __sbitmap_weight(const struct sbitmap_context *sc, bool set)
- {
- 	const ulong sbitmap_word_size = SIZE(sbitmap_word);
--	const ulong w_depth_off = OFFSET(sbitmap_word_depth);
- 	const ulong w_word_off = OFFSET(sbitmap_word_word);
- 	const ulong w_cleared_off = OFFSET(sbitmap_word_cleared);
- 
-@@ -99,7 +105,7 @@ static unsigned int __sbitmap_weight(const struct sbitmap_context *sc, bool set)
- 			error(FATAL, "cannot read sbitmap_word\n");
- 		}
- 
--		depth = ULONG(sbitmap_word_buf + w_depth_off);
-+		depth = __map_depth(sc, i);
- 
- 		if (set) {
- 			word = ULONG(sbitmap_word_buf + w_word_off);
-@@ -142,7 +148,6 @@ static void sbitmap_emit_byte(unsigned int offset, uint8_t byte)
- static void sbitmap_bitmap_show(const struct sbitmap_context *sc)
- {
- 	const ulong sbitmap_word_size = SIZE(sbitmap_word);
--	const ulong w_depth_off = OFFSET(sbitmap_word_depth);
- 	const ulong w_word_off = OFFSET(sbitmap_word_word);
- 	const ulong w_cleared_off = OFFSET(sbitmap_word_cleared);
- 
-@@ -165,7 +170,7 @@ static void sbitmap_bitmap_show(const struct sbitmap_context *sc)
- 
- 		word = ULONG(sbitmap_word_buf + w_word_off);
- 		cleared = ULONG(sbitmap_word_buf + w_cleared_off);
--		word_bits = ULONG(sbitmap_word_buf + w_depth_off);
-+		word_bits = __map_depth(sc, i);
- 
- 		word &= ~cleared;
- 
-@@ -213,7 +218,6 @@ static void __sbitmap_for_each_set(const struct sbitmap_context *sc,
- 		unsigned int start, sbitmap_for_each_fn fn, void *data)
- {
- 	const ulong sbitmap_word_size = SIZE(sbitmap_word);
--	const ulong w_depth_off = OFFSET(sbitmap_word_depth);
- 	const ulong w_word_off = OFFSET(sbitmap_word_word);
- 	const ulong w_cleared_off = OFFSET(sbitmap_word_cleared);
- 
-@@ -232,7 +236,7 @@ static void __sbitmap_for_each_set(const struct sbitmap_context *sc,
- 
- 	while (scanned < sc->depth) {
- 		unsigned long w_addr = sc->map_addr + (sbitmap_word_size * index);
--		unsigned long w_depth, w_word, w_cleared;
-+		unsigned long w_word, w_cleared;
- 		unsigned long word, depth;
- 
- 		if (!readmem(w_addr, KVADDR, sbitmap_word_buf, sbitmap_word_size, "sbitmap_word", RETURN_ON_ERROR)) {
-@@ -240,11 +244,10 @@ static void __sbitmap_for_each_set(const struct sbitmap_context *sc,
- 			error(FATAL, "cannot read sbitmap_word\n");
- 		}
- 
--		w_depth = ULONG(sbitmap_word_buf + w_depth_off);
- 		w_word = ULONG(sbitmap_word_buf + w_word_off);
- 		w_cleared = ULONG(sbitmap_word_buf + w_cleared_off);
- 
--		depth = min(w_depth - nr, sc->depth - scanned);
-+		depth = min(__map_depth(sc, index) - nr, sc->depth - scanned);
- 
- 		scanned += depth;
- 		word = w_word & ~w_cleared;
--- 
-2.30.2
-
diff --git a/SOURCES/0005-Makefile-add-missing-crash_target.o-to-be-cleaned.patch b/SOURCES/0005-Makefile-add-missing-crash_target.o-to-be-cleaned.patch
deleted file mode 100644
index 5fd1f7b..0000000
--- a/SOURCES/0005-Makefile-add-missing-crash_target.o-to-be-cleaned.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From 9705669a49c341402efd8528e8fe809379dd798d Mon Sep 17 00:00:00 2001
-From: Kazuhito Hagio <k-hagio-ab@nec.com>
-Date: Mon, 23 May 2022 14:48:50 +0900
-Subject: [PATCH 05/15] Makefile: add missing crash_target.o to be cleaned
-
-Signed-off-by: Kazuhito Hagio <k-hagio-ab@nec.com>
----
- Makefile | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/Makefile b/Makefile
-index e520b1217a9d..162c2baa5164 100644
---- a/Makefile
-+++ b/Makefile
-@@ -184,7 +184,7 @@ GDB_7.6_FILES=
- GDB_7.6_OFILES=${GDB}/gdb/symtab.o
- 
- GDB_10.2_FILES=
--GDB_10.2_OFILES=${GDB}/gdb/symtab.o
-+GDB_10.2_OFILES=${GDB}/gdb/symtab.o crash_target.o
- 
- # 
- # GDB_FLAGS is passed up from the gdb Makefile.
--- 
-2.30.2
-
diff --git a/SOURCES/0006-bt-x86_64-filter-out-idle-task-stack.patch b/SOURCES/0006-bt-x86_64-filter-out-idle-task-stack.patch
deleted file mode 100644
index 885f71f..0000000
--- a/SOURCES/0006-bt-x86_64-filter-out-idle-task-stack.patch
+++ /dev/null
@@ -1,204 +0,0 @@
-From 6833262bf87177d8affe4f91b2e7d2c76ecdf636 Mon Sep 17 00:00:00 2001
-From: Qi Zheng <zhengqi.arch@bytedance.com>
-Date: Tue, 24 May 2022 20:25:53 +0800
-Subject: [PATCH 06/15] bt: x86_64: filter out idle task stack
-
-When we use crash to troubleshoot softlockup and other problems,
-we often use the 'bt -a' command to print the stacks of running
-processes on all CPUs. But now some servers have hundreds of CPUs
-(such as AMD machines), which causes the 'bt -a' command to output
-a lot of process stacks. And many of these stacks are the stacks
-of the idle process, which are not needed by us.
-
-Therefore, in order to reduce this part of the interference information,
-this patch adds the -n option to the bt command. When we specify
-'-n idle' (meaning no idle), the stack of the idle process will be
-filtered out, thus speeding up our troubleshooting.
-
-And the option works only for crash dumps captured by kdump.
-
-The command output is as follows:
-crash> bt -a -n idle
-[...]
-PID: 0      TASK: ffff889ff8c34380  CPU: 8   COMMAND: "swapper/8"
-
-PID: 0      TASK: ffff889ff8c32d00  CPU: 9   COMMAND: "swapper/9"
-
-PID: 0      TASK: ffff889ff8c31680  CPU: 10  COMMAND: "swapper/10"
-
-PID: 0      TASK: ffff889ff8c35a00  CPU: 11  COMMAND: "swapper/11"
-
-PID: 0      TASK: ffff889ff8c3c380  CPU: 12  COMMAND: "swapper/12"
-
-PID: 150773  TASK: ffff889fe85a1680  CPU: 13  COMMAND: "bash"
- #0 [ffffc9000d35bcd0] machine_kexec at ffffffff8105a407
- #1 [ffffc9000d35bd28] __crash_kexec at ffffffff8113033d
- #2 [ffffc9000d35bdf0] panic at ffffffff81081930
- #3 [ffffc9000d35be70] sysrq_handle_crash at ffffffff814e38d1
- #4 [ffffc9000d35be78] __handle_sysrq.cold.12 at ffffffff814e4175
- #5 [ffffc9000d35bea8] write_sysrq_trigger at ffffffff814e404b
- #6 [ffffc9000d35beb8] proc_reg_write at ffffffff81330d86
- #7 [ffffc9000d35bed0] vfs_write at ffffffff812a72d5
- #8 [ffffc9000d35bf00] ksys_write at ffffffff812a7579
- #9 [ffffc9000d35bf38] do_syscall_64 at ffffffff81004259
-    RIP: 00007fa7abcdc274  RSP: 00007fffa731f678  RFLAGS: 00000246
-    RAX: ffffffffffffffda  RBX: 0000000000000002  RCX: 00007fa7abcdc274
-    RDX: 0000000000000002  RSI: 0000563ca51ee6d0  RDI: 0000000000000001
-    RBP: 0000563ca51ee6d0   R8: 000000000000000a   R9: 00007fa7abd6be80
-    R10: 000000000000000a  R11: 0000000000000246  R12: 00007fa7abdad760
-    R13: 0000000000000002  R14: 00007fa7abda8760  R15: 0000000000000002
-    ORIG_RAX: 0000000000000001  CS: 0033  SS: 002b
-[...]
-
-Signed-off-by: Qi Zheng <zhengqi.arch@bytedance.com>
-Acked-by: Kazuhito Hagio <k-hagio-ab@nec.com>
-Acked-by: Lianbo Jiang <lijiang@redhat.com>
----
- defs.h   |  1 +
- help.c   | 33 ++++++++++++++++++++++++++++++++-
- kernel.c | 13 ++++++++++++-
- x86_64.c |  8 ++++++++
- 4 files changed, 53 insertions(+), 2 deletions(-)
-
-diff --git a/defs.h b/defs.h
-index ecbced24d2e3..c8444b4e54eb 100644
---- a/defs.h
-+++ b/defs.h
-@@ -5832,6 +5832,7 @@ ulong cpu_map_addr(const char *type);
- #define BT_SHOW_ALL_REGS  (0x2000000000000ULL)
- #define BT_REGS_NOT_FOUND (0x4000000000000ULL)
- #define BT_OVERFLOW_STACK (0x8000000000000ULL)
-+#define BT_SKIP_IDLE     (0x10000000000000ULL)
- #define BT_SYMBOL_OFFSET   (BT_SYMBOLIC_ARGS)
- 
- #define BT_REF_HEXVAL         (0x1)
-diff --git a/help.c b/help.c
-index 51a0fe3d687c..e1bbc5abe029 100644
---- a/help.c
-+++ b/help.c
-@@ -1909,12 +1909,14 @@ char *help_bt[] = {
- "bt",
- "backtrace",
- "[-a|-c cpu(s)|-g|-r|-t|-T|-l|-e|-E|-f|-F|-o|-O|-v|-p] [-R ref] [-s [-x|d]]"
--"\n     [-I ip] [-S sp] [pid | task]",
-+"\n     [-I ip] [-S sp] [-n idle] [pid | task]",
- "  Display a kernel stack backtrace.  If no arguments are given, the stack",
- "  trace of the current context will be displayed.\n",
- "       -a  displays the stack traces of the active task on each CPU.",
- "           (only applicable to crash dumps)",
- "       -A  same as -a, but also displays vector registers (S390X only).",
-+"  -n idle  filter the stack of idle tasks (x86_64).",
-+"           (only applicable to crash dumps)",
- "       -p  display the stack trace of the panic task only.",
- "           (only applicable to crash dumps)",
- "   -c cpu  display the stack trace of the active task on one or more CPUs,",
-@@ -2004,6 +2006,35 @@ char *help_bt[] = {
- "       DS:  002b      ESI: bfffc8a0  ES:  002b      EDI: 00000000 ",
- "       SS:  002b      ESP: bfffc82c  EBP: bfffd224 ",
- "       CS:  0023      EIP: 400d032e  ERR: 0000008e  EFLAGS: 00000246  ",
-+" ",
-+"  Display the stack trace of the active task(s) when the kernel panicked,",
-+"  and filter out the stack of the idle tasks:",
-+" ",
-+"    %s> bt -a -n idle",
-+"    ...",
-+"    PID: 0      TASK: ffff889ff8c35a00  CPU: 11  COMMAND: \"swapper/11\"",
-+" ",
-+"    PID: 0      TASK: ffff889ff8c3c380  CPU: 12  COMMAND: \"swapper/12\"",
-+" ",
-+"    PID: 150773  TASK: ffff889fe85a1680  CPU: 13  COMMAND: \"bash\"",
-+"    #0 [ffffc9000d35bcd0] machine_kexec at ffffffff8105a407",
-+"    #1 [ffffc9000d35bd28] __crash_kexec at ffffffff8113033d",
-+"    #2 [ffffc9000d35bdf0] panic at ffffffff81081930",
-+"    #3 [ffffc9000d35be70] sysrq_handle_crash at ffffffff814e38d1",
-+"    #4 [ffffc9000d35be78] __handle_sysrq.cold.12 at ffffffff814e4175",
-+"    #5 [ffffc9000d35bea8] write_sysrq_trigger at ffffffff814e404b",
-+"    #6 [ffffc9000d35beb8] proc_reg_write at ffffffff81330d86",
-+"    #7 [ffffc9000d35bed0] vfs_write at ffffffff812a72d5",
-+"    #8 [ffffc9000d35bf00] ksys_write at ffffffff812a7579",
-+"    #9 [ffffc9000d35bf38] do_syscall_64 at ffffffff81004259",
-+"       RIP: 00007fa7abcdc274  RSP: 00007fffa731f678  RFLAGS: 00000246",
-+"       RAX: ffffffffffffffda  RBX: 0000000000000002  RCX: 00007fa7abcdc274",
-+"       RDX: 0000000000000002  RSI: 0000563ca51ee6d0  RDI: 0000000000000001",
-+"       RBP: 0000563ca51ee6d0   R8: 000000000000000a   R9: 00007fa7abd6be80",
-+"       R10: 000000000000000a  R11: 0000000000000246  R12: 00007fa7abdad760",
-+"       R13: 0000000000000002  R14: 00007fa7abda8760  R15: 0000000000000002",
-+"       ORIG_RAX: 0000000000000001  CS: 0033  SS: 002b",
-+"    ...",
- "\n  Display the stack trace of the active task on CPU 0 and 1:\n",
- "    %s> bt -c 0,1",
- "    PID: 0      TASK: ffffffff81a8d020  CPU: 0   COMMAND: \"swapper\"",
-diff --git a/kernel.c b/kernel.c
-index d0921cf567d9..411e9da1e54f 100644
---- a/kernel.c
-+++ b/kernel.c
-@@ -2503,7 +2503,7 @@ cmd_bt(void)
- 	if (kt->flags & USE_OPT_BT)
- 		bt->flags |= BT_OPT_BACK_TRACE;
- 
--	while ((c = getopt(argcnt, args, "D:fFI:S:c:aAloreEgstTdxR:Ovp")) != EOF) {
-+	while ((c = getopt(argcnt, args, "D:fFI:S:c:n:aAloreEgstTdxR:Ovp")) != EOF) {
-                 switch (c)
- 		{
- 		case 'f':
-@@ -2672,6 +2672,13 @@ cmd_bt(void)
- 			active++;
- 			break;
- 
-+		case 'n':
-+			if (machine_type("X86_64") && STREQ(optarg, "idle"))
-+				bt->flags |= BT_SKIP_IDLE;
-+			else
-+				option_not_supported(c);
-+			break;
-+
- 		case 'r':
- 			bt->flags |= BT_RAW;
- 			break;
-@@ -3092,6 +3099,10 @@ back_trace(struct bt_info *bt)
- 	} else
-                 machdep->get_stack_frame(bt, &eip, &esp);
- 
-+	/* skip idle task stack */
-+	if (bt->flags & BT_SKIP_IDLE)
-+		return;
-+
- 	if (bt->flags & BT_KSTACKP) {
- 		bt->stkptr = esp;
- 		return;
-diff --git a/x86_64.c b/x86_64.c
-index ecaefd2f46a8..cfafbcc4dabe 100644
---- a/x86_64.c
-+++ b/x86_64.c
-@@ -4918,6 +4918,9 @@ x86_64_get_stack_frame(struct bt_info *bt, ulong *pcp, ulong *spp)
- 	if (bt->flags & BT_DUMPFILE_SEARCH)
- 		return x86_64_get_dumpfile_stack_frame(bt, pcp, spp);
- 
-+	if (bt->flags & BT_SKIP_IDLE)
-+		bt->flags &= ~BT_SKIP_IDLE;
-+
-         if (pcp)
-                 *pcp = x86_64_get_pc(bt);
-         if (spp)
-@@ -4960,6 +4963,9 @@ x86_64_get_dumpfile_stack_frame(struct bt_info *bt_in, ulong *rip, ulong *rsp)
- 	estack = -1;
- 	panic = FALSE;
- 
-+	if (bt_in->flags & BT_SKIP_IDLE)
-+		bt_in->flags &= ~BT_SKIP_IDLE;
-+
- 	panic_task = tt->panic_task == bt->task ? TRUE : FALSE;
- 
- 	if (panic_task && bt->machdep) {
-@@ -5098,6 +5104,8 @@ next_sysrq:
-                 if (!panic_task && STREQ(sym, "crash_nmi_callback")) {
-                         *rip = *up;
-                         *rsp = bt->stackbase + ((char *)(up) - bt->stackbuf);
-+			if ((bt->flags & BT_SKIP_IDLE) && is_idle_thread(bt->task))
-+				bt_in->flags |= BT_SKIP_IDLE;
-                         return;
-                 }
- 
--- 
-2.30.2
-
diff --git a/SOURCES/0007-bt-arm64-add-support-for-bt-n-idle.patch b/SOURCES/0007-bt-arm64-add-support-for-bt-n-idle.patch
deleted file mode 100644
index b5c6b76..0000000
--- a/SOURCES/0007-bt-arm64-add-support-for-bt-n-idle.patch
+++ /dev/null
@@ -1,95 +0,0 @@
-From 0f162febebc4d11a165dd40cee00f3b0ba691a52 Mon Sep 17 00:00:00 2001
-From: Qi Zheng <zhengqi.arch@bytedance.com>
-Date: Tue, 24 May 2022 20:25:54 +0800
-Subject: [PATCH 07/15] bt: arm64: add support for 'bt -n idle'
-
-The '-n idle' option of bt command can help us filter the
-stack of the idle process when debugging the dumpfiles
-captured by kdump.
-
-This patch supports this feature on ARM64.
-
-Signed-off-by: Qi Zheng <zhengqi.arch@bytedance.com>
----
- arm64.c  | 19 ++++++++++++++++---
- help.c   |  2 +-
- kernel.c |  3 ++-
- 3 files changed, 19 insertions(+), 5 deletions(-)
-
-diff --git a/arm64.c b/arm64.c
-index 65f6cdf69fa6..0f615cf52bef 100644
---- a/arm64.c
-+++ b/arm64.c
-@@ -3681,6 +3681,12 @@ arm64_get_dumpfile_stackframe(struct bt_info *bt, struct arm64_stackframe *frame
- {
- 	struct machine_specific *ms = machdep->machspec;
- 	struct arm64_pt_regs *ptregs;
-+	bool skip = false;
-+
-+	if (bt->flags & BT_SKIP_IDLE) {
-+		skip = true;
-+		bt->flags &= ~BT_SKIP_IDLE;
-+	}
- 
- 	if (!ms->panic_task_regs ||
- 	    (!ms->panic_task_regs[bt->tc->processor].sp && 
-@@ -3713,8 +3719,11 @@ try_kernel:
- 	}
- 
- 	if (arm64_in_kdump_text(bt, frame) || 
--	    arm64_in_kdump_text_on_irq_stack(bt))
-+	    arm64_in_kdump_text_on_irq_stack(bt)) {
- 		bt->flags |= BT_KDUMP_ADJUST;
-+		if (skip && is_idle_thread(bt->task))
-+			bt->flags |= BT_SKIP_IDLE;
-+	}
- 
- 	return TRUE;
- }
-@@ -3738,10 +3747,14 @@ arm64_get_stack_frame(struct bt_info *bt, ulong *pcp, ulong *spp)
- 	int ret;
- 	struct arm64_stackframe stackframe = { 0 };
- 
--	if (DUMPFILE() && is_task_active(bt->task))
-+	if (DUMPFILE() && is_task_active(bt->task)) {
- 		ret = arm64_get_dumpfile_stackframe(bt, &stackframe);
--	else
-+	} else {
-+		if (bt->flags & BT_SKIP_IDLE)
-+			bt->flags &= ~BT_SKIP_IDLE;
-+
- 		ret = arm64_get_stackframe(bt, &stackframe);
-+	}
- 
- 	if (!ret)
- 		error(WARNING, 
-diff --git a/help.c b/help.c
-index e1bbc5abe029..99214c1590fa 100644
---- a/help.c
-+++ b/help.c
-@@ -1915,7 +1915,7 @@ char *help_bt[] = {
- "       -a  displays the stack traces of the active task on each CPU.",
- "           (only applicable to crash dumps)",
- "       -A  same as -a, but also displays vector registers (S390X only).",
--"  -n idle  filter the stack of idle tasks (x86_64).",
-+"  -n idle  filter the stack of idle tasks (x86_64, arm64).",
- "           (only applicable to crash dumps)",
- "       -p  display the stack trace of the panic task only.",
- "           (only applicable to crash dumps)",
-diff --git a/kernel.c b/kernel.c
-index 411e9da1e54f..a521ef30cdb0 100644
---- a/kernel.c
-+++ b/kernel.c
-@@ -2673,7 +2673,8 @@ cmd_bt(void)
- 			break;
- 
- 		case 'n':
--			if (machine_type("X86_64") && STREQ(optarg, "idle"))
-+			if ((machine_type("X86_64") || machine_type("ARM64")) &&
-+			    STREQ(optarg, "idle"))
- 				bt->flags |= BT_SKIP_IDLE;
- 			else
- 				option_not_supported(c);
--- 
-2.30.2
-
diff --git a/SOURCES/0008-gdb-print-details-of-unnamed-struct-and-union.patch b/SOURCES/0008-gdb-print-details-of-unnamed-struct-and-union.patch
deleted file mode 100644
index e634e57..0000000
--- a/SOURCES/0008-gdb-print-details-of-unnamed-struct-and-union.patch
+++ /dev/null
@@ -1,66 +0,0 @@
-From dda5b2d02b8d8de1264f84b6267582aa7a1e5a57 Mon Sep 17 00:00:00 2001
-From: Kazuhito Hagio <k-hagio-ab@nec.com>
-Date: Tue, 31 May 2022 17:12:16 +0900
-Subject: [PATCH 08/15] gdb: print details of unnamed struct and union
-
-Currently gdb's "ptype" command does not print the details of unnamed
-structure and union deeper than second level in a structure, it prints
-only "{...}" instead.  And crash's "struct" and similar commands also
-inherit this behavior, so we cannot get the full information of them.
-
-To print the details of them, change the show variable when it is an
-unnamed one like crash-7.x.
-
-Without the patch:
-   crash> struct -o page
-   struct page {
-      [0] unsigned long flags;
-          union {
-              struct {...};
-              struct {...};
-   ...
-
-With the patch:
-   crash> struct -o page
-   struct page {
-      [0] unsigned long flags;
-          union {
-              struct {
-      [8]         struct list_head lru;
-     [24]         struct address_space *mapping;
-     [32]         unsigned long index;
-     [40]         unsigned long private;
-              };
-              struct {
-      [8]         dma_addr_t dma_addr;
-              };
-   ...
-
-Signed-off-by: Kazuhito Hagio <k-hagio-ab@nec.com>
----
- gdb-10.2.patch | 12 ++++++++++++
- 1 file changed, 12 insertions(+)
-
-diff --git a/gdb-10.2.patch b/gdb-10.2.patch
-index b67db4e1ded9..577f5e45fc5a 100644
---- a/gdb-10.2.patch
-+++ b/gdb-10.2.patch
-@@ -1638,3 +1638,15 @@ exit 0
-  	$(ECHO_CXXLD) $(CC_LD) $(INTERNAL_LDFLAGS) $(WIN32LDAPP) \
-                  -o $(shell /bin/cat mergeobj) $(LIBGDB_OBS) \
-                  $(TDEPLIBS) $(TUI_LIBRARY) $(CLIBS) $(LOADLIBES) $(shell /bin/cat mergelibs)
-+--- gdb-10.2/gdb/c-typeprint.c.orig
-++++ gdb-10.2/gdb/c-typeprint.c
-+@@ -1202,6 +1202,9 @@ c_type_print_base_struct_union (struct t
-+ 		= podata->end_bitpos
-+ 		  - TYPE_LENGTH (type->field (i).type ()) * TARGET_CHAR_BIT;
-+ 	    }
-++	  else if (strlen(TYPE_FIELD_NAME (type, i)) == 0)
-++	    /* crash: Print details for unnamed struct and union. */
-++	    newshow = show;
-+
-+ 	  c_print_type_1 (type->field (i).type (),
-+ 			  TYPE_FIELD_NAME (type, i),
--- 
-2.30.2
-
diff --git a/SOURCES/0009-Enhance-dev-d-D-options-to-support-blk-mq-sbitmap.patch b/SOURCES/0009-Enhance-dev-d-D-options-to-support-blk-mq-sbitmap.patch
deleted file mode 100644
index 2280c1f..0000000
--- a/SOURCES/0009-Enhance-dev-d-D-options-to-support-blk-mq-sbitmap.patch
+++ /dev/null
@@ -1,392 +0,0 @@
-From 7095c8fd029e3a33117e3b67de73f504686ebfe2 Mon Sep 17 00:00:00 2001
-From: Lianbo Jiang <lijiang@redhat.com>
-Date: Thu, 2 Jun 2022 20:12:55 +0800
-Subject: [PATCH 09/15] Enhance "dev -d|-D" options to support blk-mq sbitmap
-
-Since Linux 5.16-rc1, which kernel commit 9a14d6ce4135 ("block: remove
-debugfs blk_mq_ctx dispatched/merged/completed attributes") removed the
-members from struct blk_mq_ctx, crash has not displayed disk I/O statistics
-for multiqueue (blk-mq) devices.
-
-Let's parse the sbitmap in blk-mq layer to support it.
-
-Signed-off-by: Lianbo Jiang <lijiang@redhat.com>
-Signed-off-by: Kazuhito Hagio <k-hagio-ab@nec.com>
----
- defs.h    |  11 +++
- dev.c     | 244 +++++++++++++++++++++++++++++++++++++++++++++---------
- symbols.c |  22 +++++
- 3 files changed, 238 insertions(+), 39 deletions(-)
-
-diff --git a/defs.h b/defs.h
-index c8444b4e54eb..2681586a33dc 100644
---- a/defs.h
-+++ b/defs.h
-@@ -2170,6 +2170,16 @@ struct offset_table {                    /* stash of commonly-used offsets */
- 	long sbq_wait_state_wait;
- 	long sbitmap_alloc_hint;
- 	long sbitmap_round_robin;
-+	long request_cmd_flags;
-+	long request_q;
-+	long request_state;
-+	long request_queue_queue_hw_ctx;
-+	long request_queue_nr_hw_queues;
-+	long blk_mq_hw_ctx_tags;
-+	long blk_mq_tags_bitmap_tags;
-+	long blk_mq_tags_breserved_tags;
-+	long blk_mq_tags_nr_reserved_tags;
-+	long blk_mq_tags_rqs;
- };
- 
- struct size_table {         /* stash of commonly-used sizes */
-@@ -2339,6 +2349,7 @@ struct size_table {         /* stash of commonly-used sizes */
- 	long sbitmap;
- 	long sbitmap_queue;
- 	long sbq_wait_state;
-+	long blk_mq_tags;
- };
- 
- struct array_table {
-diff --git a/dev.c b/dev.c
-index a493e51ac95c..4be4c96df8b0 100644
---- a/dev.c
-+++ b/dev.c
-@@ -4238,19 +4238,176 @@ get_one_mctx_diskio(unsigned long mctx, struct diskio *io)
- 	io->write = (dispatch[1] - comp[1]);
- }
- 
-+typedef bool (busy_tag_iter_fn)(ulong rq, void *data);
-+
-+struct mq_inflight {
-+	ulong q;
-+	struct diskio *dio;
-+};
-+
-+struct bt_iter_data {
-+	ulong tags;
-+	uint reserved;
-+	uint nr_reserved_tags;
-+	busy_tag_iter_fn *fn;
-+	void *data;
-+};
-+
-+/*
-+ * See the include/linux/blk_types.h and include/linux/blk-mq.h
-+ */
-+#define MQ_RQ_IN_FLIGHT 1
-+#define REQ_OP_BITS     8
-+#define REQ_OP_MASK     ((1 << REQ_OP_BITS) - 1)
-+
-+static uint op_is_write(uint op)
-+{
-+	return (op & REQ_OP_MASK) & 1;
-+}
-+
-+static bool mq_check_inflight(ulong rq, void *data)
-+{
-+	uint cmd_flags = 0, state = 0;
-+	ulong addr = 0, queue = 0;
-+	struct mq_inflight *mi = data;
-+
-+	if (!IS_KVADDR(rq))
-+		return TRUE;
-+
-+	addr = rq + OFFSET(request_q);
-+	if (!readmem(addr, KVADDR, &queue, sizeof(ulong), "request.q", RETURN_ON_ERROR))
-+		return FALSE;
-+
-+	addr = rq + OFFSET(request_cmd_flags);
-+	if (!readmem(addr, KVADDR, &cmd_flags, sizeof(uint), "request.cmd_flags", RETURN_ON_ERROR))
-+		return FALSE;
-+
-+	addr = rq + OFFSET(request_state);
-+	if (!readmem(addr, KVADDR, &state, sizeof(uint), "request.state", RETURN_ON_ERROR))
-+		return FALSE;
-+
-+	if (queue == mi->q && state == MQ_RQ_IN_FLIGHT) {
-+		if (op_is_write(cmd_flags))
-+			mi->dio->write++;
-+		else
-+			mi->dio->read++;
-+	}
-+
-+	return TRUE;
-+}
-+
-+static bool bt_iter(uint bitnr, void *data)
-+{
-+	ulong addr = 0, rqs_addr = 0, rq = 0;
-+	struct bt_iter_data *iter_data = data;
-+	ulong tag = iter_data->tags;
-+
-+	if (!iter_data->reserved)
-+		bitnr += iter_data->nr_reserved_tags;
-+
-+	/* rqs */
-+	addr = tag + OFFSET(blk_mq_tags_rqs);
-+	if (!readmem(addr, KVADDR, &rqs_addr, sizeof(void *), "blk_mq_tags.rqs", RETURN_ON_ERROR))
-+		return FALSE;
-+
-+	addr = rqs_addr + bitnr * sizeof(ulong); /* rqs[bitnr] */
-+	if (!readmem(addr, KVADDR, &rq, sizeof(ulong), "blk_mq_tags.rqs[]", RETURN_ON_ERROR))
-+		return FALSE;
-+
-+	return iter_data->fn(rq, iter_data->data);
-+}
-+
-+static void bt_for_each(ulong q, ulong tags, ulong sbq, uint reserved, uint nr_resvd_tags, struct diskio *dio)
-+{
-+	struct sbitmap_context sc = {0};
-+	struct mq_inflight mi = {
-+		.q = q,
-+		.dio = dio,
-+	};
-+	struct bt_iter_data iter_data = {
-+		.tags = tags,
-+		.reserved = reserved,
-+		.nr_reserved_tags = nr_resvd_tags,
-+		.fn = mq_check_inflight,
-+		.data = &mi,
-+	};
-+
-+	sbitmap_context_load(sbq + OFFSET(sbitmap_queue_sb), &sc);
-+	sbitmap_for_each_set(&sc, bt_iter, &iter_data);
-+}
-+
-+static void queue_for_each_hw_ctx(ulong q, ulong *hctx, uint cnt, struct diskio *dio)
-+{
-+	uint i;
-+
-+	for (i = 0; i < cnt; i++) {
-+		ulong addr = 0, tags = 0;
-+		uint nr_reserved_tags = 0;
-+
-+		/* Tags owned by the block driver */
-+		addr = hctx[i] + OFFSET(blk_mq_hw_ctx_tags);
-+		if (!readmem(addr, KVADDR, &tags, sizeof(ulong),
-+				"blk_mq_hw_ctx.tags", RETURN_ON_ERROR))
-+			break;
-+
-+		addr = tags + OFFSET(blk_mq_tags_nr_reserved_tags);
-+		if (!readmem(addr, KVADDR, &nr_reserved_tags, sizeof(uint),
-+				"blk_mq_tags_nr_reserved_tags", RETURN_ON_ERROR))
-+			break;
-+
-+		if (nr_reserved_tags) {
-+			addr = tags + OFFSET(blk_mq_tags_breserved_tags);
-+			bt_for_each(q, tags, addr, 1, nr_reserved_tags, dio);
-+		}
-+		addr = tags + OFFSET(blk_mq_tags_bitmap_tags);
-+		bt_for_each(q, tags, addr, 0, nr_reserved_tags, dio);
-+	}
-+}
-+
-+static void get_mq_diskio_from_hw_queues(ulong q, struct diskio *dio)
-+{
-+	uint cnt = 0;
-+	ulong addr = 0, hctx_addr = 0;
-+	ulong *hctx_array = NULL;
-+
-+	addr = q + OFFSET(request_queue_nr_hw_queues);
-+	readmem(addr, KVADDR, &cnt, sizeof(uint),
-+		"request_queue.nr_hw_queues", FAULT_ON_ERROR);
-+
-+	addr = q + OFFSET(request_queue_queue_hw_ctx);
-+	readmem(addr, KVADDR, &hctx_addr, sizeof(void *),
-+		"request_queue.queue_hw_ctx", FAULT_ON_ERROR);
-+
-+	hctx_array = (ulong *)GETBUF(sizeof(void *) * cnt);
-+	if (!hctx_array)
-+		error(FATAL, "fail to get memory for the hctx_array\n");
-+
-+	if (!readmem(hctx_addr, KVADDR, hctx_array, sizeof(void *) * cnt,
-+			"request_queue.queue_hw_ctx[]", RETURN_ON_ERROR)) {
-+		FREEBUF(hctx_array);
-+		return;
-+	}
-+
-+	queue_for_each_hw_ctx(q, hctx_array, cnt, dio);
-+
-+	FREEBUF(hctx_array);
-+}
-+
- static void
- get_mq_diskio(unsigned long q, unsigned long *mq_count)
- {
- 	int cpu;
- 	unsigned long queue_ctx;
- 	unsigned long mctx_addr;
--	struct diskio tmp;
-+	struct diskio tmp = {0};
- 
- 	if (INVALID_MEMBER(blk_mq_ctx_rq_dispatched) ||
--	    INVALID_MEMBER(blk_mq_ctx_rq_completed))
-+	    INVALID_MEMBER(blk_mq_ctx_rq_completed)) {
-+		get_mq_diskio_from_hw_queues(q, &tmp);
-+		mq_count[0] = tmp.read;
-+		mq_count[1] = tmp.write;
- 		return;
--
--	memset(&tmp, 0x00, sizeof(struct diskio));
-+	}
- 
- 	readmem(q + OFFSET(request_queue_queue_ctx), KVADDR, &queue_ctx,
- 		sizeof(ulong), "request_queue.queue_ctx",
-@@ -4479,41 +4636,24 @@ display_one_diskio(struct iter *i, unsigned long gendisk, ulong flags)
- 		&& (io.read + io.write == 0))
- 		return;
- 
--	if (use_mq_interface(queue_addr) &&
--	    (INVALID_MEMBER(blk_mq_ctx_rq_dispatched) ||
--	     INVALID_MEMBER(blk_mq_ctx_rq_completed)))
--		fprintf(fp, "%s%s%s  %s%s%s%s  %s%s%s",
--			mkstring(buf0, 5, RJUST|INT_DEC, (char *)(unsigned long)major),
--			space(MINSPACE),
--			mkstring(buf1, VADDR_PRLEN, LJUST|LONG_HEX, (char *)gendisk),
--			space(MINSPACE),
--			mkstring(buf2, 10, LJUST, disk_name),
--			space(MINSPACE),
--			mkstring(buf3, VADDR_PRLEN <= 11 ? 11 : VADDR_PRLEN,
--				 LJUST|LONG_HEX, (char *)queue_addr),
--			space(MINSPACE),
--			mkstring(buf4, 17, RJUST, "(not supported)"),
--			space(MINSPACE));
--
--	else
--		fprintf(fp, "%s%s%s  %s%s%s%s  %s%5d%s%s%s%s%s",
--			mkstring(buf0, 5, RJUST|INT_DEC, (char *)(unsigned long)major),
--			space(MINSPACE),
--			mkstring(buf1, VADDR_PRLEN, LJUST|LONG_HEX, (char *)gendisk),
--			space(MINSPACE),
--			mkstring(buf2, 10, LJUST, disk_name),
--			space(MINSPACE),
--			mkstring(buf3, VADDR_PRLEN <= 11 ? 11 : VADDR_PRLEN,
--				 LJUST|LONG_HEX, (char *)queue_addr),
--			space(MINSPACE),
--			io.read + io.write,
--			space(MINSPACE),
--			mkstring(buf4, 5, RJUST|INT_DEC,
--				(char *)(unsigned long)io.read),
--			space(MINSPACE),
--			mkstring(buf5, 5, RJUST|INT_DEC,
--				(char *)(unsigned long)io.write),
--			space(MINSPACE));
-+	fprintf(fp, "%s%s%s  %s%s%s%s  %s%5d%s%s%s%s%s",
-+		mkstring(buf0, 5, RJUST|INT_DEC, (char *)(unsigned long)major),
-+		space(MINSPACE),
-+		mkstring(buf1, VADDR_PRLEN, LJUST|LONG_HEX, (char *)gendisk),
-+		space(MINSPACE),
-+		mkstring(buf2, 10, LJUST, disk_name),
-+		space(MINSPACE),
-+		mkstring(buf3, VADDR_PRLEN <= 11 ? 11 : VADDR_PRLEN,
-+			 LJUST|LONG_HEX, (char *)queue_addr),
-+		space(MINSPACE),
-+		io.read + io.write,
-+		space(MINSPACE),
-+		mkstring(buf4, 5, RJUST|INT_DEC,
-+			(char *)(unsigned long)io.read),
-+		space(MINSPACE),
-+		mkstring(buf5, 5, RJUST|INT_DEC,
-+			(char *)(unsigned long)io.write),
-+		space(MINSPACE));
- 
- 	if (VALID_MEMBER(request_queue_in_flight)) {
- 		if (!use_mq_interface(queue_addr)) {
-@@ -4597,6 +4737,9 @@ void diskio_init(void)
- 	MEMBER_OFFSET_INIT(kobject_entry, "kobject", "entry");
- 	MEMBER_OFFSET_INIT(kset_list, "kset", "list");
- 	MEMBER_OFFSET_INIT(request_list_count, "request_list", "count");
-+	MEMBER_OFFSET_INIT(request_cmd_flags, "request", "cmd_flags");
-+	MEMBER_OFFSET_INIT(request_q, "request", "q");
-+	MEMBER_OFFSET_INIT(request_state, "request", "state");
- 	MEMBER_OFFSET_INIT(request_queue_in_flight, "request_queue",
- 		"in_flight");
- 	if (MEMBER_EXISTS("request_queue", "rq"))
-@@ -4608,10 +4751,33 @@ void diskio_init(void)
- 			"mq_ops");
- 		ANON_MEMBER_OFFSET_INIT(request_queue_queue_ctx,
- 			"request_queue", "queue_ctx");
-+		MEMBER_OFFSET_INIT(request_queue_queue_hw_ctx,
-+			"request_queue", "queue_hw_ctx");
-+		MEMBER_OFFSET_INIT(request_queue_nr_hw_queues,
-+			"request_queue", "nr_hw_queues");
- 		MEMBER_OFFSET_INIT(blk_mq_ctx_rq_dispatched, "blk_mq_ctx",
- 			"rq_dispatched");
- 		MEMBER_OFFSET_INIT(blk_mq_ctx_rq_completed, "blk_mq_ctx",
- 			"rq_completed");
-+		MEMBER_OFFSET_INIT(blk_mq_hw_ctx_tags, "blk_mq_hw_ctx", "tags");
-+		MEMBER_OFFSET_INIT(blk_mq_tags_bitmap_tags, "blk_mq_tags",
-+			"bitmap_tags");
-+		MEMBER_OFFSET_INIT(blk_mq_tags_breserved_tags, "blk_mq_tags",
-+			"breserved_tags");
-+		MEMBER_OFFSET_INIT(blk_mq_tags_nr_reserved_tags, "blk_mq_tags",
-+			"nr_reserved_tags");
-+		MEMBER_OFFSET_INIT(blk_mq_tags_rqs, "blk_mq_tags", "rqs");
-+		STRUCT_SIZE_INIT(blk_mq_tags, "blk_mq_tags");
-+		STRUCT_SIZE_INIT(sbitmap, "sbitmap");
-+		STRUCT_SIZE_INIT(sbitmap_word, "sbitmap_word");
-+		MEMBER_OFFSET_INIT(sbitmap_word_word, "sbitmap_word", "word");
-+		MEMBER_OFFSET_INIT(sbitmap_word_cleared, "sbitmap_word", "cleared");
-+		MEMBER_OFFSET_INIT(sbitmap_depth, "sbitmap", "depth");
-+		MEMBER_OFFSET_INIT(sbitmap_shift, "sbitmap", "shift");
-+		MEMBER_OFFSET_INIT(sbitmap_map_nr, "sbitmap", "map_nr");
-+		MEMBER_OFFSET_INIT(sbitmap_map, "sbitmap", "map");
-+		MEMBER_OFFSET_INIT(sbitmap_queue_sb, "sbitmap_queue", "sb");
-+
- 	}
- 	MEMBER_OFFSET_INIT(subsys_private_klist_devices, "subsys_private",
- 		"klist_devices");
-diff --git a/symbols.c b/symbols.c
-index 5d12a021c769..c1f09556d710 100644
---- a/symbols.c
-+++ b/symbols.c
-@@ -10385,6 +10385,12 @@ dump_offset_table(char *spec, ulong makestruct)
- 		OFFSET(kset_list));
- 	fprintf(fp, "            request_list_count: %ld\n",
- 		OFFSET(request_list_count));
-+	fprintf(fp, "             request_cmd_flags: %ld\n",
-+		OFFSET(request_cmd_flags));
-+	fprintf(fp, "                     request_q: %ld\n",
-+		OFFSET(request_q));
-+	fprintf(fp, "                 request_state: %ld\n",
-+		OFFSET(request_state));
- 	fprintf(fp, "       request_queue_in_flight: %ld\n",
- 		OFFSET(request_queue_in_flight));
- 	fprintf(fp, "              request_queue_rq: %ld\n",
-@@ -10393,10 +10399,25 @@ dump_offset_table(char *spec, ulong makestruct)
- 		OFFSET(request_queue_mq_ops));
- 	fprintf(fp, "       request_queue_queue_ctx: %ld\n",
- 		OFFSET(request_queue_queue_ctx));
-+	fprintf(fp, "    request_queue_queue_hw_ctx: %ld\n",
-+		OFFSET(request_queue_queue_hw_ctx));
-+	fprintf(fp, "    request_queue_nr_hw_queues: %ld\n",
-+		OFFSET(request_queue_nr_hw_queues));
- 	fprintf(fp, "      blk_mq_ctx_rq_dispatched: %ld\n",
- 		OFFSET(blk_mq_ctx_rq_dispatched));
- 	fprintf(fp, "       blk_mq_ctx_rq_completed: %ld\n",
- 		OFFSET(blk_mq_ctx_rq_completed));
-+	fprintf(fp, "            blk_mq_hw_ctx_tags: %ld\n",
-+		OFFSET(blk_mq_hw_ctx_tags));
-+	fprintf(fp, "       blk_mq_tags_bitmap_tags: %ld\n",
-+		OFFSET(blk_mq_tags_bitmap_tags));
-+	fprintf(fp, "    blk_mq_tags_breserved_tags: %ld\n",
-+		OFFSET(blk_mq_tags_breserved_tags));
-+	fprintf(fp, "  blk_mq_tags_nr_reserved_tags: %ld\n",
-+		OFFSET(blk_mq_tags_nr_reserved_tags));
-+	fprintf(fp, "               blk_mq_tags_rqs: %ld\n",
-+		OFFSET(blk_mq_tags_rqs));
-+
- 	fprintf(fp, "  subsys_private_klist_devices: %ld\n",
- 		OFFSET(subsys_private_klist_devices));
- 	fprintf(fp, "                subsystem_kset: %ld\n",
-@@ -11003,6 +11024,7 @@ dump_offset_table(char *spec, ulong makestruct)
- 	fprintf(fp, "                       sbitmap: %ld\n", SIZE(sbitmap));
- 	fprintf(fp, "                 sbitmap_queue: %ld\n", SIZE(sbitmap_queue));
- 	fprintf(fp, "                sbq_wait_state: %ld\n", SIZE(sbq_wait_state));
-+	fprintf(fp, "                   blk_mq_tags: %ld\n", SIZE(blk_mq_tags));
- 
-         fprintf(fp, "\n                   array_table:\n");
- 	/*
--- 
-2.30.2
-
diff --git a/SOURCES/0010-Fix-for-dev-d-D-options-to-support-blk-mq-change-on-.patch b/SOURCES/0010-Fix-for-dev-d-D-options-to-support-blk-mq-change-on-.patch
deleted file mode 100644
index 8d5c25b..0000000
--- a/SOURCES/0010-Fix-for-dev-d-D-options-to-support-blk-mq-change-on-.patch
+++ /dev/null
@@ -1,121 +0,0 @@
-From 68ce0b9a35d77d767872dd1a729c50e4695a30a8 Mon Sep 17 00:00:00 2001
-From: Lianbo Jiang <lijiang@redhat.com>
-Date: Thu, 2 Jun 2022 20:12:56 +0800
-Subject: [PATCH 10/15] Fix for "dev -d|-D" options to support blk-mq change on
- Linux v5.18-rc1
-
-Kernel commit 4e5cc99e1e48 ("blk-mq: manage hctx map via xarray") removed
-the "queue_hw_ctx" member from struct request_queue at Linux v5.18-rc1,
-and replaced it with a struct xarray "hctx_table". Without the patch, the
-"dev -d|-D" options will print an error:
-
-  crash> dev -d
-  MAJOR GENDISK            NAME       REQUEST_QUEUE      TOTAL  READ WRITE
-
-  dev: invalid structure member offset: request_queue_queue_hw_ctx
-
-With the patch:
-  crash> dev -d
-  MAJOR GENDISK            NAME       REQUEST_QUEUE      TOTAL  READ WRITE
-      8 ffff8e99d0a1ae00   sda        ffff8e9c14c59980      10     6     4
-
-Signed-off-by: Lianbo Jiang <lijiang@redhat.com>
----
- defs.h    |  1 +
- dev.c     | 42 +++++++++++++++++++++++++++++++++---------
- symbols.c |  2 ++
- 3 files changed, 36 insertions(+), 9 deletions(-)
-
-diff --git a/defs.h b/defs.h
-index 2681586a33dc..7d3b73422f48 100644
---- a/defs.h
-+++ b/defs.h
-@@ -2180,6 +2180,7 @@ struct offset_table {                    /* stash of commonly-used offsets */
- 	long blk_mq_tags_breserved_tags;
- 	long blk_mq_tags_nr_reserved_tags;
- 	long blk_mq_tags_rqs;
-+	long request_queue_hctx_table;
- };
- 
- struct size_table {         /* stash of commonly-used sizes */
-diff --git a/dev.c b/dev.c
-index 4be4c96df8b0..0172c83ffaea 100644
---- a/dev.c
-+++ b/dev.c
-@@ -4369,20 +4369,42 @@ static void get_mq_diskio_from_hw_queues(ulong q, struct diskio *dio)
- 	uint cnt = 0;
- 	ulong addr = 0, hctx_addr = 0;
- 	ulong *hctx_array = NULL;
-+	struct list_pair *lp = NULL;
-+
-+	if (VALID_MEMBER(request_queue_hctx_table)) {
-+		addr = q + OFFSET(request_queue_hctx_table);
-+		cnt = do_xarray(addr, XARRAY_COUNT, NULL);
-+		lp = (struct list_pair *)GETBUF(sizeof(struct list_pair) * (cnt + 1));
-+		if (!lp)
-+			error(FATAL, "fail to get memory for list_pair.\n");
-+		lp[0].index = cnt;
-+		cnt = do_xarray(addr, XARRAY_GATHER, lp);
-+	} else {
-+		addr = q + OFFSET(request_queue_nr_hw_queues);
-+		readmem(addr, KVADDR, &cnt, sizeof(uint),
-+			"request_queue.nr_hw_queues", FAULT_ON_ERROR);
- 
--	addr = q + OFFSET(request_queue_nr_hw_queues);
--	readmem(addr, KVADDR, &cnt, sizeof(uint),
--		"request_queue.nr_hw_queues", FAULT_ON_ERROR);
--
--	addr = q + OFFSET(request_queue_queue_hw_ctx);
--	readmem(addr, KVADDR, &hctx_addr, sizeof(void *),
--		"request_queue.queue_hw_ctx", FAULT_ON_ERROR);
-+		addr = q + OFFSET(request_queue_queue_hw_ctx);
-+		readmem(addr, KVADDR, &hctx_addr, sizeof(void *),
-+			"request_queue.queue_hw_ctx", FAULT_ON_ERROR);
-+	}
- 
- 	hctx_array = (ulong *)GETBUF(sizeof(void *) * cnt);
--	if (!hctx_array)
-+	if (!hctx_array) {
-+		if (lp)
-+			FREEBUF(lp);
- 		error(FATAL, "fail to get memory for the hctx_array\n");
-+	}
-+
-+	if (lp && hctx_array) {
-+		uint i;
-+
-+		/* copy it from list_pair to hctx_array */
-+		for (i = 0; i < cnt; i++)
-+			hctx_array[i] = (ulong)lp[i].value;
- 
--	if (!readmem(hctx_addr, KVADDR, hctx_array, sizeof(void *) * cnt,
-+		FREEBUF(lp);
-+	} else if (!readmem(hctx_addr, KVADDR, hctx_array, sizeof(void *) * cnt,
- 			"request_queue.queue_hw_ctx[]", RETURN_ON_ERROR)) {
- 		FREEBUF(hctx_array);
- 		return;
-@@ -4755,6 +4777,8 @@ void diskio_init(void)
- 			"request_queue", "queue_hw_ctx");
- 		MEMBER_OFFSET_INIT(request_queue_nr_hw_queues,
- 			"request_queue", "nr_hw_queues");
-+		MEMBER_OFFSET_INIT(request_queue_hctx_table,
-+			"request_queue", "hctx_table");
- 		MEMBER_OFFSET_INIT(blk_mq_ctx_rq_dispatched, "blk_mq_ctx",
- 			"rq_dispatched");
- 		MEMBER_OFFSET_INIT(blk_mq_ctx_rq_completed, "blk_mq_ctx",
-diff --git a/symbols.c b/symbols.c
-index c1f09556d710..bee1faf92c83 100644
---- a/symbols.c
-+++ b/symbols.c
-@@ -10403,6 +10403,8 @@ dump_offset_table(char *spec, ulong makestruct)
- 		OFFSET(request_queue_queue_hw_ctx));
- 	fprintf(fp, "    request_queue_nr_hw_queues: %ld\n",
- 		OFFSET(request_queue_nr_hw_queues));
-+	fprintf(fp, "      request_queue_hctx_table: %ld\n",
-+		OFFSET(request_queue_hctx_table));
- 	fprintf(fp, "      blk_mq_ctx_rq_dispatched: %ld\n",
- 		OFFSET(blk_mq_ctx_rq_dispatched));
- 	fprintf(fp, "       blk_mq_ctx_rq_completed: %ld\n",
--- 
-2.30.2
-
diff --git a/SOURCES/0011-Doc-update-man-page-for-the-bpf-and-sbitmapq-command.patch b/SOURCES/0011-Doc-update-man-page-for-the-bpf-and-sbitmapq-command.patch
deleted file mode 100644
index 938e58d..0000000
--- a/SOURCES/0011-Doc-update-man-page-for-the-bpf-and-sbitmapq-command.patch
+++ /dev/null
@@ -1,43 +0,0 @@
-From c672d7a4c290712b32c54329cbdc1e74d122e813 Mon Sep 17 00:00:00 2001
-From: Lianbo Jiang <lijiang@redhat.com>
-Date: Mon, 6 Jun 2022 19:09:16 +0800
-Subject: [PATCH 11/15] Doc: update man page for the "bpf" and "sbitmapq"
- commands
-
-The information of the "bpf" and "sbitmapq" commands is missing in the man
-page of the crash utility.  Let's add it to the man page.
-
-Signed-off-by: Lianbo Jiang <lijiang@redhat.com>
----
- crash.8 | 8 ++++++++
- 1 file changed, 8 insertions(+)
-
-diff --git a/crash.8 b/crash.8
-index 1f3657b11e4c..e553a0b4adb3 100644
---- a/crash.8
-+++ b/crash.8
-@@ -584,6 +584,9 @@ creates a single-word alias for a command.
- .I ascii
- displays an ascii chart or translates a numeric value into its ascii components.
- .TP
-+.I bpf
-+provides information on currently-loaded eBPF programs and maps.
-+.TP
- .I bt
- displays a task's kernel-stack backtrace.  If it is given the
- .I \-a
-@@ -706,6 +709,11 @@ number of seconds between each command execution.
- .I runq
- displays the tasks on the run queue.
- .TP
-+.I sbitmapq
-+dumps the contents of the sbitmap_queue structure and the used
-+bits in the bitmap. Also, it shows the dump of a structure array
-+associated with the sbitmap_queue.
-+.TP
- .I search
- searches a range of user or kernel memory space for given value.
- .TP
--- 
-2.30.2
-
diff --git a/SOURCES/0012-sbitmapq-Fix-for-sbitmap_queue-without-ws_active-mem.patch b/SOURCES/0012-sbitmapq-Fix-for-sbitmap_queue-without-ws_active-mem.patch
deleted file mode 100644
index 2faa56d..0000000
--- a/SOURCES/0012-sbitmapq-Fix-for-sbitmap_queue-without-ws_active-mem.patch
+++ /dev/null
@@ -1,47 +0,0 @@
-From 9ce31a14d1083cbb2beb4a8e6eb7b88234b79a99 Mon Sep 17 00:00:00 2001
-From: Kazuhito Hagio <k-hagio-ab@nec.com>
-Date: Fri, 10 Jun 2022 11:49:47 +0900
-Subject: [PATCH 12/15] sbitmapq: Fix for sbitmap_queue without ws_active
- member
-
-The sbitmap_queue.ws_active member was added by kernel commit 5d2ee7122c73
-("sbitmap: optimize wakeup check") at Linux 5.0.  Without the patch, on
-earlier kernels the "sbitmapq" command fails with the following error:
-
-  crash> sbitmapq ffff8f1a3611cf10
-
-  sbitmapq: invalid structure member offset: sbitmap_queue_ws_active
-            FILE: sbitmap.c  LINE: 393  FUNCTION: sbitmap_queue_context_load()
-
-Signed-off-by: Kazuhito Hagio <k-hagio-ab@nec.com>
----
- sbitmap.c | 6 ++++--
- 1 file changed, 4 insertions(+), 2 deletions(-)
-
-diff --git a/sbitmap.c b/sbitmap.c
-index e8ebd62fe01c..152c28e6875f 100644
---- a/sbitmap.c
-+++ b/sbitmap.c
-@@ -325,7 +325,8 @@ static void sbitmap_queue_show(const struct sbitmap_queue_context *sqc,
- 
- 	fprintf(fp, "wake_batch = %u\n", sqc->wake_batch);
- 	fprintf(fp, "wake_index = %d\n", sqc->wake_index);
--	fprintf(fp, "ws_active = %d\n", sqc->ws_active);
-+	if (VALID_MEMBER(sbitmap_queue_ws_active)) /* 5.0 and later */
-+		fprintf(fp, "ws_active = %d\n", sqc->ws_active);
- 
- 	sbq_wait_state_size = SIZE(sbq_wait_state);
- 	wait_cnt_off = OFFSET(sbq_wait_state_wait_cnt);
-@@ -380,7 +381,8 @@ static void sbitmap_queue_context_load(ulong addr, struct sbitmap_queue_context
- 	sqc->wake_batch = UINT(sbitmap_queue_buf + OFFSET(sbitmap_queue_wake_batch));
- 	sqc->wake_index = INT(sbitmap_queue_buf + OFFSET(sbitmap_queue_wake_index));
- 	sqc->ws_addr = ULONG(sbitmap_queue_buf + OFFSET(sbitmap_queue_ws));
--	sqc->ws_active = INT(sbitmap_queue_buf + OFFSET(sbitmap_queue_ws_active));
-+	if (VALID_MEMBER(sbitmap_queue_ws_active))
-+		sqc->ws_active = INT(sbitmap_queue_buf + OFFSET(sbitmap_queue_ws_active));
- 	if (VALID_MEMBER(sbitmap_queue_round_robin))
- 		sqc->round_robin = BOOL(sbitmap_queue_buf + OFFSET(sbitmap_queue_round_robin));
- 	sqc->min_shallow_depth = UINT(sbitmap_queue_buf + OFFSET(sbitmap_queue_min_shallow_depth));
--- 
-2.30.2
-
diff --git a/SOURCES/0013-sbitmapq-Fix-for-sbitmap_word-without-cleared-member.patch b/SOURCES/0013-sbitmapq-Fix-for-sbitmap_word-without-cleared-member.patch
deleted file mode 100644
index e3d7396..0000000
--- a/SOURCES/0013-sbitmapq-Fix-for-sbitmap_word-without-cleared-member.patch
+++ /dev/null
@@ -1,109 +0,0 @@
-From 0d3e86fee5eead93b521a0e20a0e099ede4ab72b Mon Sep 17 00:00:00 2001
-From: Kazuhito Hagio <k-hagio-ab@nec.com>
-Date: Fri, 10 Jun 2022 11:49:47 +0900
-Subject: [PATCH 13/15] sbitmapq: Fix for sbitmap_word without cleared member
-
-The sbitmap_word.cleared member was added by kernel commit ea86ea2cdced
-("sbitmap: ammortize cost of clearing bits") at Linux 5.0.  Without the
-patch, on earlier kernels the "sbitmapq" command fails with the
-following error:
-
-  crash> sbitmapq ffff8f1a3611cf10
-
-  sbitmapq: invalid structure member offset: sbitmap_word_cleared
-            FILE: sbitmap.c  LINE: 92  FUNCTION: __sbitmap_weight()
-
-Signed-off-by: Kazuhito Hagio <k-hagio-ab@nec.com>
----
- sbitmap.c | 26 ++++++++++++++++++--------
- 1 file changed, 18 insertions(+), 8 deletions(-)
-
-diff --git a/sbitmap.c b/sbitmap.c
-index 152c28e6875f..c9f7209f9e3e 100644
---- a/sbitmap.c
-+++ b/sbitmap.c
-@@ -89,7 +89,6 @@ static unsigned int __sbitmap_weight(const struct sbitmap_context *sc, bool set)
- {
- 	const ulong sbitmap_word_size = SIZE(sbitmap_word);
- 	const ulong w_word_off = OFFSET(sbitmap_word_word);
--	const ulong w_cleared_off = OFFSET(sbitmap_word_cleared);
- 
- 	unsigned int weight = 0;
- 	ulong addr = sc->map_addr;
-@@ -111,7 +110,10 @@ static unsigned int __sbitmap_weight(const struct sbitmap_context *sc, bool set)
- 			word = ULONG(sbitmap_word_buf + w_word_off);
- 			weight += bitmap_weight(word, depth);
- 		} else {
--			cleared = ULONG(sbitmap_word_buf + w_cleared_off);
-+			if (VALID_MEMBER(sbitmap_word_cleared))
-+				cleared = ULONG(sbitmap_word_buf + OFFSET(sbitmap_word_cleared));
-+			else
-+				cleared = 0;
- 			weight += bitmap_weight(cleared, depth);
- 		}
- 
-@@ -130,7 +132,10 @@ static unsigned int sbitmap_weight(const struct sbitmap_context *sc)
- 
- static unsigned int sbitmap_cleared(const struct sbitmap_context *sc)
- {
--	return __sbitmap_weight(sc, false);
-+	if (VALID_MEMBER(sbitmap_word_cleared)) /* 5.0 and later */
-+		return __sbitmap_weight(sc, false);
-+
-+	return 0;
- }
- 
- static void sbitmap_emit_byte(unsigned int offset, uint8_t byte)
-@@ -149,7 +154,6 @@ static void sbitmap_bitmap_show(const struct sbitmap_context *sc)
- {
- 	const ulong sbitmap_word_size = SIZE(sbitmap_word);
- 	const ulong w_word_off = OFFSET(sbitmap_word_word);
--	const ulong w_cleared_off = OFFSET(sbitmap_word_cleared);
- 
- 	uint8_t byte = 0;
- 	unsigned int byte_bits = 0;
-@@ -169,7 +173,10 @@ static void sbitmap_bitmap_show(const struct sbitmap_context *sc)
- 		}
- 
- 		word = ULONG(sbitmap_word_buf + w_word_off);
--		cleared = ULONG(sbitmap_word_buf + w_cleared_off);
-+		if (VALID_MEMBER(sbitmap_word_cleared))
-+			cleared = ULONG(sbitmap_word_buf + OFFSET(sbitmap_word_cleared));
-+		else
-+			cleared = 0;
- 		word_bits = __map_depth(sc, i);
- 
- 		word &= ~cleared;
-@@ -219,7 +226,6 @@ static void __sbitmap_for_each_set(const struct sbitmap_context *sc,
- {
- 	const ulong sbitmap_word_size = SIZE(sbitmap_word);
- 	const ulong w_word_off = OFFSET(sbitmap_word_word);
--	const ulong w_cleared_off = OFFSET(sbitmap_word_cleared);
- 
- 	unsigned int index;
- 	unsigned int nr;
-@@ -245,7 +251,10 @@ static void __sbitmap_for_each_set(const struct sbitmap_context *sc,
- 		}
- 
- 		w_word = ULONG(sbitmap_word_buf + w_word_off);
--		w_cleared = ULONG(sbitmap_word_buf + w_cleared_off);
-+		if (VALID_MEMBER(sbitmap_word_cleared))
-+			w_cleared = ULONG(sbitmap_word_buf + OFFSET(sbitmap_word_cleared));
-+		else
-+			w_cleared = 0;
- 
- 		depth = min(__map_depth(sc, index) - nr, sc->depth - scanned);
- 
-@@ -297,7 +306,8 @@ static void sbitmap_queue_show(const struct sbitmap_queue_context *sqc,
- 
- 	fprintf(fp, "depth = %u\n", sc->depth);
- 	fprintf(fp, "busy = %u\n", sbitmap_weight(sc) - sbitmap_cleared(sc));
--	fprintf(fp, "cleared = %u\n", sbitmap_cleared(sc));
-+	if (VALID_MEMBER(sbitmap_word_cleared)) /* 5.0 and later */
-+		fprintf(fp, "cleared = %u\n", sbitmap_cleared(sc));
- 	fprintf(fp, "bits_per_word = %u\n", 1U << sc->shift);
- 	fprintf(fp, "map_nr = %u\n", sc->map_nr);
- 
--- 
-2.30.2
-
diff --git a/SOURCES/0014-sbitmapq-Fix-for-sbitmap_queue-without-min_shallow_d.patch b/SOURCES/0014-sbitmapq-Fix-for-sbitmap_queue-without-min_shallow_d.patch
deleted file mode 100644
index 49a6848..0000000
--- a/SOURCES/0014-sbitmapq-Fix-for-sbitmap_queue-without-min_shallow_d.patch
+++ /dev/null
@@ -1,48 +0,0 @@
-From 12fe6c7cdd768f87ce6e903a2bbfb0c0591585c5 Mon Sep 17 00:00:00 2001
-From: Kazuhito Hagio <k-hagio-ab@nec.com>
-Date: Fri, 10 Jun 2022 11:49:47 +0900
-Subject: [PATCH 14/15] sbitmapq: Fix for sbitmap_queue without
- min_shallow_depth member
-
-The sbitmap_queue.min_shallow_depth member was added by kernel commit
-a327553965de ("sbitmap: fix missed wakeups caused by sbitmap_queue_get_shallow()")
-at Linux 4.18.  Without the patch, on earlier kernels the "sbitmapq"
-command fails with the following error:
-
-  crash> sbitmapq ffff89bb7638ee50
-
-  sbitmapq: invalid structure member offset: sbitmap_queue_min_shallow_depth
-            FILE: sbitmap.c  LINE: 398  FUNCTION: sbitmap_queue_context_load()
-
-Signed-off-by: Kazuhito Hagio <k-hagio-ab@nec.com>
----
- sbitmap.c | 6 ++++--
- 1 file changed, 4 insertions(+), 2 deletions(-)
-
-diff --git a/sbitmap.c b/sbitmap.c
-index c9f7209f9e3e..bb2f19e6207b 100644
---- a/sbitmap.c
-+++ b/sbitmap.c
-@@ -371,7 +371,8 @@ static void sbitmap_queue_show(const struct sbitmap_queue_context *sqc,
- 	else if (VALID_MEMBER(sbitmap_round_robin)) /* 5.13 and later */
- 		fprintf(fp, "round_robin = %d\n", sc->round_robin);
- 
--	fprintf(fp, "min_shallow_depth = %u\n", sqc->min_shallow_depth);
-+	if (VALID_MEMBER(sbitmap_queue_min_shallow_depth)) /* 4.18 and later */
-+		fprintf(fp, "min_shallow_depth = %u\n", sqc->min_shallow_depth);
- }
- 
- static void sbitmap_queue_context_load(ulong addr, struct sbitmap_queue_context *sqc)
-@@ -395,7 +396,8 @@ static void sbitmap_queue_context_load(ulong addr, struct sbitmap_queue_context
- 		sqc->ws_active = INT(sbitmap_queue_buf + OFFSET(sbitmap_queue_ws_active));
- 	if (VALID_MEMBER(sbitmap_queue_round_robin))
- 		sqc->round_robin = BOOL(sbitmap_queue_buf + OFFSET(sbitmap_queue_round_robin));
--	sqc->min_shallow_depth = UINT(sbitmap_queue_buf + OFFSET(sbitmap_queue_min_shallow_depth));
-+	if (VALID_MEMBER(sbitmap_queue_min_shallow_depth))
-+		sqc->min_shallow_depth = UINT(sbitmap_queue_buf + OFFSET(sbitmap_queue_min_shallow_depth));
- 
- 	FREEBUF(sbitmap_queue_buf);
- }
--- 
-2.30.2
-
diff --git a/SOURCES/0015-Make-dev-d-D-options-parse-sbitmap-on-Linux-4.18-and.patch b/SOURCES/0015-Make-dev-d-D-options-parse-sbitmap-on-Linux-4.18-and.patch
deleted file mode 100644
index 1810539..0000000
--- a/SOURCES/0015-Make-dev-d-D-options-parse-sbitmap-on-Linux-4.18-and.patch
+++ /dev/null
@@ -1,83 +0,0 @@
-From c07068266b41450ca6821ee0a1a3adf34206015f Mon Sep 17 00:00:00 2001
-From: Kazuhito Hagio <k-hagio-ab@nec.com>
-Date: Fri, 10 Jun 2022 15:21:53 +0900
-Subject: [PATCH 15/15] Make "dev -d|-D" options parse sbitmap on Linux 4.18
- and later
-
-There have been a few reports that the "dev -d|-D" options displayed
-incorrect I/O stats due to racy blk_mq_ctx.rq_* counters.  To fix it,
-make the options parse sbitmap to count I/O stats on Linux 4.18 and
-later kernels, which include RHEL8 ones.
-
-To do this, adjust to the blk_mq_tags structure of Linux 5.10 through
-5.15 kernels, which contain kernel commit 222a5ae03cdd ("blk-mq: Use
-pointers for blk_mq_tags bitmap tags") and do not contain ae0f1a732f4a
-("blk-mq: Stop using pointers for blk_mq_tags bitmap tags").
-
-Signed-off-by: Kazuhito Hagio <k-hagio-ab@nec.com>
----
- dev.c | 25 +++++++++++++++++++++++--
- 1 file changed, 23 insertions(+), 2 deletions(-)
-
-diff --git a/dev.c b/dev.c
-index 0172c83ffaea..db97f8aebdc2 100644
---- a/dev.c
-+++ b/dev.c
-@@ -4339,6 +4339,10 @@ static void bt_for_each(ulong q, ulong tags, ulong sbq, uint reserved, uint nr_r
- static void queue_for_each_hw_ctx(ulong q, ulong *hctx, uint cnt, struct diskio *dio)
- {
- 	uint i;
-+	int bitmap_tags_is_ptr = 0;
-+
-+	if (MEMBER_TYPE("blk_mq_tags", "bitmap_tags") == TYPE_CODE_PTR)
-+		bitmap_tags_is_ptr = 1;
- 
- 	for (i = 0; i < cnt; i++) {
- 		ulong addr = 0, tags = 0;
-@@ -4357,9 +4361,17 @@ static void queue_for_each_hw_ctx(ulong q, ulong *hctx, uint cnt, struct diskio
- 
- 		if (nr_reserved_tags) {
- 			addr = tags + OFFSET(blk_mq_tags_breserved_tags);
-+			if (bitmap_tags_is_ptr &&
-+			    !readmem(addr, KVADDR, &addr, sizeof(ulong),
-+					"blk_mq_tags.bitmap_tags", RETURN_ON_ERROR))
-+				break;
- 			bt_for_each(q, tags, addr, 1, nr_reserved_tags, dio);
- 		}
- 		addr = tags + OFFSET(blk_mq_tags_bitmap_tags);
-+		if (bitmap_tags_is_ptr &&
-+		    !readmem(addr, KVADDR, &addr, sizeof(ulong),
-+				"blk_mq_tags.bitmap_tags", RETURN_ON_ERROR))
-+			break;
- 		bt_for_each(q, tags, addr, 0, nr_reserved_tags, dio);
- 	}
- }
-@@ -4423,14 +4435,23 @@ get_mq_diskio(unsigned long q, unsigned long *mq_count)
- 	unsigned long mctx_addr;
- 	struct diskio tmp = {0};
- 
--	if (INVALID_MEMBER(blk_mq_ctx_rq_dispatched) ||
--	    INVALID_MEMBER(blk_mq_ctx_rq_completed)) {
-+	/*
-+	 * Currently this function does not support old blk-mq implementation
-+	 * before 12f5b9314545 ("blk-mq: Remove generation seqeunce"), so
-+	 * filter them out.
-+	 */
-+	if (VALID_MEMBER(request_state)) {
-+		if (CRASHDEBUG(1))
-+			fprintf(fp, "mq: using sbitmap\n");
- 		get_mq_diskio_from_hw_queues(q, &tmp);
- 		mq_count[0] = tmp.read;
- 		mq_count[1] = tmp.write;
- 		return;
- 	}
- 
-+	if (CRASHDEBUG(1))
-+		fprintf(fp, "mq: using blk_mq_ctx.rq_{completed,dispatched} counters\n");
-+
- 	readmem(q + OFFSET(request_queue_queue_ctx), KVADDR, &queue_ctx,
- 		sizeof(ulong), "request_queue.queue_ctx",
- 		FAULT_ON_ERROR);
--- 
-2.30.2
-
diff --git a/SOURCES/crash-8.0.1_build.patch b/SOURCES/crash-8.0.1_build.patch
deleted file mode 100644
index 2845662..0000000
--- a/SOURCES/crash-8.0.1_build.patch
+++ /dev/null
@@ -1,33 +0,0 @@
---- crash-8.0.1/Makefile.orig
-+++ crash-8.0.1/Makefile
-@@ -204,7 +204,7 @@ GDB_FLAGS=
- # TARGET_CFLAGS will be configured automatically by configure
- TARGET_CFLAGS=
- 
--CRASH_CFLAGS=-g -D${TARGET} ${TARGET_CFLAGS} ${GDB_FLAGS} ${CFLAGS}
-+CRASH_CFLAGS=-g -D${TARGET} ${TARGET_CFLAGS} ${GDB_FLAGS} ${CFLAGS} ${CPPFLAGS} -fPIE
- 
- GPL_FILES=
- TAR_FILES=${SOURCE_FILES} Makefile ${GPL_FILES} README .rh_rpm_package crash.8 \
-@@ -256,7 +256,7 @@ all: make_configure
- gdb_merge: force
- 	@if [ ! -f ${GDB}/README ]; then \
- 	  $(MAKE) gdb_unzip; fi
--	@echo "${LDFLAGS} -lz -llzo2 -lsnappy -lzstd -ldl -rdynamic" > ${GDB}/gdb/mergelibs
-+	@echo "${LDFLAGS} -lz -llzo2 -lsnappy -lzstd -ldl -rdynamic -Wl,-z,now -fPIE" > ${GDB}/gdb/mergelibs
- 	@echo "../../${PROGRAM} ../../${PROGRAM}lib.a" > ${GDB}/gdb/mergeobj
- 	@rm -f ${PROGRAM}
- 	@if [ ! -f ${GDB}/config.status ]; then \
---- crash-8.0.1/configure.c.orig
-+++ crash-8.0.1/configure.c
-@@ -810,7 +810,8 @@ build_configure(struct supported_gdb_version *sp)
-                         fprintf(fp2, "%s\n", sp->GDB);
-                         sprintf(target_data.gdb_version, "%s", &sp->GDB[4]);
- 		} else if (strncmp(buf, "LDFLAGS=", strlen("LDFLAGS=")) == 0) {
--                       	fprintf(fp2, "LDFLAGS=%s\n", ldflags ? ldflags : "");
-+			if (ldflags)
-+				fprintf(fp2, "LDFLAGS=%s\n", ldflags ? ldflags : "");
- 		} else
- 			fprintf(fp2, "%s", buf);
- 
-
diff --git a/SOURCES/crash-8.0.2_build.patch b/SOURCES/crash-8.0.2_build.patch
new file mode 100644
index 0000000..898d09c
--- /dev/null
+++ b/SOURCES/crash-8.0.2_build.patch
@@ -0,0 +1,33 @@
+--- crash-8.0.2/Makefile.orig
++++ crash-8.0.2/Makefile
+@@ -204,7 +204,7 @@ GDB_FLAGS=
+ # TARGET_CFLAGS will be configured automatically by configure
+ TARGET_CFLAGS=
+ 
+-CRASH_CFLAGS=-g -D${TARGET} ${TARGET_CFLAGS} ${GDB_FLAGS} ${CFLAGS}
++CRASH_CFLAGS=-g -D${TARGET} ${TARGET_CFLAGS} ${GDB_FLAGS} ${CFLAGS} ${CPPFLAGS} -fPIE
+ 
+ GPL_FILES=
+ TAR_FILES=${SOURCE_FILES} Makefile ${GPL_FILES} README .rh_rpm_package crash.8 \
+@@ -256,7 +256,7 @@ all: make_configure
+ gdb_merge: force
+ 	@if [ ! -f ${GDB}/README ]; then \
+ 	  $(MAKE) gdb_unzip; fi
+-	@echo "${LDFLAGS} -lz -llzo2 -lsnappy -lzstd -ldl -rdynamic" > ${GDB}/gdb/mergelibs
++	@echo "${LDFLAGS} -lz -llzo2 -lsnappy -lzstd -ldl -rdynamic -Wl,-z,now -fPIE" > ${GDB}/gdb/mergelibs
+ 	@echo "../../${PROGRAM} ../../${PROGRAM}lib.a" > ${GDB}/gdb/mergeobj
+ 	@rm -f ${PROGRAM}
+ 	@if [ ! -f ${GDB}/config.status ]; then \
+--- crash-8.0.2/configure.c.orig
++++ crash-8.0.2/configure.c
+@@ -810,7 +810,8 @@ build_configure(struct supported_gdb_version *sp)
+                         fprintf(fp2, "%s\n", sp->GDB);
+                         sprintf(target_data.gdb_version, "%s", &sp->GDB[4]);
+ 		} else if (strncmp(buf, "LDFLAGS=", strlen("LDFLAGS=")) == 0) {
+-                       	fprintf(fp2, "LDFLAGS=%s\n", ldflags ? ldflags : "");
++			if (ldflags)
++				fprintf(fp2, "LDFLAGS=%s\n", ldflags ? ldflags : "");
+ 		} else
+ 			fprintf(fp2, "%s", buf);
+ 
+
diff --git a/SOURCES/lzo_snappy_zstd.patch b/SOURCES/lzo_snappy_zstd.patch
index 52e96e3..cfeb674 100644
--- a/SOURCES/lzo_snappy_zstd.patch
+++ b/SOURCES/lzo_snappy_zstd.patch
@@ -1,5 +1,5 @@
---- crash-8.0.1/Makefile.orig
-+++ crash-8.0.1/Makefile
+--- crash-8.0.2/Makefile.orig
++++ crash-8.0.2/Makefile
 @@ -256,7 +256,7 @@ all: make_configure
  gdb_merge: force
  	@if [ ! -f ${GDB}/README ]; then \
@@ -9,8 +9,8 @@
  	@echo "../../${PROGRAM} ../../${PROGRAM}lib.a" > ${GDB}/gdb/mergeobj
  	@rm -f ${PROGRAM}
  	@if [ ! -f ${GDB}/config.status ]; then \
---- crash-8.0.1/diskdump.c.orig
-+++ crash-8.0.1/diskdump.c
+--- crash-8.0.2/diskdump.c.orig
++++ crash-8.0.2/diskdump.c
 @@ -23,6 +23,9 @@
   * GNU General Public License for more details.
   */
diff --git a/SPECS/crash.spec b/SPECS/crash.spec
index 93b1635..ed45f85 100644
--- a/SPECS/crash.spec
+++ b/SPECS/crash.spec
@@ -3,7 +3,7 @@
 #
 Summary: Kernel analysis utility for live systems, netdump, diskdump, kdump, LKCD or mcore dumpfiles
 Name: crash
-Version: 8.0.1
+Version: 8.0.2
 Release: 2%{?dist}
 License: GPLv3
 Source0: https://github.com/crash-utility/crash/archive/crash-%{version}.tar.gz
@@ -18,23 +18,10 @@ Requires: binutils
 Provides: bundled(libiberty)
 Provides: bundled(gdb) = 10.2
 Patch0: lzo_snappy_zstd.patch
-Patch1: crash-8.0.1_build.patch
-Patch2: 0001-ppc64-update-the-NR_CPUS-to-8192.patch
-Patch3: 0001-sbitmapq-remove-struct-and-member-validation-in-sbit.patch
-Patch4: 0002-sbitmapq-fix-invalid-offset-for-sbitmap_queue_alloc_.patch
-Patch5: 0003-sbitmapq-fix-invalid-offset-for-sbitmap_queue_round_.patch
-Patch6: 0004-sbitmapq-fix-invalid-offset-for-sbitmap_word_depth-o.patch
-Patch7: 0005-Makefile-add-missing-crash_target.o-to-be-cleaned.patch
-Patch8: 0006-bt-x86_64-filter-out-idle-task-stack.patch
-Patch9: 0007-bt-arm64-add-support-for-bt-n-idle.patch
-Patch10: 0008-gdb-print-details-of-unnamed-struct-and-union.patch
-Patch11: 0009-Enhance-dev-d-D-options-to-support-blk-mq-sbitmap.patch
-Patch12: 0010-Fix-for-dev-d-D-options-to-support-blk-mq-change-on-.patch
-Patch13: 0011-Doc-update-man-page-for-the-bpf-and-sbitmapq-command.patch
-Patch14: 0012-sbitmapq-Fix-for-sbitmap_queue-without-ws_active-mem.patch
-Patch15: 0013-sbitmapq-Fix-for-sbitmap_word-without-cleared-member.patch
-Patch16: 0014-sbitmapq-Fix-for-sbitmap_queue-without-min_shallow_d.patch
-Patch17: 0015-Make-dev-d-D-options-parse-sbitmap-on-Linux-4.18-and.patch
+Patch1: crash-8.0.2_build.patch
+Patch2: 0001-gdb-Fix-an-assertion-failure-in-the-gdb-s-copy_type.patch
+Patch3: 0002-Fix-for-bt-command-printing-bogus-exception-frame-wa.patch
+Patch4: 0003-Fix-for-bt-command-unnecessarily-printing-an-excepti.patch
 
 %description
 The core analysis suite is a self-contained tool that can be used to
@@ -55,23 +42,11 @@ offered by Mission Critical Linux, or the LKCD kernel patch.
 %prep
 %setup -n %{name}-%{version} -q
 %patch0 -p1 -b lzo_snappy_zstd.patch
-%patch1 -p1 -b crash-8.0.1_build.patch
+%patch1 -p1 -b crash-8.0.2_build.patch
 %patch2 -p1
 %patch3 -p1
 %patch4 -p1
-%patch5 -p1
-%patch6 -p1
-%patch7 -p1
-%patch8 -p1
-%patch9 -p1
-%patch10 -p1
-%patch11 -p1
-%patch12 -p1
-%patch13 -p1
-%patch14 -p1
-%patch15 -p1
-%patch16 -p1
-%patch17 -p1
+
 
 %build
 
@@ -97,6 +72,13 @@ cp -p defs.h %{buildroot}%{_includedir}/crash
 %{_includedir}/*
 
 %changelog
+* Mon Feb 20 2023 Lianbo Jiang <lijiang@redhat.com> - 8.0.2-2
+- Fix an assertion failure in the gdb's copy_type()
+- Fix for "bt" command printing "bogus exception frame" warning
+
+* Thu Nov 17 2022 Lianbo Jiang <lijiang@redhat.com> - 8.0.2-1
+- Rebase to upstream crash 8.0.2
+
 * Fri Jun 10 2022 Lianbo Jiang <lijiang@redhat.com> - 8.0.1-2
 - Fix for the "struct -o" command issue
 - Enhance the "dev -d" and "bt" commands