Searched hist:"5367 b6887e7d8c870a5da7d9b8c6e9c207684e43" (Results 1 – 2 of 2) sorted by relevance
/linux/arch/x86/kernel/ |
H A D | alternative.c | diff 5367b6887e7d8c870a5da7d9b8c6e9c207684e43 Thu Sep 10 03:53:50 CEST 2009 Ben Hutchings <ben@decadent.org.uk> x86: Fix code patching for paravirt-alternatives on 486
As reported in <http://bugs.debian.org/511703> and <http://bugs.debian.org/515982>, kernels with paravirt-alternatives enabled crash in text_poke_early() on at least some 486-class processors.
The problem is that text_poke_early() itself uses inline functions affected by paravirt-alternatives and so will modify instructions that have already been prefetched. Pentium and later processors will invalidate the prefetched instructions in this case, but 486-class processors do not.
Change sync_core() to limit prefetching on 486-class (and 386-class) processors, and move the call to sync_core() above the call to the modifiable local_irq_restore().
Signed-off-by: Ben Hutchings <ben@decadent.org.uk> LKML-Reference: <1252547631.3423.134.camel@localhost> Signed-off-by: H. Peter Anvin <hpa@zytor.com>
|
/linux/arch/x86/include/asm/ |
H A D | processor.h | diff 5367b6887e7d8c870a5da7d9b8c6e9c207684e43 Thu Sep 10 03:53:50 CEST 2009 Ben Hutchings <ben@decadent.org.uk> x86: Fix code patching for paravirt-alternatives on 486
As reported in <http://bugs.debian.org/511703> and <http://bugs.debian.org/515982>, kernels with paravirt-alternatives enabled crash in text_poke_early() on at least some 486-class processors.
The problem is that text_poke_early() itself uses inline functions affected by paravirt-alternatives and so will modify instructions that have already been prefetched. Pentium and later processors will invalidate the prefetched instructions in this case, but 486-class processors do not.
Change sync_core() to limit prefetching on 486-class (and 386-class) processors, and move the call to sync_core() above the call to the modifiable local_irq_restore().
Signed-off-by: Ben Hutchings <ben@decadent.org.uk> LKML-Reference: <1252547631.3423.134.camel@localhost> Signed-off-by: H. Peter Anvin <hpa@zytor.com>
|