kvm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Jan Kiszka <jan.kiszka@web.de>
To: Avi Kivity <avi@redhat.com>
Cc: kvm@vger.kernel.org
Subject: Re: [PATCH 16/17] kvm-userspace: Provide compat wrapper for set_debugreg
Date: Wed, 08 Oct 2008 22:25:56 +0200	[thread overview]
Message-ID: <48ED1754.5050706@web.de> (raw)
In-Reply-To: <48EB535A.8020305@redhat.com>

[-- Attachment #1: Type: text/plain, Size: 2108 bytes --]

Avi Kivity wrote:
> Jan Kiszka wrote:
>> Older set_debugreg macros did not allow to pass the register number as
>> constant (without additional typcasting). Catch this as the latest kvm
>> debug changes make use of this property.
>>
>> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
>> ---
>>  kernel/external-module-compat-comm.h |   10 ++++++++++
>>  1 file changed, 10 insertions(+)
>>
>> Index: b/kernel/external-module-compat-comm.h
>> ===================================================================
>> --- a/kernel/external-module-compat-comm.h
>> +++ b/kernel/external-module-compat-comm.h
>> @@ -539,6 +539,16 @@ struct pci_dev *pci_get_bus_and_slot(uns
>>  
>>  #endif
>>  
>> +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,25) && defined(__x86_64__)
>> +
>> +#undef set_debugreg
>> +#define set_debugreg(value, register) \
>> +    __asm__("movq %0,%%db" #register \
>> +        : /* no output */ \
>> +        :"r" ((unsigned long)value))
>> +
>> +#endif
>> +
>>  #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,21)
>>  
>>   
> 
> Should be in the x86 specific file (kernel/x86/external-module.h)
> 

Indeed.

-----------

Older set_debugreg macros did not allow to pass the register number as
constant (without additional typcasting). Catch this as the latest kvm
debug changes make use of this property.

Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
---
 kernel/x86/external-module-compat.h |   10 ++++++++++
 1 file changed, 10 insertions(+)

Index: b/kernel/x86/external-module-compat.h
===================================================================
--- a/kernel/x86/external-module-compat.h
+++ b/kernel/x86/external-module-compat.h
@@ -334,3 +334,13 @@ struct kvm_desc_ptr {
 #define FEATURE_CONTROL_LOCKED		(1<<0)
 #define FEATURE_CONTROL_VMXON_ENABLED	(1<<2)
 #endif
+
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,25) && defined(__x86_64__)
+
+#undef set_debugreg
+#define set_debugreg(value, register) \
+	__asm__("movq %0,%%db" #register \
+		: /* no output */ \
+		:"r" ((unsigned long)value))
+
+#endif


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 257 bytes --]

  reply	other threads:[~2008-10-08 20:28 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-10-06  9:14 [PATCH 00/17] kvm-userspace: Fix and improve guest debugging and x86 debug registers Jan Kiszka
2008-10-06  9:14 ` [PATCH 01/17] kvm-userspace: Remove old guest debugging hooks Jan Kiszka
2008-10-06  9:14 ` [PATCH 02/17] qemu: Return appropriate watch message to gdb Jan Kiszka
2008-10-06  9:14 ` [PATCH 03/17] qemu: Refactor and enhance break/watchpoint API Jan Kiszka
2008-10-06  9:14 ` [PATCH 04/17] qemu: Set mem_io_vaddr on io_read Jan Kiszka
2008-10-06  9:14 ` [PATCH 05/17] qemu: Respect length of watchpoints Jan Kiszka
2008-10-07 12:04   ` Avi Kivity
2008-10-08 20:22     ` Jan Kiszka
2008-10-06  9:14 ` [PATCH 06/17] qemu: Introduce next_cflags Jan Kiszka
2008-10-07 12:07   ` Avi Kivity
2008-10-06  9:14 ` [PATCH 07/17] qemu: Switch self-modified code recompilation to next_cflags Jan Kiszka
2008-10-06  9:14 ` [PATCH 08/17] qemu: Restore pc on watchpoint hits - v3 Jan Kiszka
2008-10-06  9:14 ` [PATCH 09/17] qemu: Remove premature memop TB terminations Jan Kiszka
2008-10-06  9:14 ` [PATCH 10/17] qemu: Improve debugging of SMP guests Jan Kiszka
2008-10-07 12:12   ` Avi Kivity
2008-10-08 20:25     ` Jan Kiszka
2008-10-06  9:14 ` [PATCH 11/17] qemu: Introduce BP_WATCHPOINT_HIT flag Jan Kiszka
2008-10-06  9:14 ` [PATCH 12/17] qemu: Add debug exception hook Jan Kiszka
2008-10-06  9:14 ` [PATCH 13/17] qemu: Introduce BP_CPU as a breakpoint type Jan Kiszka
2008-10-06  9:14 ` [PATCH 14/17] qemu: x86: Debug register emulation Jan Kiszka
2008-10-07 12:15   ` Avi Kivity
2008-10-08 20:25     ` Jan Kiszka
2008-10-06  9:14 ` [PATCH 15/17] kvm-userspace: Switch to new guest debug interface Jan Kiszka
2008-10-06  9:14 ` [PATCH 16/17] kvm-userspace: Provide compat wrapper for set_debugreg Jan Kiszka
2008-10-07 12:17   ` Avi Kivity
2008-10-08 20:25     ` Jan Kiszka [this message]
2008-10-06  9:14 ` [PATCH 17/17] kvm-userspace: remove obsolete special_reload_dr7 hack Jan Kiszka
2008-10-07 12:18 ` [PATCH 00/17] kvm-userspace: Fix and improve guest debugging and x86 debug registers Avi Kivity
2008-10-07 12:20   ` Jan Kiszka
2008-11-17 22:44 ` Markus Armbruster
2008-11-18  9:08   ` Jan Kiszka

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=48ED1754.5050706@web.de \
    --to=jan.kiszka@web.de \
    --cc=avi@redhat.com \
    --cc=kvm@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).