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

2018-07-17 Thread Paolo Bonzini
On 16/07/2018 23:16, Eduardo Habkost wrote: > On Sat, Jul 14, 2018 at 03:30:00PM +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

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

2018-07-16 Thread Eduardo Habkost
On Sat, Jul 14, 2018 at 03:30:00PM +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 v3] dump: add kernel_gs_base to QEMU CPU state

2018-07-14 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