diff --git a/[refs] b/[refs] index 8815e42fbb4f..2c4fd6eff225 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 98d8256739f2c6c636fa2da359f5949c739ae839 +refs/heads/master: 03491c92932b8d2dab1bb298e0122ff6d39680af diff --git a/trunk/include/asm-i386/atomic.h b/trunk/include/asm-i386/atomic.h index 0baa2f89463c..437aac801711 100644 --- a/trunk/include/asm-i386/atomic.h +++ b/trunk/include/asm-i386/atomic.h @@ -182,7 +182,7 @@ static __inline__ int atomic_add_return(int i, atomic_t *v) int __i; #ifdef CONFIG_M386 unsigned long flags; - if(unlikely(boot_cpu_data.x86==3)) + if(unlikely(boot_cpu_data.x86 <= 3)) goto no_xadd; #endif /* Modern 486+ processor */ diff --git a/trunk/include/asm-i386/local.h b/trunk/include/asm-i386/local.h index e13d3e98823f..6e85975b9ed2 100644 --- a/trunk/include/asm-i386/local.h +++ b/trunk/include/asm-i386/local.h @@ -135,7 +135,7 @@ static __inline__ long local_add_return(long i, local_t *l) long __i; #ifdef CONFIG_M386 unsigned long flags; - if(unlikely(boot_cpu_data.x86==3)) + if(unlikely(boot_cpu_data.x86 <= 3)) goto no_xadd; #endif /* Modern 486+ processor */