WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-devel

Re: [Xen-devel] [PATCH] %fs/%gs cleanup in mmu_context.h

To: Chris Wright <chrisw@xxxxxxxx>
Subject: Re: [Xen-devel] [PATCH] %fs/%gs cleanup in mmu_context.h
From: Vincent Hanquez <vincent.hanquez@xxxxxxxxxxxx>
Date: Sat, 13 Aug 2005 01:23:24 +0200
Cc: xen-devel@xxxxxxxxxxxxxxxxxxx
Delivery-date: Fri, 12 Aug 2005 23:21:46 +0000
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
In-reply-to: <20050812230549.GI7901@xxxxxxxxxxxxxxxxxxx>
List-help: <mailto:xen-devel-request@lists.xensource.com?subject=help>
List-id: Xen developer discussion <xen-devel.lists.xensource.com>
List-post: <mailto:xen-devel@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=unsubscribe>
References: <20050812230549.GI7901@xxxxxxxxxxxxxxxxxxx>
Sender: xen-devel-bounces@xxxxxxxxxxxxxxxxxxx
User-agent: Mutt/1.5.9i
On Fri, Aug 12, 2005 at 04:05:49PM -0700, Chris Wright wrote:
> 
> diff -r ba46bd7f5cdf 
> linux-2.6-xen-sparse/include/asm-xen/asm-i386/mmu_context.h
> --- a/linux-2.6-xen-sparse/include/asm-xen/asm-i386/mmu_context.h     Fri Aug 
> 12 15:59:34 2005
> +++ b/linux-2.6-xen-sparse/include/asm-xen/asm-i386/mmu_context.h     Fri Aug 
> 12 15:59:38 2005
> @@ -34,10 +34,10 @@
>        * are always kernel segments while inside the kernel. Must
>        * happen before reload of cr3/ldt (i.e., not in __switch_to).
>        */
> -     __asm__ __volatile__ ( "mov %%fs,%0 ; mov %%gs,%1"
> -             : "=m" (*(int *)&current->thread.fs),
> -               "=m" (*(int *)&current->thread.gs));
> -     __asm__ __volatile__ ( "mov %0,%%fs ; mov %0,%%gs"
> +     asm volatile ( "movl %%fs,%0 ; movl %%gs,%1"
> +             : "=m" (current->thread.fs),
> +               "=m" (current->thread.gs));
> +     asm volatile ( "movl %0,%%fs ; movl %0,%%gs"
>               : : "r" (0) );
>  }
>  

The first inline asm is wrong.
latest binutils no longer accept instructions for moving between a
segment register and a 32bit memory location. you should keep the "mov"
instead of "movl".

see:
http://sourceware.org/ml/binutils/2005-03/msg00873.html

> @@ -100,7 +100,7 @@
>  }
>  
>  #define deactivate_mm(tsk, mm) \
> -     asm("mov %0,%%fs ; mov %0,%%gs": :"r" (0))
> +     asm("movl %0,%%fs ; movl %0,%%gs": :"r" (0))

This one clearing the segment register is fine.

-- 
Vincent Hanquez

_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel

<Prev in Thread] Current Thread [Next in Thread>