Skip to content

Commit 7d38cc0

Browse files
committed
Merge tag 'please-pull-ia64-erratum' of git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux
Pull itanium erratum fix from Tony Luck: "Small workaround for a rare, but annoying, erratum #237" * tag 'please-pull-ia64-erratum' of git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux: [IA64] Change default PSR.ac from '1' to '0' (Fix erratum #237)
2 parents 10ec34f + c0b5a64 commit 7d38cc0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

arch/ia64/kernel/head.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ start_ap:
259259
* Switch into virtual mode:
260260
*/
261261
movl r16=(IA64_PSR_IT|IA64_PSR_IC|IA64_PSR_DT|IA64_PSR_RT|IA64_PSR_DFH|IA64_PSR_BN \
262-
|IA64_PSR_DI|IA64_PSR_AC)
262+
|IA64_PSR_DI)
263263
;;
264264
mov cr.ipsr=r16
265265
movl r17=1f

arch/ia64/kernel/ivt.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
#include <asm/unistd.h>
5959
#include <asm/errno.h>
6060

61-
#if 1
61+
#if 0
6262
# define PSR_DEFAULT_BITS psr.ac
6363
#else
6464
# define PSR_DEFAULT_BITS 0

arch/ia64/kvm/vmm_ivt.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
#include "kvm_minstate.h"
6565
#include "vti.h"
6666

67-
#if 1
67+
#if 0
6868
# define PSR_DEFAULT_BITS psr.ac
6969
#else
7070
# define PSR_DEFAULT_BITS 0

0 commit comments

Comments
 (0)