2005-04-17 06:20:36 +08:00
|
|
|
#ifndef __LINUX_PERCPU_H
|
|
|
|
#define __LINUX_PERCPU_H
|
2006-09-26 14:31:21 +08:00
|
|
|
|
2007-07-16 14:39:57 +08:00
|
|
|
#include <linux/preempt.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <linux/slab.h> /* For kmalloc() */
|
|
|
|
#include <linux/smp.h>
|
2006-09-26 14:31:21 +08:00
|
|
|
#include <linux/cpumask.h>
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <asm/percpu.h>
|
|
|
|
|
2009-02-08 22:58:38 +08:00
|
|
|
#ifndef PER_CPU_BASE_SECTION
|
2008-01-30 20:32:52 +08:00
|
|
|
#ifdef CONFIG_SMP
|
2009-01-19 11:21:27 +08:00
|
|
|
#define PER_CPU_BASE_SECTION ".data.percpu"
|
2009-02-08 22:58:38 +08:00
|
|
|
#else
|
|
|
|
#define PER_CPU_BASE_SECTION ".data"
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_SMP
|
2008-01-30 20:32:52 +08:00
|
|
|
|
2008-05-15 07:05:51 +08:00
|
|
|
#ifdef MODULE
|
2009-01-19 11:21:27 +08:00
|
|
|
#define PER_CPU_SHARED_ALIGNED_SECTION ""
|
2008-05-15 07:05:51 +08:00
|
|
|
#else
|
2009-01-19 11:21:27 +08:00
|
|
|
#define PER_CPU_SHARED_ALIGNED_SECTION ".shared_aligned"
|
2008-05-15 07:05:51 +08:00
|
|
|
#endif
|
2009-01-19 11:21:27 +08:00
|
|
|
#define PER_CPU_FIRST_SECTION ".first"
|
2008-05-15 07:05:51 +08:00
|
|
|
|
2009-01-19 11:21:27 +08:00
|
|
|
#else
|
|
|
|
|
|
|
|
#define PER_CPU_SHARED_ALIGNED_SECTION ""
|
|
|
|
#define PER_CPU_FIRST_SECTION ""
|
|
|
|
|
|
|
|
#endif
|
2008-05-12 21:44:40 +08:00
|
|
|
|
2009-01-19 11:21:27 +08:00
|
|
|
#define DEFINE_PER_CPU_SECTION(type, name, section) \
|
|
|
|
__attribute__((__section__(PER_CPU_BASE_SECTION section))) \
|
2008-05-12 21:44:40 +08:00
|
|
|
PER_CPU_ATTRIBUTES __typeof__(type) per_cpu__##name
|
2009-01-19 11:21:27 +08:00
|
|
|
|
2008-01-30 20:32:52 +08:00
|
|
|
#define DEFINE_PER_CPU(type, name) \
|
2009-01-19 11:21:27 +08:00
|
|
|
DEFINE_PER_CPU_SECTION(type, name, "")
|
2008-01-30 20:32:52 +08:00
|
|
|
|
2009-01-19 11:21:27 +08:00
|
|
|
#define DEFINE_PER_CPU_SHARED_ALIGNED(type, name) \
|
|
|
|
DEFINE_PER_CPU_SECTION(type, name, PER_CPU_SHARED_ALIGNED_SECTION) \
|
|
|
|
____cacheline_aligned_in_smp
|
2008-05-12 21:44:40 +08:00
|
|
|
|
2009-01-19 11:21:27 +08:00
|
|
|
#define DEFINE_PER_CPU_PAGE_ALIGNED(type, name) \
|
|
|
|
DEFINE_PER_CPU_SECTION(type, name, ".page_aligned")
|
|
|
|
|
|
|
|
#define DEFINE_PER_CPU_FIRST(type, name) \
|
|
|
|
DEFINE_PER_CPU_SECTION(type, name, PER_CPU_FIRST_SECTION)
|
2008-01-30 20:32:52 +08:00
|
|
|
|
|
|
|
#define EXPORT_PER_CPU_SYMBOL(var) EXPORT_SYMBOL(per_cpu__##var)
|
|
|
|
#define EXPORT_PER_CPU_SYMBOL_GPL(var) EXPORT_SYMBOL_GPL(per_cpu__##var)
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/* Enough to cover all DEFINE_PER_CPUs in kernel, including modules. */
|
|
|
|
#ifndef PERCPU_ENOUGH_ROOM
|
2007-05-03 01:27:11 +08:00
|
|
|
#ifdef CONFIG_MODULES
|
|
|
|
#define PERCPU_MODULE_RESERVE 8192
|
|
|
|
#else
|
|
|
|
#define PERCPU_MODULE_RESERVE 0
|
2005-04-17 06:20:36 +08:00
|
|
|
#endif
|
|
|
|
|
2007-05-03 01:27:11 +08:00
|
|
|
#define PERCPU_ENOUGH_ROOM \
|
|
|
|
(__per_cpu_end - __per_cpu_start + PERCPU_MODULE_RESERVE)
|
|
|
|
#endif /* PERCPU_ENOUGH_ROOM */
|
|
|
|
|
2006-09-26 14:30:53 +08:00
|
|
|
/*
|
|
|
|
* Must be an lvalue. Since @var must be a simple identifier,
|
|
|
|
* we force a syntax error here if it isn't.
|
|
|
|
*/
|
|
|
|
#define get_cpu_var(var) (*({ \
|
2006-10-06 15:43:58 +08:00
|
|
|
extern int simple_identifier_##var(void); \
|
2006-09-26 14:30:53 +08:00
|
|
|
preempt_disable(); \
|
|
|
|
&__get_cpu_var(var); }))
|
2005-04-17 06:20:36 +08:00
|
|
|
#define put_cpu_var(var) preempt_enable()
|
|
|
|
|
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
|
2009-02-20 15:29:08 +08:00
|
|
|
#ifdef CONFIG_HAVE_DYNAMIC_PER_CPU_AREA
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2009-02-24 10:57:21 +08:00
|
|
|
/* minimum unit size, also is the maximum supported allocation size */
|
|
|
|
#define PCPU_MIN_UNIT_SIZE (16UL << PAGE_SHIFT)
|
|
|
|
|
|
|
|
/*
|
|
|
|
* PERCPU_DYNAMIC_RESERVE indicates the amount of free area to piggy
|
|
|
|
* back on the first chunk if arch is manually allocating and mapping
|
|
|
|
* it for faster access (as a part of large page mapping for example).
|
|
|
|
* Note that dynamic percpu allocator covers both static and dynamic
|
|
|
|
* areas, so these values are bigger than PERCPU_MODULE_RESERVE.
|
|
|
|
*
|
|
|
|
* On typical configuration with modules, the following values leave
|
|
|
|
* about 8k of free space on the first chunk after boot on both x86_32
|
|
|
|
* and 64 when module support is enabled. When module support is
|
|
|
|
* disabled, it's much tighter.
|
|
|
|
*/
|
|
|
|
#ifndef PERCPU_DYNAMIC_RESERVE
|
|
|
|
# if BITS_PER_LONG > 32
|
|
|
|
# ifdef CONFIG_MODULES
|
|
|
|
# define PERCPU_DYNAMIC_RESERVE (6 << PAGE_SHIFT)
|
|
|
|
# else
|
|
|
|
# define PERCPU_DYNAMIC_RESERVE (4 << PAGE_SHIFT)
|
|
|
|
# endif
|
|
|
|
# else
|
|
|
|
# ifdef CONFIG_MODULES
|
|
|
|
# define PERCPU_DYNAMIC_RESERVE (4 << PAGE_SHIFT)
|
|
|
|
# else
|
|
|
|
# define PERCPU_DYNAMIC_RESERVE (2 << PAGE_SHIFT)
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
#endif /* PERCPU_DYNAMIC_RESERVE */
|
|
|
|
|
2009-02-20 15:29:08 +08:00
|
|
|
extern void *pcpu_base_addr;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2009-02-24 10:57:21 +08:00
|
|
|
typedef struct page * (*pcpu_get_page_fn_t)(unsigned int cpu, int pageno);
|
2009-02-20 15:29:08 +08:00
|
|
|
typedef void (*pcpu_populate_pte_fn_t)(unsigned long addr);
|
|
|
|
|
2009-02-24 10:57:21 +08:00
|
|
|
extern size_t __init pcpu_setup_first_chunk(pcpu_get_page_fn_t get_page_fn,
|
|
|
|
size_t static_size, size_t unit_size,
|
|
|
|
size_t free_size, void *base_addr,
|
|
|
|
pcpu_populate_pte_fn_t populate_pte_fn);
|
|
|
|
|
2009-02-20 15:29:08 +08:00
|
|
|
/*
|
|
|
|
* Use this to get to a cpu's version of the per-cpu object
|
|
|
|
* dynamically allocated. Non-atomic access to the current CPU's
|
|
|
|
* version should probably be combined with get_cpu()/put_cpu().
|
|
|
|
*/
|
2009-02-20 15:29:08 +08:00
|
|
|
#define per_cpu_ptr(ptr, cpu) SHIFT_PERCPU_PTR((ptr), per_cpu_offset((cpu)))
|
|
|
|
|
|
|
|
#else /* CONFIG_HAVE_DYNAMIC_PER_CPU_AREA */
|
|
|
|
|
|
|
|
struct percpu_data {
|
|
|
|
void *ptrs[1];
|
|
|
|
};
|
|
|
|
|
|
|
|
#define __percpu_disguise(pdata) (struct percpu_data *)~(unsigned long)(pdata)
|
|
|
|
|
2009-02-20 15:29:08 +08:00
|
|
|
#define per_cpu_ptr(ptr, cpu) \
|
|
|
|
({ \
|
|
|
|
struct percpu_data *__p = __percpu_disguise(ptr); \
|
|
|
|
(__typeof__(ptr))__p->ptrs[(cpu)]; \
|
|
|
|
})
|
|
|
|
|
2009-02-20 15:29:08 +08:00
|
|
|
#endif /* CONFIG_HAVE_DYNAMIC_PER_CPU_AREA */
|
|
|
|
|
2009-02-20 15:29:08 +08:00
|
|
|
extern void *__alloc_percpu(size_t size, size_t align);
|
|
|
|
extern void free_percpu(void *__pdata);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#else /* CONFIG_SMP */
|
|
|
|
|
2009-02-20 15:29:08 +08:00
|
|
|
#define per_cpu_ptr(ptr, cpu) ({ (void)(cpu); (ptr); })
|
2006-09-26 14:31:21 +08:00
|
|
|
|
2009-02-20 15:29:08 +08:00
|
|
|
static inline void *__alloc_percpu(size_t size, size_t align)
|
2006-09-26 14:31:21 +08:00
|
|
|
{
|
2009-02-20 15:29:08 +08:00
|
|
|
/*
|
|
|
|
* Can't easily make larger alignment work with kmalloc. WARN
|
|
|
|
* on it. Larger alignment should only be used for module
|
|
|
|
* percpu sections on SMP for which this path isn't used.
|
|
|
|
*/
|
|
|
|
WARN_ON_ONCE(align > __alignof__(unsigned long long));
|
2009-02-25 21:36:45 +08:00
|
|
|
return kzalloc(size, GFP_KERNEL);
|
2006-09-26 14:31:21 +08:00
|
|
|
}
|
|
|
|
|
2009-02-20 15:29:08 +08:00
|
|
|
static inline void free_percpu(void *p)
|
2006-09-26 14:31:21 +08:00
|
|
|
{
|
2009-02-20 15:29:08 +08:00
|
|
|
kfree(p);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CONFIG_SMP */
|
|
|
|
|
2009-02-20 15:29:08 +08:00
|
|
|
#define alloc_percpu(type) (type *)__alloc_percpu(sizeof(type), \
|
|
|
|
__alignof__(type))
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#endif /* __LINUX_PERCPU_H */
|