Re: [PATCH] Use descriptor's functions instead of inline assembly

2007-07-21 Thread Jan Engelhardt
On Jul 20 2007 10:56, Glauber de Oliveira Costa wrote: >diff --git a/arch/x86_64/kernel/head64.c b/arch/x86_64/kernel/head64.c >index 6c34bdd..dde41d7 100644 >--- a/arch/x86_64/kernel/head64.c >+++ b/arch/x86_64/kernel/head64.c >@@ -70,7 +70,7 @@ void __init x86_64_start_kernel(char * real_mode_da

Re: [PATCH] Use descriptor's functions instead of inline assembly

2007-07-20 Thread Chris Wright
* Glauber de Oliveira Costa ([EMAIL PROTECTED]) wrote: > This patch provides a new set of functions for managing the descriptor > tables that can be used instead of putting the raw assembly in .c files. Looks alright, some cleanups below > Remodeling of store_tr() suggested by Frederik Deweerdt.

Re: [PATCH] Use descriptor's functions instead of inline assembly

2007-07-20 Thread Brian Gerst
Frederik Deweerdt wrote: > On Fri, Jul 20, 2007 at 10:56:01AM -0300, Glauber de Oliveira Costa wrote: >> This patch provides a new set of functions for managing the descriptor >> tables that can be used instead of putting the raw assembly in .c files. >> >> Signed-off-by: Glauber de Oliveira C

[PATCH] Use descriptor's functions instead of inline assembly

2007-07-20 Thread Glauber de Oliveira Costa
This patch provides a new set of functions for managing the descriptor tables that can be used instead of putting the raw assembly in .c files. Remodeling of store_tr() suggested by Frederik Deweerdt. Signed-off-by: Glauber de Oliveira Costa <[EMAIL PROTECTED]> diff --git a/arch/x86_64/k

Re: [PATCH] Use descriptor's functions instead of inline assembly

2007-07-20 Thread Glauber de Oliveira Costa
On Fri, 2007-07-20 at 16:23 +0200, Frederik Deweerdt wrote: > On Fri, Jul 20, 2007 at 10:56:01AM -0300, Glauber de Oliveira Costa wrote: > > This patch provides a new set of functions for managing the descriptor > > tables that can be used instead of putting the raw assembly in .c files. > > >

Re: [PATCH] Use descriptor's functions instead of inline assembly

2007-07-20 Thread Frederik Deweerdt
On Fri, Jul 20, 2007 at 10:56:01AM -0300, Glauber de Oliveira Costa wrote: > This patch provides a new set of functions for managing the descriptor > tables that can be used instead of putting the raw assembly in .c files. > > Signed-off-by: Glauber de Oliveira Costa <[EMAIL PROTECTED]> > > -

[PATCH] Use descriptor's functions instead of inline assembly

2007-07-20 Thread Glauber de Oliveira Costa
This patch provides a new set of functions for managing the descriptor tables that can be used instead of putting the raw assembly in .c files. Signed-off-by: Glauber de Oliveira Costa <[EMAIL PROTECTED]> diff --git a/arch/x86_64/kernel/head64.c b/arch/x86_64/kernel/head64.c index 6c34bdd..dd