From e1342127f0c987a1b9247472b64479834caa0aa4 Mon Sep 17 00:00:00 2001 From: Pierre Schweitzer Date: Mon, 7 Jan 2019 08:41:36 +0100 Subject: [PATCH] [NTOSKRNL] In !irpfind, add info about current stack major/minor --- ntoskrnl/mm/ARM3/kdbg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ntoskrnl/mm/ARM3/kdbg.c b/ntoskrnl/mm/ARM3/kdbg.c index c0fdf6dc9e8..ebaf494df68 100644 --- a/ntoskrnl/mm/ARM3/kdbg.c +++ b/ntoskrnl/mm/ARM3/kdbg.c @@ -490,7 +490,7 @@ ExpKdbgExtIrpFindPrint( { if (!IsComplete) { - KdbpPrint("%p Thread %p current stack belongs to %wZ\n", Irp, Irp->Tail.Overlay.Thread, DriverName); + KdbpPrint("%p Thread %p current stack (%x, %x) belongs to %wZ\n", Irp, Irp->Tail.Overlay.Thread, IoStack->MajorFunction, IoStack->MinorFunction, DriverName); } else { -- 2.17.1