Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef __LINUX_PERCPU_H |
| 2 | #define __LINUX_PERCPU_H |
Martin Peschke | 7ff6f08 | 2006-09-25 23:31:21 -0700 | [diff] [blame] | 3 | |
Robert P. J. Day | 0a3021f | 2007-07-15 23:39:57 -0700 | [diff] [blame] | 4 | #include <linux/preempt.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | #include <linux/smp.h> |
Martin Peschke | 7ff6f08 | 2006-09-25 23:31:21 -0700 | [diff] [blame] | 6 | #include <linux/cpumask.h> |
Tejun Heo | 6a24290 | 2009-03-06 14:33:58 +0900 | [diff] [blame] | 7 | #include <linux/pfn.h> |
Tejun Heo | de380b5 | 2010-03-24 17:06:43 +0900 | [diff] [blame] | 8 | #include <linux/init.h> |
Martin Peschke | 7ff6f08 | 2006-09-25 23:31:21 -0700 | [diff] [blame] | 9 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #include <asm/percpu.h> |
| 11 | |
Tejun Heo | 6a24290 | 2009-03-06 14:33:58 +0900 | [diff] [blame] | 12 | /* enough to cover all DEFINE_PER_CPUs in modules */ |
Jeremy Fitzhardinge | b00742d | 2007-05-02 19:27:11 +0200 | [diff] [blame] | 13 | #ifdef CONFIG_MODULES |
Tejun Heo | 6a24290 | 2009-03-06 14:33:58 +0900 | [diff] [blame] | 14 | #define PERCPU_MODULE_RESERVE (8 << 10) |
Jeremy Fitzhardinge | b00742d | 2007-05-02 19:27:11 +0200 | [diff] [blame] | 15 | #else |
Tejun Heo | 6a24290 | 2009-03-06 14:33:58 +0900 | [diff] [blame] | 16 | #define PERCPU_MODULE_RESERVE 0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #endif |
| 18 | |
Tejun Heo | 6a24290 | 2009-03-06 14:33:58 +0900 | [diff] [blame] | 19 | #ifndef PERCPU_ENOUGH_ROOM |
Jeremy Fitzhardinge | b00742d | 2007-05-02 19:27:11 +0200 | [diff] [blame] | 20 | #define PERCPU_ENOUGH_ROOM \ |
Tejun Heo | 6a24290 | 2009-03-06 14:33:58 +0900 | [diff] [blame] | 21 | (ALIGN(__per_cpu_end - __per_cpu_start, SMP_CACHE_BYTES) + \ |
| 22 | PERCPU_MODULE_RESERVE) |
| 23 | #endif |
Jeremy Fitzhardinge | b00742d | 2007-05-02 19:27:11 +0200 | [diff] [blame] | 24 | |
Jan Blunck | 632bbfe | 2006-09-25 23:30:53 -0700 | [diff] [blame] | 25 | /* |
| 26 | * Must be an lvalue. Since @var must be a simple identifier, |
| 27 | * we force a syntax error here if it isn't. |
| 28 | */ |
| 29 | #define get_cpu_var(var) (*({ \ |
Jan Blunck | 632bbfe | 2006-09-25 23:30:53 -0700 | [diff] [blame] | 30 | preempt_disable(); \ |
| 31 | &__get_cpu_var(var); })) |
Tejun Heo | f7b64fe | 2009-10-29 22:34:15 +0900 | [diff] [blame] | 32 | |
Rusty Russell | e0fdb0e | 2009-10-29 22:34:15 +0900 | [diff] [blame] | 33 | /* |
| 34 | * The weird & is necessary because sparse considers (void)(var) to be |
| 35 | * a direct dereference of percpu variable (var). |
| 36 | */ |
Tejun Heo | f7b64fe | 2009-10-29 22:34:15 +0900 | [diff] [blame] | 37 | #define put_cpu_var(var) do { \ |
Rusty Russell | e0fdb0e | 2009-10-29 22:34:15 +0900 | [diff] [blame] | 38 | (void)&(var); \ |
Tejun Heo | f7b64fe | 2009-10-29 22:34:15 +0900 | [diff] [blame] | 39 | preempt_enable(); \ |
| 40 | } while (0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
Tejun Heo | 8d408b4 | 2009-02-24 11:57:21 +0900 | [diff] [blame] | 42 | /* minimum unit size, also is the maximum supported allocation size */ |
Tejun Heo | 6abad5a | 2010-09-03 18:22:47 +0200 | [diff] [blame] | 43 | #define PCPU_MIN_UNIT_SIZE PFN_ALIGN(32 << 10) |
Tejun Heo | 8d408b4 | 2009-02-24 11:57:21 +0900 | [diff] [blame] | 44 | |
| 45 | /* |
Tejun Heo | 099a19d | 2010-06-27 18:50:00 +0200 | [diff] [blame] | 46 | * Percpu allocator can serve percpu allocations before slab is |
| 47 | * initialized which allows slab to depend on the percpu allocator. |
| 48 | * The following two parameters decide how much resource to |
| 49 | * preallocate for this. Keep PERCPU_DYNAMIC_RESERVE equal to or |
| 50 | * larger than PERCPU_DYNAMIC_EARLY_SIZE. |
| 51 | */ |
| 52 | #define PERCPU_DYNAMIC_EARLY_SLOTS 128 |
| 53 | #define PERCPU_DYNAMIC_EARLY_SIZE (12 << 10) |
| 54 | |
| 55 | /* |
Tejun Heo | 8d408b4 | 2009-02-24 11:57:21 +0900 | [diff] [blame] | 56 | * PERCPU_DYNAMIC_RESERVE indicates the amount of free area to piggy |
Tejun Heo | 6b19b0c | 2009-03-06 14:33:59 +0900 | [diff] [blame] | 57 | * back on the first chunk for dynamic percpu allocation if arch is |
| 58 | * manually allocating and mapping it for faster access (as a part of |
| 59 | * large page mapping for example). |
Tejun Heo | 8d408b4 | 2009-02-24 11:57:21 +0900 | [diff] [blame] | 60 | * |
Tejun Heo | 6b19b0c | 2009-03-06 14:33:59 +0900 | [diff] [blame] | 61 | * The following values give between one and two pages of free space |
| 62 | * after typical minimal boot (2-way SMP, single disk and NIC) with |
| 63 | * both defconfig and a distro config on x86_64 and 32. More |
| 64 | * intelligent way to determine this would be nice. |
Tejun Heo | 8d408b4 | 2009-02-24 11:57:21 +0900 | [diff] [blame] | 65 | */ |
Tejun Heo | 6b19b0c | 2009-03-06 14:33:59 +0900 | [diff] [blame] | 66 | #if BITS_PER_LONG > 32 |
| 67 | #define PERCPU_DYNAMIC_RESERVE (20 << 10) |
| 68 | #else |
| 69 | #define PERCPU_DYNAMIC_RESERVE (12 << 10) |
| 70 | #endif |
Tejun Heo | 8d408b4 | 2009-02-24 11:57:21 +0900 | [diff] [blame] | 71 | |
Tejun Heo | fbf59bc | 2009-02-20 16:29:08 +0900 | [diff] [blame] | 72 | extern void *pcpu_base_addr; |
Tejun Heo | fb435d5 | 2009-08-14 15:00:51 +0900 | [diff] [blame] | 73 | extern const unsigned long *pcpu_unit_offsets; |
Tejun Heo | fbf59bc | 2009-02-20 16:29:08 +0900 | [diff] [blame] | 74 | |
Tejun Heo | fd1e8a1 | 2009-08-14 15:00:51 +0900 | [diff] [blame] | 75 | struct pcpu_group_info { |
| 76 | int nr_units; /* aligned # of units */ |
| 77 | unsigned long base_offset; /* base address offset */ |
| 78 | unsigned int *cpu_map; /* unit->cpu map, empty |
| 79 | * entries contain NR_CPUS */ |
| 80 | }; |
| 81 | |
| 82 | struct pcpu_alloc_info { |
| 83 | size_t static_size; |
| 84 | size_t reserved_size; |
| 85 | size_t dyn_size; |
| 86 | size_t unit_size; |
| 87 | size_t atom_size; |
| 88 | size_t alloc_size; |
| 89 | size_t __ai_size; /* internal, don't use */ |
| 90 | int nr_groups; /* 0 if grouping unnecessary */ |
| 91 | struct pcpu_group_info groups[]; |
| 92 | }; |
| 93 | |
Tejun Heo | f58dc01 | 2009-08-14 15:00:50 +0900 | [diff] [blame] | 94 | enum pcpu_fc { |
| 95 | PCPU_FC_AUTO, |
| 96 | PCPU_FC_EMBED, |
| 97 | PCPU_FC_PAGE, |
Tejun Heo | f58dc01 | 2009-08-14 15:00:50 +0900 | [diff] [blame] | 98 | |
| 99 | PCPU_FC_NR, |
| 100 | }; |
| 101 | extern const char *pcpu_fc_names[PCPU_FC_NR]; |
| 102 | |
| 103 | extern enum pcpu_fc pcpu_chosen_fc; |
| 104 | |
Tejun Heo | 3cbc856 | 2009-08-14 15:00:50 +0900 | [diff] [blame] | 105 | typedef void * (*pcpu_fc_alloc_fn_t)(unsigned int cpu, size_t size, |
| 106 | size_t align); |
Tejun Heo | d4b95f8 | 2009-07-04 08:10:59 +0900 | [diff] [blame] | 107 | typedef void (*pcpu_fc_free_fn_t)(void *ptr, size_t size); |
| 108 | typedef void (*pcpu_fc_populate_pte_fn_t)(unsigned long addr); |
Tejun Heo | a530b79 | 2009-07-04 08:11:00 +0900 | [diff] [blame] | 109 | typedef int (pcpu_fc_cpu_distance_fn_t)(unsigned int from, unsigned int to); |
Tejun Heo | fbf59bc | 2009-02-20 16:29:08 +0900 | [diff] [blame] | 110 | |
Tejun Heo | fd1e8a1 | 2009-08-14 15:00:51 +0900 | [diff] [blame] | 111 | extern struct pcpu_alloc_info * __init pcpu_alloc_alloc_info(int nr_groups, |
| 112 | int nr_units); |
| 113 | extern void __init pcpu_free_alloc_info(struct pcpu_alloc_info *ai); |
Tejun Heo | 033e48f | 2009-08-14 15:00:51 +0900 | [diff] [blame] | 114 | |
Tejun Heo | fb435d5 | 2009-08-14 15:00:51 +0900 | [diff] [blame] | 115 | extern int __init pcpu_setup_first_chunk(const struct pcpu_alloc_info *ai, |
| 116 | void *base_addr); |
Tejun Heo | 8d408b4 | 2009-02-24 11:57:21 +0900 | [diff] [blame] | 117 | |
Tejun Heo | 08fc458 | 2009-08-14 15:00:49 +0900 | [diff] [blame] | 118 | #ifdef CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK |
Tejun Heo | 4ba6ce2 | 2010-06-27 18:49:59 +0200 | [diff] [blame] | 119 | extern int __init pcpu_embed_first_chunk(size_t reserved_size, size_t dyn_size, |
Tejun Heo | c8826dd | 2009-08-14 15:00:52 +0900 | [diff] [blame] | 120 | size_t atom_size, |
| 121 | pcpu_fc_cpu_distance_fn_t cpu_distance_fn, |
| 122 | pcpu_fc_alloc_fn_t alloc_fn, |
| 123 | pcpu_fc_free_fn_t free_fn); |
Tejun Heo | 08fc458 | 2009-08-14 15:00:49 +0900 | [diff] [blame] | 124 | #endif |
Tejun Heo | 66c3a75 | 2009-03-10 16:27:48 +0900 | [diff] [blame] | 125 | |
Tejun Heo | 08fc458 | 2009-08-14 15:00:49 +0900 | [diff] [blame] | 126 | #ifdef CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK |
Tejun Heo | fb435d5 | 2009-08-14 15:00:51 +0900 | [diff] [blame] | 127 | extern int __init pcpu_page_first_chunk(size_t reserved_size, |
Tejun Heo | d4b95f8 | 2009-07-04 08:10:59 +0900 | [diff] [blame] | 128 | pcpu_fc_alloc_fn_t alloc_fn, |
| 129 | pcpu_fc_free_fn_t free_fn, |
| 130 | pcpu_fc_populate_pte_fn_t populate_pte_fn); |
Tejun Heo | 08fc458 | 2009-08-14 15:00:49 +0900 | [diff] [blame] | 131 | #endif |
Tejun Heo | d4b95f8 | 2009-07-04 08:10:59 +0900 | [diff] [blame] | 132 | |
Tejun Heo | fbf59bc | 2009-02-20 16:29:08 +0900 | [diff] [blame] | 133 | /* |
| 134 | * Use this to get to a cpu's version of the per-cpu object |
| 135 | * dynamically allocated. Non-atomic access to the current CPU's |
| 136 | * version should probably be combined with get_cpu()/put_cpu(). |
| 137 | */ |
Tejun Heo | bbddff0 | 2010-09-03 18:22:48 +0200 | [diff] [blame^] | 138 | #ifdef CONFIG_SMP |
Tejun Heo | fbf59bc | 2009-02-20 16:29:08 +0900 | [diff] [blame] | 139 | #define per_cpu_ptr(ptr, cpu) SHIFT_PERCPU_PTR((ptr), per_cpu_offset((cpu))) |
Tejun Heo | bbddff0 | 2010-09-03 18:22:48 +0200 | [diff] [blame^] | 140 | #else |
| 141 | #define per_cpu_ptr(ptr, cpu) ({ (void)(cpu); VERIFY_PERCPU_PTR((ptr)); }) |
| 142 | #endif |
Tejun Heo | fbf59bc | 2009-02-20 16:29:08 +0900 | [diff] [blame] | 143 | |
Rusty Russell | e0fdb0e | 2009-10-29 22:34:15 +0900 | [diff] [blame] | 144 | extern void __percpu *__alloc_reserved_percpu(size_t size, size_t align); |
Tejun Heo | 10fad5e | 2010-03-10 18:57:54 +0900 | [diff] [blame] | 145 | extern bool is_kernel_percpu_address(unsigned long addr); |
Tejun Heo | f2a8205 | 2009-02-20 16:29:08 +0900 | [diff] [blame] | 146 | |
Tejun Heo | bbddff0 | 2010-09-03 18:22:48 +0200 | [diff] [blame^] | 147 | #if !defined(CONFIG_SMP) || !defined(CONFIG_HAVE_SETUP_PER_CPU_AREA) |
Tejun Heo | e74e396 | 2009-03-30 19:07:44 +0900 | [diff] [blame] | 148 | extern void __init setup_per_cpu_areas(void); |
| 149 | #endif |
Tejun Heo | 099a19d | 2010-06-27 18:50:00 +0200 | [diff] [blame] | 150 | extern void __init percpu_init_late(void); |
Tejun Heo | e74e396 | 2009-03-30 19:07:44 +0900 | [diff] [blame] | 151 | |
Tejun Heo | de380b5 | 2010-03-24 17:06:43 +0900 | [diff] [blame] | 152 | extern void __percpu *__alloc_percpu(size_t size, size_t align); |
| 153 | extern void free_percpu(void __percpu *__pdata); |
| 154 | extern phys_addr_t per_cpu_ptr_to_phys(void *addr); |
| 155 | |
Tejun Heo | 64ef291 | 2009-10-29 22:34:12 +0900 | [diff] [blame] | 156 | #define alloc_percpu(type) \ |
Rusty Russell | e0fdb0e | 2009-10-29 22:34:15 +0900 | [diff] [blame] | 157 | (typeof(type) __percpu *)__alloc_percpu(sizeof(type), __alignof__(type)) |
Tejun Heo | f2a8205 | 2009-02-20 16:29:08 +0900 | [diff] [blame] | 158 | |
Tejun Heo | 066123a | 2009-04-10 12:02:40 -0700 | [diff] [blame] | 159 | /* |
| 160 | * Optional methods for optimized non-lvalue per-cpu variable access. |
| 161 | * |
| 162 | * @var can be a percpu variable or a field of it and its size should |
| 163 | * equal char, int or long. percpu_read() evaluates to a lvalue and |
| 164 | * all others to void. |
| 165 | * |
| 166 | * These operations are guaranteed to be atomic w.r.t. preemption. |
| 167 | * The generic versions use plain get/put_cpu_var(). Archs are |
| 168 | * encouraged to implement single-instruction alternatives which don't |
| 169 | * require preemption protection. |
| 170 | */ |
| 171 | #ifndef percpu_read |
| 172 | # define percpu_read(var) \ |
| 173 | ({ \ |
Tejun Heo | f7b64fe | 2009-10-29 22:34:15 +0900 | [diff] [blame] | 174 | typeof(var) *pr_ptr__ = &(var); \ |
| 175 | typeof(var) pr_ret__; \ |
| 176 | pr_ret__ = get_cpu_var(*pr_ptr__); \ |
| 177 | put_cpu_var(*pr_ptr__); \ |
| 178 | pr_ret__; \ |
Tejun Heo | 066123a | 2009-04-10 12:02:40 -0700 | [diff] [blame] | 179 | }) |
| 180 | #endif |
| 181 | |
| 182 | #define __percpu_generic_to_op(var, val, op) \ |
| 183 | do { \ |
Tejun Heo | f7b64fe | 2009-10-29 22:34:15 +0900 | [diff] [blame] | 184 | typeof(var) *pgto_ptr__ = &(var); \ |
| 185 | get_cpu_var(*pgto_ptr__) op val; \ |
| 186 | put_cpu_var(*pgto_ptr__); \ |
Tejun Heo | 066123a | 2009-04-10 12:02:40 -0700 | [diff] [blame] | 187 | } while (0) |
| 188 | |
| 189 | #ifndef percpu_write |
| 190 | # define percpu_write(var, val) __percpu_generic_to_op(var, (val), =) |
| 191 | #endif |
| 192 | |
| 193 | #ifndef percpu_add |
| 194 | # define percpu_add(var, val) __percpu_generic_to_op(var, (val), +=) |
| 195 | #endif |
| 196 | |
| 197 | #ifndef percpu_sub |
| 198 | # define percpu_sub(var, val) __percpu_generic_to_op(var, (val), -=) |
| 199 | #endif |
| 200 | |
| 201 | #ifndef percpu_and |
| 202 | # define percpu_and(var, val) __percpu_generic_to_op(var, (val), &=) |
| 203 | #endif |
| 204 | |
| 205 | #ifndef percpu_or |
| 206 | # define percpu_or(var, val) __percpu_generic_to_op(var, (val), |=) |
| 207 | #endif |
| 208 | |
| 209 | #ifndef percpu_xor |
| 210 | # define percpu_xor(var, val) __percpu_generic_to_op(var, (val), ^=) |
| 211 | #endif |
| 212 | |
Christoph Lameter | 7340a0b | 2009-10-03 19:48:22 +0900 | [diff] [blame] | 213 | /* |
| 214 | * Branching function to split up a function into a set of functions that |
| 215 | * are called for different scalar sizes of the objects handled. |
| 216 | */ |
| 217 | |
| 218 | extern void __bad_size_call_parameter(void); |
| 219 | |
Tejun Heo | 0f5e481 | 2009-10-29 22:34:12 +0900 | [diff] [blame] | 220 | #define __pcpu_size_call_return(stem, variable) \ |
| 221 | ({ typeof(variable) pscr_ret__; \ |
Tejun Heo | 545695f | 2009-10-29 22:34:15 +0900 | [diff] [blame] | 222 | __verify_pcpu_ptr(&(variable)); \ |
Christoph Lameter | 7340a0b | 2009-10-03 19:48:22 +0900 | [diff] [blame] | 223 | switch(sizeof(variable)) { \ |
Tejun Heo | 0f5e481 | 2009-10-29 22:34:12 +0900 | [diff] [blame] | 224 | case 1: pscr_ret__ = stem##1(variable);break; \ |
| 225 | case 2: pscr_ret__ = stem##2(variable);break; \ |
| 226 | case 4: pscr_ret__ = stem##4(variable);break; \ |
| 227 | case 8: pscr_ret__ = stem##8(variable);break; \ |
Christoph Lameter | 7340a0b | 2009-10-03 19:48:22 +0900 | [diff] [blame] | 228 | default: \ |
| 229 | __bad_size_call_parameter();break; \ |
| 230 | } \ |
Tejun Heo | 0f5e481 | 2009-10-29 22:34:12 +0900 | [diff] [blame] | 231 | pscr_ret__; \ |
Christoph Lameter | 7340a0b | 2009-10-03 19:48:22 +0900 | [diff] [blame] | 232 | }) |
| 233 | |
Tejun Heo | 0f5e481 | 2009-10-29 22:34:12 +0900 | [diff] [blame] | 234 | #define __pcpu_size_call(stem, variable, ...) \ |
Christoph Lameter | 7340a0b | 2009-10-03 19:48:22 +0900 | [diff] [blame] | 235 | do { \ |
Tejun Heo | 545695f | 2009-10-29 22:34:15 +0900 | [diff] [blame] | 236 | __verify_pcpu_ptr(&(variable)); \ |
Christoph Lameter | 7340a0b | 2009-10-03 19:48:22 +0900 | [diff] [blame] | 237 | switch(sizeof(variable)) { \ |
| 238 | case 1: stem##1(variable, __VA_ARGS__);break; \ |
| 239 | case 2: stem##2(variable, __VA_ARGS__);break; \ |
| 240 | case 4: stem##4(variable, __VA_ARGS__);break; \ |
| 241 | case 8: stem##8(variable, __VA_ARGS__);break; \ |
| 242 | default: \ |
| 243 | __bad_size_call_parameter();break; \ |
| 244 | } \ |
| 245 | } while (0) |
| 246 | |
| 247 | /* |
| 248 | * Optimized manipulation for memory allocated through the per cpu |
Rusty Russell | dd17c8f | 2009-10-29 22:34:15 +0900 | [diff] [blame] | 249 | * allocator or for addresses of per cpu variables. |
Christoph Lameter | 7340a0b | 2009-10-03 19:48:22 +0900 | [diff] [blame] | 250 | * |
| 251 | * These operation guarantee exclusivity of access for other operations |
| 252 | * on the *same* processor. The assumption is that per cpu data is only |
| 253 | * accessed by a single processor instance (the current one). |
| 254 | * |
| 255 | * The first group is used for accesses that must be done in a |
| 256 | * preemption safe way since we know that the context is not preempt |
| 257 | * safe. Interrupts may occur. If the interrupt modifies the variable |
| 258 | * too then RMW actions will not be reliable. |
| 259 | * |
| 260 | * The arch code can provide optimized functions in two ways: |
| 261 | * |
| 262 | * 1. Override the function completely. F.e. define this_cpu_add(). |
| 263 | * The arch must then ensure that the various scalar format passed |
| 264 | * are handled correctly. |
| 265 | * |
| 266 | * 2. Provide functions for certain scalar sizes. F.e. provide |
| 267 | * this_cpu_add_2() to provide per cpu atomic operations for 2 byte |
| 268 | * sized RMW actions. If arch code does not provide operations for |
| 269 | * a scalar size then the fallback in the generic code will be |
| 270 | * used. |
| 271 | */ |
| 272 | |
| 273 | #define _this_cpu_generic_read(pcp) \ |
| 274 | ({ typeof(pcp) ret__; \ |
| 275 | preempt_disable(); \ |
| 276 | ret__ = *this_cpu_ptr(&(pcp)); \ |
| 277 | preempt_enable(); \ |
| 278 | ret__; \ |
| 279 | }) |
| 280 | |
| 281 | #ifndef this_cpu_read |
| 282 | # ifndef this_cpu_read_1 |
| 283 | # define this_cpu_read_1(pcp) _this_cpu_generic_read(pcp) |
| 284 | # endif |
| 285 | # ifndef this_cpu_read_2 |
| 286 | # define this_cpu_read_2(pcp) _this_cpu_generic_read(pcp) |
| 287 | # endif |
| 288 | # ifndef this_cpu_read_4 |
| 289 | # define this_cpu_read_4(pcp) _this_cpu_generic_read(pcp) |
| 290 | # endif |
| 291 | # ifndef this_cpu_read_8 |
| 292 | # define this_cpu_read_8(pcp) _this_cpu_generic_read(pcp) |
| 293 | # endif |
Tejun Heo | 0f5e481 | 2009-10-29 22:34:12 +0900 | [diff] [blame] | 294 | # define this_cpu_read(pcp) __pcpu_size_call_return(this_cpu_read_, (pcp)) |
Christoph Lameter | 7340a0b | 2009-10-03 19:48:22 +0900 | [diff] [blame] | 295 | #endif |
| 296 | |
| 297 | #define _this_cpu_generic_to_op(pcp, val, op) \ |
| 298 | do { \ |
| 299 | preempt_disable(); \ |
Tejun Heo | f7b64fe | 2009-10-29 22:34:15 +0900 | [diff] [blame] | 300 | *__this_cpu_ptr(&(pcp)) op val; \ |
Christoph Lameter | 7340a0b | 2009-10-03 19:48:22 +0900 | [diff] [blame] | 301 | preempt_enable(); \ |
| 302 | } while (0) |
| 303 | |
| 304 | #ifndef this_cpu_write |
| 305 | # ifndef this_cpu_write_1 |
| 306 | # define this_cpu_write_1(pcp, val) _this_cpu_generic_to_op((pcp), (val), =) |
| 307 | # endif |
| 308 | # ifndef this_cpu_write_2 |
| 309 | # define this_cpu_write_2(pcp, val) _this_cpu_generic_to_op((pcp), (val), =) |
| 310 | # endif |
| 311 | # ifndef this_cpu_write_4 |
| 312 | # define this_cpu_write_4(pcp, val) _this_cpu_generic_to_op((pcp), (val), =) |
| 313 | # endif |
| 314 | # ifndef this_cpu_write_8 |
| 315 | # define this_cpu_write_8(pcp, val) _this_cpu_generic_to_op((pcp), (val), =) |
| 316 | # endif |
Tejun Heo | 0f5e481 | 2009-10-29 22:34:12 +0900 | [diff] [blame] | 317 | # define this_cpu_write(pcp, val) __pcpu_size_call(this_cpu_write_, (pcp), (val)) |
Christoph Lameter | 7340a0b | 2009-10-03 19:48:22 +0900 | [diff] [blame] | 318 | #endif |
| 319 | |
| 320 | #ifndef this_cpu_add |
| 321 | # ifndef this_cpu_add_1 |
| 322 | # define this_cpu_add_1(pcp, val) _this_cpu_generic_to_op((pcp), (val), +=) |
| 323 | # endif |
| 324 | # ifndef this_cpu_add_2 |
| 325 | # define this_cpu_add_2(pcp, val) _this_cpu_generic_to_op((pcp), (val), +=) |
| 326 | # endif |
| 327 | # ifndef this_cpu_add_4 |
| 328 | # define this_cpu_add_4(pcp, val) _this_cpu_generic_to_op((pcp), (val), +=) |
| 329 | # endif |
| 330 | # ifndef this_cpu_add_8 |
| 331 | # define this_cpu_add_8(pcp, val) _this_cpu_generic_to_op((pcp), (val), +=) |
| 332 | # endif |
Tejun Heo | 0f5e481 | 2009-10-29 22:34:12 +0900 | [diff] [blame] | 333 | # define this_cpu_add(pcp, val) __pcpu_size_call(this_cpu_add_, (pcp), (val)) |
Christoph Lameter | 7340a0b | 2009-10-03 19:48:22 +0900 | [diff] [blame] | 334 | #endif |
| 335 | |
| 336 | #ifndef this_cpu_sub |
| 337 | # define this_cpu_sub(pcp, val) this_cpu_add((pcp), -(val)) |
| 338 | #endif |
| 339 | |
| 340 | #ifndef this_cpu_inc |
| 341 | # define this_cpu_inc(pcp) this_cpu_add((pcp), 1) |
| 342 | #endif |
| 343 | |
| 344 | #ifndef this_cpu_dec |
| 345 | # define this_cpu_dec(pcp) this_cpu_sub((pcp), 1) |
| 346 | #endif |
| 347 | |
| 348 | #ifndef this_cpu_and |
| 349 | # ifndef this_cpu_and_1 |
| 350 | # define this_cpu_and_1(pcp, val) _this_cpu_generic_to_op((pcp), (val), &=) |
| 351 | # endif |
| 352 | # ifndef this_cpu_and_2 |
| 353 | # define this_cpu_and_2(pcp, val) _this_cpu_generic_to_op((pcp), (val), &=) |
| 354 | # endif |
| 355 | # ifndef this_cpu_and_4 |
| 356 | # define this_cpu_and_4(pcp, val) _this_cpu_generic_to_op((pcp), (val), &=) |
| 357 | # endif |
| 358 | # ifndef this_cpu_and_8 |
| 359 | # define this_cpu_and_8(pcp, val) _this_cpu_generic_to_op((pcp), (val), &=) |
| 360 | # endif |
Tejun Heo | 0f5e481 | 2009-10-29 22:34:12 +0900 | [diff] [blame] | 361 | # define this_cpu_and(pcp, val) __pcpu_size_call(this_cpu_and_, (pcp), (val)) |
Christoph Lameter | 7340a0b | 2009-10-03 19:48:22 +0900 | [diff] [blame] | 362 | #endif |
| 363 | |
| 364 | #ifndef this_cpu_or |
| 365 | # ifndef this_cpu_or_1 |
| 366 | # define this_cpu_or_1(pcp, val) _this_cpu_generic_to_op((pcp), (val), |=) |
| 367 | # endif |
| 368 | # ifndef this_cpu_or_2 |
| 369 | # define this_cpu_or_2(pcp, val) _this_cpu_generic_to_op((pcp), (val), |=) |
| 370 | # endif |
| 371 | # ifndef this_cpu_or_4 |
| 372 | # define this_cpu_or_4(pcp, val) _this_cpu_generic_to_op((pcp), (val), |=) |
| 373 | # endif |
| 374 | # ifndef this_cpu_or_8 |
| 375 | # define this_cpu_or_8(pcp, val) _this_cpu_generic_to_op((pcp), (val), |=) |
| 376 | # endif |
Tejun Heo | 0f5e481 | 2009-10-29 22:34:12 +0900 | [diff] [blame] | 377 | # define this_cpu_or(pcp, val) __pcpu_size_call(this_cpu_or_, (pcp), (val)) |
Christoph Lameter | 7340a0b | 2009-10-03 19:48:22 +0900 | [diff] [blame] | 378 | #endif |
| 379 | |
| 380 | #ifndef this_cpu_xor |
| 381 | # ifndef this_cpu_xor_1 |
| 382 | # define this_cpu_xor_1(pcp, val) _this_cpu_generic_to_op((pcp), (val), ^=) |
| 383 | # endif |
| 384 | # ifndef this_cpu_xor_2 |
| 385 | # define this_cpu_xor_2(pcp, val) _this_cpu_generic_to_op((pcp), (val), ^=) |
| 386 | # endif |
| 387 | # ifndef this_cpu_xor_4 |
| 388 | # define this_cpu_xor_4(pcp, val) _this_cpu_generic_to_op((pcp), (val), ^=) |
| 389 | # endif |
| 390 | # ifndef this_cpu_xor_8 |
| 391 | # define this_cpu_xor_8(pcp, val) _this_cpu_generic_to_op((pcp), (val), ^=) |
| 392 | # endif |
Tejun Heo | 0f5e481 | 2009-10-29 22:34:12 +0900 | [diff] [blame] | 393 | # define this_cpu_xor(pcp, val) __pcpu_size_call(this_cpu_or_, (pcp), (val)) |
Christoph Lameter | 7340a0b | 2009-10-03 19:48:22 +0900 | [diff] [blame] | 394 | #endif |
| 395 | |
| 396 | /* |
| 397 | * Generic percpu operations that do not require preemption handling. |
| 398 | * Either we do not care about races or the caller has the |
| 399 | * responsibility of handling preemptions issues. Arch code can still |
| 400 | * override these instructions since the arch per cpu code may be more |
| 401 | * efficient and may actually get race freeness for free (that is the |
| 402 | * case for x86 for example). |
| 403 | * |
| 404 | * If there is no other protection through preempt disable and/or |
| 405 | * disabling interupts then one of these RMW operations can show unexpected |
| 406 | * behavior because the execution thread was rescheduled on another processor |
| 407 | * or an interrupt occurred and the same percpu variable was modified from |
| 408 | * the interrupt context. |
| 409 | */ |
| 410 | #ifndef __this_cpu_read |
| 411 | # ifndef __this_cpu_read_1 |
| 412 | # define __this_cpu_read_1(pcp) (*__this_cpu_ptr(&(pcp))) |
| 413 | # endif |
| 414 | # ifndef __this_cpu_read_2 |
| 415 | # define __this_cpu_read_2(pcp) (*__this_cpu_ptr(&(pcp))) |
| 416 | # endif |
| 417 | # ifndef __this_cpu_read_4 |
| 418 | # define __this_cpu_read_4(pcp) (*__this_cpu_ptr(&(pcp))) |
| 419 | # endif |
| 420 | # ifndef __this_cpu_read_8 |
| 421 | # define __this_cpu_read_8(pcp) (*__this_cpu_ptr(&(pcp))) |
| 422 | # endif |
Tejun Heo | 0f5e481 | 2009-10-29 22:34:12 +0900 | [diff] [blame] | 423 | # define __this_cpu_read(pcp) __pcpu_size_call_return(__this_cpu_read_, (pcp)) |
Christoph Lameter | 7340a0b | 2009-10-03 19:48:22 +0900 | [diff] [blame] | 424 | #endif |
| 425 | |
| 426 | #define __this_cpu_generic_to_op(pcp, val, op) \ |
| 427 | do { \ |
| 428 | *__this_cpu_ptr(&(pcp)) op val; \ |
| 429 | } while (0) |
| 430 | |
| 431 | #ifndef __this_cpu_write |
| 432 | # ifndef __this_cpu_write_1 |
| 433 | # define __this_cpu_write_1(pcp, val) __this_cpu_generic_to_op((pcp), (val), =) |
| 434 | # endif |
| 435 | # ifndef __this_cpu_write_2 |
| 436 | # define __this_cpu_write_2(pcp, val) __this_cpu_generic_to_op((pcp), (val), =) |
| 437 | # endif |
| 438 | # ifndef __this_cpu_write_4 |
| 439 | # define __this_cpu_write_4(pcp, val) __this_cpu_generic_to_op((pcp), (val), =) |
| 440 | # endif |
| 441 | # ifndef __this_cpu_write_8 |
| 442 | # define __this_cpu_write_8(pcp, val) __this_cpu_generic_to_op((pcp), (val), =) |
| 443 | # endif |
Tejun Heo | 0f5e481 | 2009-10-29 22:34:12 +0900 | [diff] [blame] | 444 | # define __this_cpu_write(pcp, val) __pcpu_size_call(__this_cpu_write_, (pcp), (val)) |
Christoph Lameter | 7340a0b | 2009-10-03 19:48:22 +0900 | [diff] [blame] | 445 | #endif |
| 446 | |
| 447 | #ifndef __this_cpu_add |
| 448 | # ifndef __this_cpu_add_1 |
| 449 | # define __this_cpu_add_1(pcp, val) __this_cpu_generic_to_op((pcp), (val), +=) |
| 450 | # endif |
| 451 | # ifndef __this_cpu_add_2 |
| 452 | # define __this_cpu_add_2(pcp, val) __this_cpu_generic_to_op((pcp), (val), +=) |
| 453 | # endif |
| 454 | # ifndef __this_cpu_add_4 |
| 455 | # define __this_cpu_add_4(pcp, val) __this_cpu_generic_to_op((pcp), (val), +=) |
| 456 | # endif |
| 457 | # ifndef __this_cpu_add_8 |
| 458 | # define __this_cpu_add_8(pcp, val) __this_cpu_generic_to_op((pcp), (val), +=) |
| 459 | # endif |
Tejun Heo | 0f5e481 | 2009-10-29 22:34:12 +0900 | [diff] [blame] | 460 | # define __this_cpu_add(pcp, val) __pcpu_size_call(__this_cpu_add_, (pcp), (val)) |
Christoph Lameter | 7340a0b | 2009-10-03 19:48:22 +0900 | [diff] [blame] | 461 | #endif |
| 462 | |
| 463 | #ifndef __this_cpu_sub |
| 464 | # define __this_cpu_sub(pcp, val) __this_cpu_add((pcp), -(val)) |
| 465 | #endif |
| 466 | |
| 467 | #ifndef __this_cpu_inc |
| 468 | # define __this_cpu_inc(pcp) __this_cpu_add((pcp), 1) |
| 469 | #endif |
| 470 | |
| 471 | #ifndef __this_cpu_dec |
| 472 | # define __this_cpu_dec(pcp) __this_cpu_sub((pcp), 1) |
| 473 | #endif |
| 474 | |
| 475 | #ifndef __this_cpu_and |
| 476 | # ifndef __this_cpu_and_1 |
| 477 | # define __this_cpu_and_1(pcp, val) __this_cpu_generic_to_op((pcp), (val), &=) |
| 478 | # endif |
| 479 | # ifndef __this_cpu_and_2 |
| 480 | # define __this_cpu_and_2(pcp, val) __this_cpu_generic_to_op((pcp), (val), &=) |
| 481 | # endif |
| 482 | # ifndef __this_cpu_and_4 |
| 483 | # define __this_cpu_and_4(pcp, val) __this_cpu_generic_to_op((pcp), (val), &=) |
| 484 | # endif |
| 485 | # ifndef __this_cpu_and_8 |
| 486 | # define __this_cpu_and_8(pcp, val) __this_cpu_generic_to_op((pcp), (val), &=) |
| 487 | # endif |
Tejun Heo | 0f5e481 | 2009-10-29 22:34:12 +0900 | [diff] [blame] | 488 | # define __this_cpu_and(pcp, val) __pcpu_size_call(__this_cpu_and_, (pcp), (val)) |
Christoph Lameter | 7340a0b | 2009-10-03 19:48:22 +0900 | [diff] [blame] | 489 | #endif |
| 490 | |
| 491 | #ifndef __this_cpu_or |
| 492 | # ifndef __this_cpu_or_1 |
| 493 | # define __this_cpu_or_1(pcp, val) __this_cpu_generic_to_op((pcp), (val), |=) |
| 494 | # endif |
| 495 | # ifndef __this_cpu_or_2 |
| 496 | # define __this_cpu_or_2(pcp, val) __this_cpu_generic_to_op((pcp), (val), |=) |
| 497 | # endif |
| 498 | # ifndef __this_cpu_or_4 |
| 499 | # define __this_cpu_or_4(pcp, val) __this_cpu_generic_to_op((pcp), (val), |=) |
| 500 | # endif |
| 501 | # ifndef __this_cpu_or_8 |
| 502 | # define __this_cpu_or_8(pcp, val) __this_cpu_generic_to_op((pcp), (val), |=) |
| 503 | # endif |
Tejun Heo | 0f5e481 | 2009-10-29 22:34:12 +0900 | [diff] [blame] | 504 | # define __this_cpu_or(pcp, val) __pcpu_size_call(__this_cpu_or_, (pcp), (val)) |
Christoph Lameter | 7340a0b | 2009-10-03 19:48:22 +0900 | [diff] [blame] | 505 | #endif |
| 506 | |
| 507 | #ifndef __this_cpu_xor |
| 508 | # ifndef __this_cpu_xor_1 |
| 509 | # define __this_cpu_xor_1(pcp, val) __this_cpu_generic_to_op((pcp), (val), ^=) |
| 510 | # endif |
| 511 | # ifndef __this_cpu_xor_2 |
| 512 | # define __this_cpu_xor_2(pcp, val) __this_cpu_generic_to_op((pcp), (val), ^=) |
| 513 | # endif |
| 514 | # ifndef __this_cpu_xor_4 |
| 515 | # define __this_cpu_xor_4(pcp, val) __this_cpu_generic_to_op((pcp), (val), ^=) |
| 516 | # endif |
| 517 | # ifndef __this_cpu_xor_8 |
| 518 | # define __this_cpu_xor_8(pcp, val) __this_cpu_generic_to_op((pcp), (val), ^=) |
| 519 | # endif |
Tejun Heo | 0f5e481 | 2009-10-29 22:34:12 +0900 | [diff] [blame] | 520 | # define __this_cpu_xor(pcp, val) __pcpu_size_call(__this_cpu_xor_, (pcp), (val)) |
Christoph Lameter | 7340a0b | 2009-10-03 19:48:22 +0900 | [diff] [blame] | 521 | #endif |
| 522 | |
| 523 | /* |
| 524 | * IRQ safe versions of the per cpu RMW operations. Note that these operations |
| 525 | * are *not* safe against modification of the same variable from another |
| 526 | * processors (which one gets when using regular atomic operations) |
| 527 | . They are guaranteed to be atomic vs. local interrupts and |
| 528 | * preemption only. |
| 529 | */ |
| 530 | #define irqsafe_cpu_generic_to_op(pcp, val, op) \ |
| 531 | do { \ |
| 532 | unsigned long flags; \ |
| 533 | local_irq_save(flags); \ |
| 534 | *__this_cpu_ptr(&(pcp)) op val; \ |
| 535 | local_irq_restore(flags); \ |
| 536 | } while (0) |
| 537 | |
| 538 | #ifndef irqsafe_cpu_add |
| 539 | # ifndef irqsafe_cpu_add_1 |
| 540 | # define irqsafe_cpu_add_1(pcp, val) irqsafe_cpu_generic_to_op((pcp), (val), +=) |
| 541 | # endif |
| 542 | # ifndef irqsafe_cpu_add_2 |
| 543 | # define irqsafe_cpu_add_2(pcp, val) irqsafe_cpu_generic_to_op((pcp), (val), +=) |
| 544 | # endif |
| 545 | # ifndef irqsafe_cpu_add_4 |
| 546 | # define irqsafe_cpu_add_4(pcp, val) irqsafe_cpu_generic_to_op((pcp), (val), +=) |
| 547 | # endif |
| 548 | # ifndef irqsafe_cpu_add_8 |
| 549 | # define irqsafe_cpu_add_8(pcp, val) irqsafe_cpu_generic_to_op((pcp), (val), +=) |
| 550 | # endif |
Tejun Heo | 0f5e481 | 2009-10-29 22:34:12 +0900 | [diff] [blame] | 551 | # define irqsafe_cpu_add(pcp, val) __pcpu_size_call(irqsafe_cpu_add_, (pcp), (val)) |
Christoph Lameter | 7340a0b | 2009-10-03 19:48:22 +0900 | [diff] [blame] | 552 | #endif |
| 553 | |
| 554 | #ifndef irqsafe_cpu_sub |
| 555 | # define irqsafe_cpu_sub(pcp, val) irqsafe_cpu_add((pcp), -(val)) |
| 556 | #endif |
| 557 | |
| 558 | #ifndef irqsafe_cpu_inc |
| 559 | # define irqsafe_cpu_inc(pcp) irqsafe_cpu_add((pcp), 1) |
| 560 | #endif |
| 561 | |
| 562 | #ifndef irqsafe_cpu_dec |
| 563 | # define irqsafe_cpu_dec(pcp) irqsafe_cpu_sub((pcp), 1) |
| 564 | #endif |
| 565 | |
| 566 | #ifndef irqsafe_cpu_and |
| 567 | # ifndef irqsafe_cpu_and_1 |
| 568 | # define irqsafe_cpu_and_1(pcp, val) irqsafe_cpu_generic_to_op((pcp), (val), &=) |
| 569 | # endif |
| 570 | # ifndef irqsafe_cpu_and_2 |
| 571 | # define irqsafe_cpu_and_2(pcp, val) irqsafe_cpu_generic_to_op((pcp), (val), &=) |
| 572 | # endif |
| 573 | # ifndef irqsafe_cpu_and_4 |
| 574 | # define irqsafe_cpu_and_4(pcp, val) irqsafe_cpu_generic_to_op((pcp), (val), &=) |
| 575 | # endif |
| 576 | # ifndef irqsafe_cpu_and_8 |
| 577 | # define irqsafe_cpu_and_8(pcp, val) irqsafe_cpu_generic_to_op((pcp), (val), &=) |
| 578 | # endif |
Tejun Heo | 0f5e481 | 2009-10-29 22:34:12 +0900 | [diff] [blame] | 579 | # define irqsafe_cpu_and(pcp, val) __pcpu_size_call(irqsafe_cpu_and_, (val)) |
Christoph Lameter | 7340a0b | 2009-10-03 19:48:22 +0900 | [diff] [blame] | 580 | #endif |
| 581 | |
| 582 | #ifndef irqsafe_cpu_or |
| 583 | # ifndef irqsafe_cpu_or_1 |
| 584 | # define irqsafe_cpu_or_1(pcp, val) irqsafe_cpu_generic_to_op((pcp), (val), |=) |
| 585 | # endif |
| 586 | # ifndef irqsafe_cpu_or_2 |
| 587 | # define irqsafe_cpu_or_2(pcp, val) irqsafe_cpu_generic_to_op((pcp), (val), |=) |
| 588 | # endif |
| 589 | # ifndef irqsafe_cpu_or_4 |
| 590 | # define irqsafe_cpu_or_4(pcp, val) irqsafe_cpu_generic_to_op((pcp), (val), |=) |
| 591 | # endif |
| 592 | # ifndef irqsafe_cpu_or_8 |
| 593 | # define irqsafe_cpu_or_8(pcp, val) irqsafe_cpu_generic_to_op((pcp), (val), |=) |
| 594 | # endif |
Tejun Heo | 0f5e481 | 2009-10-29 22:34:12 +0900 | [diff] [blame] | 595 | # define irqsafe_cpu_or(pcp, val) __pcpu_size_call(irqsafe_cpu_or_, (val)) |
Christoph Lameter | 7340a0b | 2009-10-03 19:48:22 +0900 | [diff] [blame] | 596 | #endif |
| 597 | |
| 598 | #ifndef irqsafe_cpu_xor |
| 599 | # ifndef irqsafe_cpu_xor_1 |
| 600 | # define irqsafe_cpu_xor_1(pcp, val) irqsafe_cpu_generic_to_op((pcp), (val), ^=) |
| 601 | # endif |
| 602 | # ifndef irqsafe_cpu_xor_2 |
| 603 | # define irqsafe_cpu_xor_2(pcp, val) irqsafe_cpu_generic_to_op((pcp), (val), ^=) |
| 604 | # endif |
| 605 | # ifndef irqsafe_cpu_xor_4 |
| 606 | # define irqsafe_cpu_xor_4(pcp, val) irqsafe_cpu_generic_to_op((pcp), (val), ^=) |
| 607 | # endif |
| 608 | # ifndef irqsafe_cpu_xor_8 |
| 609 | # define irqsafe_cpu_xor_8(pcp, val) irqsafe_cpu_generic_to_op((pcp), (val), ^=) |
| 610 | # endif |
Tejun Heo | 0f5e481 | 2009-10-29 22:34:12 +0900 | [diff] [blame] | 611 | # define irqsafe_cpu_xor(pcp, val) __pcpu_size_call(irqsafe_cpu_xor_, (val)) |
Christoph Lameter | 7340a0b | 2009-10-03 19:48:22 +0900 | [diff] [blame] | 612 | #endif |
| 613 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | #endif /* __LINUX_PERCPU_H */ |