2005-04-17 02:20:36 +04:00
|
|
|
#ifndef __LINUX_SMP_H
|
|
|
|
#define __LINUX_SMP_H
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Generic SMP support
|
|
|
|
* Alan Cox. <alan@redhat.com>
|
|
|
|
*/
|
|
|
|
|
2007-05-17 09:11:09 +04:00
|
|
|
#include <linux/errno.h>
|
2008-09-24 09:15:57 +04:00
|
|
|
#include <linux/types.h>
|
2008-06-26 13:21:34 +04:00
|
|
|
#include <linux/list.h>
|
|
|
|
#include <linux/cpumask.h>
|
smp: add missing init.h include
Commit 34db18a054c6 ("smp: move smp setup functions to kernel/smp.c")
causes this build error on s390 because of a missing init.h include:
CC arch/s390/kernel/asm-offsets.s
In file included from /home2/heicarst/linux-2.6/arch/s390/include/asm/spinlock.h:14:0,
from include/linux/spinlock.h:87,
from include/linux/seqlock.h:29,
from include/linux/time.h:8,
from include/linux/timex.h:56,
from include/linux/sched.h:57,
from arch/s390/kernel/asm-offsets.c:10:
include/linux/smp.h:117:20: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'setup_nr_cpu_ids'
include/linux/smp.h:118:20: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'smp_init'
Fix it by adding the include statement.
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Acked-by: WANG Cong <amwang@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-03-23 10:24:58 +03:00
|
|
|
#include <linux/init.h>
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
extern void cpu_idle(void);
|
|
|
|
|
2010-10-27 20:28:36 +04:00
|
|
|
typedef void (*smp_call_func_t)(void *info);
|
2008-06-26 13:21:34 +04:00
|
|
|
struct call_single_data {
|
|
|
|
struct list_head list;
|
2010-10-27 20:28:36 +04:00
|
|
|
smp_call_func_t func;
|
2008-06-26 13:21:34 +04:00
|
|
|
void *info;
|
2008-09-24 09:15:57 +04:00
|
|
|
u16 flags;
|
|
|
|
u16 priv;
|
2008-06-26 13:21:34 +04:00
|
|
|
};
|
|
|
|
|
2008-12-16 07:26:48 +03:00
|
|
|
/* total number of cpus in this system (may exceed NR_CPUS) */
|
|
|
|
extern unsigned int total_cpus;
|
|
|
|
|
2010-10-27 20:28:36 +04:00
|
|
|
int smp_call_function_single(int cpuid, smp_call_func_t func, void *info,
|
|
|
|
int wait);
|
2009-01-09 23:27:08 +03:00
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
|
|
|
|
#include <linux/preempt.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/compiler.h>
|
|
|
|
#include <linux/thread_info.h>
|
|
|
|
#include <asm/smp.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* main cross-CPU interfaces, handles INIT, TLB flush, STOP, etc.
|
|
|
|
* (defined in asm header):
|
2009-03-13 13:14:06 +03:00
|
|
|
*/
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* stops all CPUs but the current one:
|
|
|
|
*/
|
|
|
|
extern void smp_send_stop(void);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* sends a 'reschedule' event to another CPU:
|
|
|
|
*/
|
|
|
|
extern void smp_send_reschedule(int cpu);
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Prepare machine for booting other CPUs.
|
|
|
|
*/
|
|
|
|
extern void smp_prepare_cpus(unsigned int max_cpus);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Bring a CPU up
|
|
|
|
*/
|
|
|
|
extern int __cpu_up(unsigned int cpunum);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Final polishing of CPUs
|
|
|
|
*/
|
|
|
|
extern void smp_cpus_done(unsigned int max_cpus);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Call a function on all other processors
|
|
|
|
*/
|
2010-10-27 20:28:36 +04:00
|
|
|
int smp_call_function(smp_call_func_t func, void *info, int wait);
|
2008-12-30 01:35:16 +03:00
|
|
|
void smp_call_function_many(const struct cpumask *mask,
|
2010-10-27 20:28:36 +04:00
|
|
|
smp_call_func_t func, void *info, bool wait);
|
2008-11-05 05:39:10 +03:00
|
|
|
|
2009-02-25 15:59:48 +03:00
|
|
|
void __smp_call_function_single(int cpuid, struct call_single_data *data,
|
|
|
|
int wait);
|
2008-06-26 13:21:34 +04:00
|
|
|
|
2009-11-18 01:27:27 +03:00
|
|
|
int smp_call_function_any(const struct cpumask *mask,
|
2010-10-27 20:28:36 +04:00
|
|
|
smp_call_func_t func, void *info, int wait);
|
2009-11-18 01:27:27 +03:00
|
|
|
|
2008-06-26 13:21:34 +04:00
|
|
|
/*
|
|
|
|
* Generic and arch helpers
|
|
|
|
*/
|
|
|
|
#ifdef CONFIG_USE_GENERIC_SMP_HELPERS
|
2011-03-29 20:35:04 +04:00
|
|
|
void __init call_function_init(void);
|
2008-06-26 13:21:34 +04:00
|
|
|
void generic_smp_call_function_single_interrupt(void);
|
|
|
|
void generic_smp_call_function_interrupt(void);
|
|
|
|
void ipi_call_lock(void);
|
|
|
|
void ipi_call_unlock(void);
|
|
|
|
void ipi_call_lock_irq(void);
|
|
|
|
void ipi_call_unlock_irq(void);
|
2011-03-29 20:35:04 +04:00
|
|
|
#else
|
|
|
|
static inline void call_function_init(void) { }
|
2008-06-26 13:21:34 +04:00
|
|
|
#endif
|
2006-09-26 10:32:33 +04:00
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
/*
|
|
|
|
* Call a function on all processors
|
|
|
|
*/
|
2010-10-27 20:28:36 +04:00
|
|
|
int on_each_cpu(smp_call_func_t func, void *info, int wait);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Mark the boot cpu "online" so that it can call console drivers in
|
|
|
|
* printk() and can access its per-cpu storage.
|
|
|
|
*/
|
|
|
|
void smp_prepare_boot_cpu(void);
|
|
|
|
|
2008-01-30 15:33:17 +03:00
|
|
|
extern unsigned int setup_max_cpus;
|
2011-03-23 02:34:06 +03:00
|
|
|
extern void __init setup_nr_cpu_ids(void);
|
|
|
|
extern void __init smp_init(void);
|
2008-01-30 15:33:17 +03:00
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
#else /* !SMP */
|
|
|
|
|
2009-03-13 13:14:06 +03:00
|
|
|
static inline void smp_send_stop(void) { }
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
/*
|
|
|
|
* These macros fold the SMP functionality into a single CPU system
|
|
|
|
*/
|
2005-06-22 04:14:34 +04:00
|
|
|
#define raw_smp_processor_id() 0
|
2010-10-27 20:28:36 +04:00
|
|
|
static inline int up_smp_call_function(smp_call_func_t func, void *info)
|
2006-03-26 13:37:19 +04:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2008-06-06 13:18:06 +04:00
|
|
|
#define smp_call_function(func, info, wait) \
|
2007-11-10 00:39:38 +03:00
|
|
|
(up_smp_call_function(func, info))
|
2008-05-09 11:39:44 +04:00
|
|
|
#define on_each_cpu(func,info,wait) \
|
2006-03-22 11:08:16 +03:00
|
|
|
({ \
|
|
|
|
local_irq_disable(); \
|
|
|
|
func(info); \
|
|
|
|
local_irq_enable(); \
|
|
|
|
0; \
|
|
|
|
})
|
2005-07-28 12:07:41 +04:00
|
|
|
static inline void smp_send_reschedule(int cpu) { }
|
2005-07-28 21:34:47 +04:00
|
|
|
#define num_booting_cpus() 1
|
|
|
|
#define smp_prepare_boot_cpu() do {} while (0)
|
2008-12-15 11:34:35 +03:00
|
|
|
#define smp_call_function_many(mask, func, info, wait) \
|
|
|
|
(up_smp_call_function(func, info))
|
2011-03-29 20:35:04 +04:00
|
|
|
static inline void call_function_init(void) { }
|
2009-11-18 01:27:27 +03:00
|
|
|
|
|
|
|
static inline int
|
2010-10-27 20:28:36 +04:00
|
|
|
smp_call_function_any(const struct cpumask *mask, smp_call_func_t func,
|
2009-11-18 01:27:27 +03:00
|
|
|
void *info, int wait)
|
2008-06-26 13:21:34 +04:00
|
|
|
{
|
2009-11-18 01:27:27 +03:00
|
|
|
return smp_call_function_single(0, func, info, wait);
|
2008-06-26 13:21:34 +04:00
|
|
|
}
|
2009-11-18 01:27:27 +03:00
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
#endif /* !SMP */
|
|
|
|
|
|
|
|
/*
|
2005-06-22 04:14:34 +04:00
|
|
|
* smp_processor_id(): get the current CPU ID.
|
2005-04-17 02:20:36 +04:00
|
|
|
*
|
2010-03-06 00:42:45 +03:00
|
|
|
* if DEBUG_PREEMPT is enabled then we check whether it is
|
2005-06-22 04:14:34 +04:00
|
|
|
* used in a preemption-safe way. (smp_processor_id() is safe
|
|
|
|
* if it's used in a preemption-off critical section, or in
|
|
|
|
* a thread that is bound to the current CPU.)
|
2005-04-17 02:20:36 +04:00
|
|
|
*
|
2005-06-22 04:14:34 +04:00
|
|
|
* NOTE: raw_smp_processor_id() is for internal use only
|
|
|
|
* (smp_processor_id() is the preferred variant), but in rare
|
|
|
|
* instances it might also be used to turn off false positives
|
|
|
|
* (i.e. smp_processor_id() use that the debugging code reports but
|
|
|
|
* which use for some reason is legal). Don't use this to hack around
|
|
|
|
* the warning message, as your code might not work under PREEMPT.
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
2005-06-22 04:14:34 +04:00
|
|
|
#ifdef CONFIG_DEBUG_PREEMPT
|
|
|
|
extern unsigned int debug_smp_processor_id(void);
|
|
|
|
# define smp_processor_id() debug_smp_processor_id()
|
2005-04-17 02:20:36 +04:00
|
|
|
#else
|
2005-06-22 04:14:34 +04:00
|
|
|
# define smp_processor_id() raw_smp_processor_id()
|
2005-04-17 02:20:36 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#define get_cpu() ({ preempt_disable(); smp_processor_id(); })
|
|
|
|
#define put_cpu() preempt_enable()
|
|
|
|
|
2009-01-31 16:09:06 +03:00
|
|
|
/*
|
|
|
|
* Callback to arch code if there's nosmp or maxcpus=0 on the
|
|
|
|
* boot command line:
|
|
|
|
*/
|
|
|
|
extern void arch_disable_smp_support(void);
|
|
|
|
|
2006-06-30 12:55:50 +04:00
|
|
|
void smp_setup_processor_id(void);
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
#endif /* __LINUX_SMP_H */
|