Re: [Qemu-devel] [PATCH v2] dump: add kernel_gs_base to QEMU CPU state

2018-07-13 Thread Eduardo Habkost
On Thu, Jul 12, 2018 at 08:29:27PM +0300, Viktor Prutyanov wrote: > This patch adds field with content of KERNEL_GS_BASE MSR to QEMU note in > ELF dump. > > On Windows, if all vCPUs are running usermode tasks at the time the dump is > created, this can be helpful in the discovery of guest system s

Re: [Qemu-devel] [PATCH v2] dump: add kernel_gs_base to QEMU CPU state

2018-07-13 Thread Eduardo Habkost
On Thu, Jul 12, 2018 at 08:29:27PM +0300, Viktor Prutyanov wrote: > This patch adds field with content of KERNEL_GS_BASE MSR to QEMU note in > ELF dump. > > On Windows, if all vCPUs are running usermode tasks at the time the dump is > created, this can be helpful in the discovery of guest system s

[Qemu-devel] [PATCH v2] dump: add kernel_gs_base to QEMU CPU state

2018-07-12 Thread Viktor Prutyanov
This patch adds field with content of KERNEL_GS_BASE MSR to QEMU note in ELF dump. On Windows, if all vCPUs are running usermode tasks at the time the dump is created, this can be helpful in the discovery of guest system structures during conversion ELF dump to MEMORY.DMP dump. Signed-off-by: Vik