percpu.h 3.2 KB
Newer Older
L
Linus Torvalds 已提交
1 2
#ifndef __LINUX_PERCPU_H
#define __LINUX_PERCPU_H
3

4
#include <linux/preempt.h>
L
Linus Torvalds 已提交
5 6 7
#include <linux/slab.h> /* For kmalloc() */
#include <linux/smp.h>
#include <linux/string.h> /* For memset() */
8 9
#include <linux/cpumask.h>

L
Linus Torvalds 已提交
10 11 12 13
#include <asm/percpu.h>

/* Enough to cover all DEFINE_PER_CPUs in kernel, including modules. */
#ifndef PERCPU_ENOUGH_ROOM
14 15 16 17
#ifdef CONFIG_MODULES
#define PERCPU_MODULE_RESERVE	8192
#else
#define PERCPU_MODULE_RESERVE	0
L
Linus Torvalds 已提交
18 19
#endif

20 21 22 23
#define PERCPU_ENOUGH_ROOM						\
	(__per_cpu_end - __per_cpu_start + PERCPU_MODULE_RESERVE)
#endif	/* PERCPU_ENOUGH_ROOM */

24 25 26 27 28
/*
 * 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) (*({				\
29
	extern int simple_identifier_##var(void);	\
30 31
	preempt_disable();				\
	&__get_cpu_var(var); }))
L
Linus Torvalds 已提交
32 33 34 35 36 37 38 39
#define put_cpu_var(var) preempt_enable()

#ifdef CONFIG_SMP

struct percpu_data {
	void *ptrs[NR_CPUS];
};

40
#define __percpu_disguise(pdata) (struct percpu_data *)~(unsigned long)(pdata)
L
Linus Torvalds 已提交
41
/* 
42 43
 * 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
L
Linus Torvalds 已提交
44 45
 * probably be combined with get_cpu()/put_cpu().
 */ 
46 47 48 49
#define percpu_ptr(ptr, cpu)                              \
({                                                        \
        struct percpu_data *__p = __percpu_disguise(ptr); \
        (__typeof__(ptr))__p->ptrs[(cpu)];	          \
L
Linus Torvalds 已提交
50 51
})

52 53 54 55 56 57 58
extern void *percpu_populate(void *__pdata, size_t size, gfp_t gfp, int cpu);
extern void percpu_depopulate(void *__pdata, int cpu);
extern int __percpu_populate_mask(void *__pdata, size_t size, gfp_t gfp,
				  cpumask_t *mask);
extern void __percpu_depopulate_mask(void *__pdata, cpumask_t *mask);
extern void *__percpu_alloc_mask(size_t size, gfp_t gfp, cpumask_t *mask);
extern void percpu_free(void *__pdata);
L
Linus Torvalds 已提交
59 60 61

#else /* CONFIG_SMP */

62 63 64 65 66 67 68 69 70
#define percpu_ptr(ptr, cpu) ({ (void)(cpu); (ptr); })

static inline void percpu_depopulate(void *__pdata, int cpu)
{
}

static inline void __percpu_depopulate_mask(void *__pdata, cpumask_t *mask)
{
}
L
Linus Torvalds 已提交
71

72 73
static inline void *percpu_populate(void *__pdata, size_t size, gfp_t gfp,
				    int cpu)
L
Linus Torvalds 已提交
74
{
75
	return percpu_ptr(__pdata, cpu);
L
Linus Torvalds 已提交
76
}
77 78 79 80 81 82 83

static inline int __percpu_populate_mask(void *__pdata, size_t size, gfp_t gfp,
					 cpumask_t *mask)
{
	return 0;
}

84
static __always_inline void *__percpu_alloc_mask(size_t size, gfp_t gfp, cpumask_t *mask)
85 86 87 88 89 90 91
{
	return kzalloc(size, gfp);
}

static inline void percpu_free(void *__pdata)
{
	kfree(__pdata);
L
Linus Torvalds 已提交
92 93 94 95
}

#endif /* CONFIG_SMP */

96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
#define percpu_populate_mask(__pdata, size, gfp, mask) \
	__percpu_populate_mask((__pdata), (size), (gfp), &(mask))
#define percpu_depopulate_mask(__pdata, mask) \
	__percpu_depopulate_mask((__pdata), &(mask))
#define percpu_alloc_mask(size, gfp, mask) \
	__percpu_alloc_mask((size), (gfp), &(mask))

#define percpu_alloc(size, gfp) percpu_alloc_mask((size), (gfp), cpu_online_map)

/* (legacy) interface for use without CPU hotplug handling */

#define __alloc_percpu(size)	percpu_alloc_mask((size), GFP_KERNEL, \
						  cpu_possible_map)
#define alloc_percpu(type)	(type *)__alloc_percpu(sizeof(type))
#define free_percpu(ptr)	percpu_free((ptr))
#define per_cpu_ptr(ptr, cpu)	percpu_ptr((ptr), (cpu))
L
Linus Torvalds 已提交
112 113

#endif /* __LINUX_PERCPU_H */