qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] Re: [PATCH] Guest debugging support for KVM


From: Jan Kiszka
Subject: [Qemu-devel] Re: [PATCH] Guest debugging support for KVM
Date: Thu, 15 Jan 2009 22:26:45 +0100
User-agent: Mozilla/5.0 (X11; U; Linux i686 (x86_64); de; rv:1.8.1.12) Gecko/20080226 SUSE/2.0.0.12-1.1 Thunderbird/2.0.0.12 Mnenhy/0.7.5.666

Anthony Liguori wrote:
> Jan Kiszka wrote:
>> [ Also available via git://git.kiszka.org/qemu.git queue/gdb ]
>>
>> This is a backport of the guest debugging support for the KVM
>> accelerator that is now part of the KVM tree. It implements the reworked
>> KVM kernel API for guest debugging (KVM_CAP_SET_GUEST_DEBUG) which is
>> not yet part of any mainline kernel but will probably be 2.6.30 stuff.
>> So far supported is x86, but PPC is expected to catch up soon.
>>
>> Core features are:
>>  - unlimited soft-breakpoints via code patching
>>  - hardware-assisted x86 breakpoints and watchpoints
>>
>> Open issues: Writing soft breakpoints to BIOS code. cpu_memory_rw_debug
>> does not work here. Suggestion to fix this cleanly are welcome.
>>
>> Signed-off-by: Jan Kiszka <address@hidden>
>> ---
>>
>>  configure         |    4 +
>>  exec.c            |   10 ++-
>>  gdbstub.c         |   29 +++++++--
>>  gdbstub.h         |    7 ++
>>  kvm-all.c         |  172
>> +++++++++++++++++++++++++++++++++++++++++++++++++++++
>>  kvm.h             |   41 +++++++++++++
>>  target-i386/kvm.c |  172
>> +++++++++++++++++++++++++++++++++++++++++++++++++++++
>>  7 files changed, 423 insertions(+), 12 deletions(-)
>>
>> diff --git a/configure b/configure
>> index a8ea55a..afbe1e0 100755
>> --- a/configure
>> +++ b/configure
>> @@ -479,11 +479,11 @@ case "$cpu" in
>>             ARCH_CFLAGS="-march=z900"
>>             ;;
>>      i386)
>> -           ARCH_CFLAGS="-m32"
>> +           ARCH_CFLAGS="-m32 -DCONFIG_X86"
>>             ARCH_LDFLAGS="-m32"
>>             ;;
>>      x86_64)
>> -           ARCH_CFLAGS="-m64"
>> +           ARCH_CFLAGS="-m64 -DCONFIG_X86"
>>             ARCH_LDFLAGS="-m64"
>>             ;;
>>  esac
>>   
> 
> This seems unnecessary, no?

Nope. I suggested and Avi merged a patch to define
KVM_CAP_SET_GUEST_DEBUG only for those archs (ie. currently x86) that
really support it. That avoids having to define empty stubs on the other
KVM archs.

So we need to define the proper arch switch to make the CAP appear in
the kernel header. Also note that there are much more conditional CAP
defines queued up or already merged into mainline.

> 
> The rest looks good.
> 
> Regards,
> 
> Anthony Liguori
> 
> 
> 

Jan

Attachment: signature.asc
Description: OpenPGP digital signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]