bug in KdAddrOut

has anybody tried !ptov pfn in windbg version

Microsoft (R) Windows Debugger Version 6.12.0002.633 X86

it seems the output comes out in black color

i checked out and it seems the outmask contains just 0x88000000

ie

DEBUG_IOUTPUT_KD_PROTOCOL 0x80000000 |
DEBUG_IOUTPUT_ADDR_TRANSLATE 0x08000000

i patched it to 0x88000001

ie orred DEBUG_OUTPUT_NORMAL 0x00000001 to the mask and it
seems the problem goes away

CPU Disasm
Address Command Comments
020F471C PUSH 0 ; /Arg5 = 0
020F471E MOV ECX, DWORD PTR SS:[LOCAL.1] ; |
020F4721 PUSH ECX ; |Arg4 => OFFSET ARG.2
020F4722 MOV EDX, DWORD PTR SS:[ARG.1] ; |
020F4725 PUSH EDX ; |Arg3 => [ARG.1]
020F4726 PUSH 88000001 ; |Arg2 = 88000001
020F472B PUSH 2 ; |Arg1 = 2
020F472D CALL dbgeng.AnyMaskOutVa ; \dbgeng.AnyMaskOutVa

maybe somebody from ms windbgteam check it out

i also cced this mail to xxxxx@microsoft.com

thanks and regards

raj_r