From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Cooper Subject: Re: [PATCH 3/4] x86/traps: replace plain numbers Date: Thu, 22 Jan 2015 14:45:48 +0000 Message-ID: <54C10D1C.5020309@citrix.com> References: <54C10EE1020000780005827E@mail.emea.novell.com> <54C1107C0200007800058299@mail.emea.novell.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mail6.bemta14.messagelabs.com ([193.109.254.103]) by lists.xen.org with esmtp (Exim 4.72) (envelope-from ) id 1YEJ1I-0001Uv-Qz for xen-devel@lists.xenproject.org; Thu, 22 Jan 2015 14:46:04 +0000 In-Reply-To: <54C1107C0200007800058299@mail.emea.novell.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Jan Beulich , xen-devel Cc: Keir Fraser List-Id: xen-devel@lists.xenproject.org On 22/01/15 14:00, Jan Beulich wrote: > ... making the code better document itself. No functional change > intended. > > Note that for now (as we don't support RTM yet) DR_STATUS_RESERVED_ONE > and its users don't take DR_NOT_RTM into consideration yet. > > Signed-off-by: Jan Beulich Reviewed-by: Andrew Cooper > > --- a/xen/arch/x86/traps.c > +++ b/xen/arch/x86/traps.c > @@ -531,9 +531,9 @@ static void instruction_done( > regs->eflags &= ~X86_EFLAGS_RF; > if ( bpmatch || (regs->eflags & X86_EFLAGS_TF) ) > { > - current->arch.debugreg[6] |= bpmatch | 0xffff0ff0; > + current->arch.debugreg[6] |= bpmatch | DR_STATUS_RESERVED_ONE; > if ( regs->eflags & X86_EFLAGS_TF ) > - current->arch.debugreg[6] |= 0x4000; > + current->arch.debugreg[6] |= DR_STEP; > do_guest_trap(TRAP_debug, regs, 0); > } > } > @@ -3872,8 +3872,8 @@ long set_debugreg(struct vcpu *v, unsign > * DR6: Bits 4-11,16-31 reserved (set to 1). > * Bit 12 reserved (set to 0). > */ > - value &= 0xffffefff; /* reserved bits => 0 */ > - value |= 0xffff0ff0; /* reserved bits => 1 */ > + value &= ~DR_STATUS_RESERVED_ZERO; /* reserved bits => 0 */ > + value |= DR_STATUS_RESERVED_ONE; /* reserved bits => 1 */ > if ( v == curr ) > write_debugreg(6, value); > break; > --- a/xen/include/asm-x86/debugreg.h > +++ b/xen/include/asm-x86/debugreg.h > @@ -21,6 +21,8 @@ > #define DR_STEP (0x4000) /* single-step */ > #define DR_SWITCH (0x8000) /* task switch */ > #define DR_NOT_RTM (0x10000) /* clear: #BP inside RTM region */ > +#define DR_STATUS_RESERVED_ZERO (~0xffffeffful) /* Reserved, read as zero */ > +#define DR_STATUS_RESERVED_ONE 0xffff0ff0ul /* Reserved, read as one */ > > /* Now define a bunch of things for manipulating the control register. > The top two bytes of the control register consist of 4 fields of 4 > > >