mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 21:21:47 +00:00
x86: remove volatile keyword from clflush.
the p parameter is an explicit memory reference, and is enough to prevent gcc to being nasty here. The volatile seems completely not needed. Signed-off-by: Glauber de Oliveira Costa <gcosta@redhat.com> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
parent
929fd58913
commit
e34907ae18
@ -161,7 +161,7 @@ static inline void native_wbinvd(void)
|
||||
asm volatile("wbinvd": : :"memory");
|
||||
}
|
||||
|
||||
static inline void clflush(volatile void *__p)
|
||||
static inline void clflush(void *__p)
|
||||
{
|
||||
asm volatile("clflush %0" : "+m" (*(char __force *)__p));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user