Re: [PATCH] Use wbinvd() macro instead of raw inline assembly in .c files

2007-07-21 Thread Muli Ben-Yehuda
On Fri, Jul 20, 2007 at 10:22:21AM -0700, H. Peter Anvin wrote: > Andi Kleen wrote: > > On Friday 20 July 2007 00:55:40 Glauber de Oliveira Costa wrote: > >> This patch uses the already-existant wbinvd() macro to replace > >> raw assembly to perform this very same task in some .c files > >> >

Re: [PATCH] Use wbinvd() macro instead of raw inline assembly in .c files

2007-07-20 Thread H. Peter Anvin
Andi Kleen wrote: > On Friday 20 July 2007 00:55:40 Glauber de Oliveira Costa wrote: >> This patch uses the already-existant wbinvd() macro to replace >> raw assembly to perform this very same task in some .c files >> >> Signed-off-by: Glauber de Oliveira Costa <[EMAIL PROTECTED]> >> >> diff -

Re: [PATCH] Use wbinvd() macro instead of raw inline assembly in .c files

2007-07-20 Thread Andi Kleen
On Friday 20 July 2007 00:55:40 Glauber de Oliveira Costa wrote: > This patch uses the already-existant wbinvd() macro to replace > raw assembly to perform this very same task in some .c files > > Signed-off-by: Glauber de Oliveira Costa <[EMAIL PROTECTED]> > > diff --git a/arch/x86_64/kernel

[PATCH] Use wbinvd() macro instead of raw inline assembly in .c files

2007-07-19 Thread Glauber de Oliveira Costa
This patch uses the already-existant wbinvd() macro to replace raw assembly to perform this very same task in some .c files Signed-off-by: Glauber de Oliveira Costa <[EMAIL PROTECTED]> diff --git a/arch/x86_64/kernel/tce.c b/arch/x86_64/kernel/tce.c index f61fb8e..afbb951 100644 --- a/arch/x8