Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/drzeus/mmc
[linux-2.6/zen-sources.git] / include / asm-sh / smp.h
blob71ecddf70db382f7153b6f6888eec216056914b9
1 /*
2 * include/asm-sh/smp.h
4 * Copyright (C) 2002, 2003 Paul Mundt
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file "COPYING" in the main directory of this archive for
8 * more details.
9 */
10 #ifndef __ASM_SH_SMP_H
11 #define __ASM_SH_SMP_H
13 #include <linux/bitops.h>
14 #include <linux/cpumask.h>
16 #ifdef CONFIG_SMP
18 #include <asm/spinlock.h>
19 #include <asm/atomic.h>
20 #include <asm/current.h>
22 #define raw_smp_processor_id() (current_thread_info()->cpu)
24 /* I've no idea what the real meaning of this is */
25 #define PROC_CHANGE_PENALTY 20
27 #define NO_PROC_ID (-1)
29 struct smp_fn_call_struct {
30 spinlock_t lock;
31 atomic_t finished;
32 void (*fn)(void *);
33 void *data;
36 extern struct smp_fn_call_struct smp_fn_call;
38 #define SMP_MSG_RESCHEDULE 0x0001
40 #endif /* CONFIG_SMP */
42 #endif /* __ASM_SH_SMP_H */