diff options
author | David S. Miller <davem@davemloft.net> | 2010-04-19 01:30:51 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-04-19 01:30:51 -0700 |
commit | 6c94b1ee0ca2bfb526d779c088ec20da6a3761db (patch) | |
tree | c6b141ac6de8cd761c0267aaa09e111f852f17f0 /arch | |
parent | ec687886de00e1e63f3d821ccade9a61590408ed (diff) | |
download | linux-6c94b1ee0ca2bfb526d779c088ec20da6a3761db.tar.bz2 |
sparc64: Fix PREEMPT_ACTIVE value.
It currently overlaps the NMI bit.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/sparc/include/asm/thread_info_64.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sparc/include/asm/thread_info_64.h b/arch/sparc/include/asm/thread_info_64.h index 9e2d9447f2ad..4827a3aeac7f 100644 --- a/arch/sparc/include/asm/thread_info_64.h +++ b/arch/sparc/include/asm/thread_info_64.h @@ -111,7 +111,7 @@ struct thread_info { #define THREAD_SHIFT PAGE_SHIFT #endif /* PAGE_SHIFT == 13 */ -#define PREEMPT_ACTIVE 0x4000000 +#define PREEMPT_ACTIVE 0x10000000 /* * macros/functions for gaining access to the thread information structure |