xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
* Ping: [PATCH] x86: compat_show_guest_stack() should not truncate MFN
@ 2013-01-07 12:00 Jan Beulich
  2013-01-07 12:07 ` Ian Campbell
  0 siblings, 1 reply; 3+ messages in thread
From: Jan Beulich @ 2013-01-07 12:00 UTC (permalink / raw)
  To: xen-devel

>>> On 20.12.12 at 17:54, Jan Beulich wrote:
> Re-using "addr" here was a mistake, as it is a 32-bit quantity.
> 
> Signed-off-by: Jan Beulich <jbeulich@suse.com>
> 
> --- a/xen/arch/x86/x86_64/compat/traps.c
> +++ b/xen/arch/x86/x86_64/compat/traps.c
> @@ -20,11 +20,12 @@ void compat_show_guest_stack(struct vcpu
>      if ( v != current )
>      {
>          struct vcpu *vcpu;
> +        unsigned long mfn;
>  
>          ASSERT(guest_kernel_mode(v, regs));
> -        addr = read_cr3() >> PAGE_SHIFT;
> +        mfn = read_cr3() >> PAGE_SHIFT;
>          for_each_vcpu( v->domain, vcpu )
> -            if ( pagetable_get_pfn(vcpu->arch.guest_table) == addr )
> +            if ( pagetable_get_pfn(vcpu->arch.guest_table) == mfn )
>                  break;
>          if ( !vcpu )
>          {
> 
> 
> 

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-01-07 12:22 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-07 12:00 Ping: [PATCH] x86: compat_show_guest_stack() should not truncate MFN Jan Beulich
2013-01-07 12:07 ` Ian Campbell
2013-01-07 12:22   ` Keir Fraser

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).