diff options
author | Kyle McMartin <kyle@parisc-linux.org> | 2006-03-24 21:24:21 -0700 |
---|---|---|
committer | Kyle McMartin <kyle@hera.kernel.org> | 2006-03-30 17:48:54 +0000 |
commit | 50a34dbd612925f2ec55b1781632835ef36b97d5 (patch) | |
tree | 1624f33bdbdd367efb8fadebe80da7db275ea1e6 /include/asm-parisc | |
parent | bc8846c522264d2522b0082321ec8c2051a4536f (diff) | |
download | kernel_samsung_espresso10-50a34dbd612925f2ec55b1781632835ef36b97d5.zip kernel_samsung_espresso10-50a34dbd612925f2ec55b1781632835ef36b97d5.tar.gz kernel_samsung_espresso10-50a34dbd612925f2ec55b1781632835ef36b97d5.tar.bz2 |
[PARISC] Add PREEMPT support
Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
Diffstat (limited to 'include/asm-parisc')
-rw-r--r-- | include/asm-parisc/thread_info.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/asm-parisc/thread_info.h b/include/asm-parisc/thread_info.h index ac32f14..f2f83b0 100644 --- a/include/asm-parisc/thread_info.h +++ b/include/asm-parisc/thread_info.h @@ -49,7 +49,8 @@ struct thread_info { #endif /* !__ASSEMBLY */ -#define PREEMPT_ACTIVE 0x10000000 +#define PREEMPT_ACTIVE_BIT 28 +#define PREEMPT_ACTIVE (1 << PREEMPT_ACTIVE_BIT) /* * thread information flags |