Go to the documentation of this file. 1 #ifndef __LINUX_PERCPU_H
2 #define __LINUX_PERCPU_H
10 #include <asm/percpu.h>
14 #define PERCPU_MODULE_RESERVE (8 << 10)
16 #define PERCPU_MODULE_RESERVE 0
19 #ifndef PERCPU_ENOUGH_ROOM
20 #define PERCPU_ENOUGH_ROOM \
21 (ALIGN(__per_cpu_end - __per_cpu_start, SMP_CACHE_BYTES) + \
22 PERCPU_MODULE_RESERVE)
29 #define get_cpu_var(var) (*({ \
31 &__get_cpu_var(var); }))
37 #define put_cpu_var(var) do { \
42 #define get_cpu_ptr(var) ({ \
46 #define put_cpu_ptr(var) do { \
52 #define PCPU_MIN_UNIT_SIZE PFN_ALIGN(32 << 10)
61 #define PERCPU_DYNAMIC_EARLY_SLOTS 128
62 #define PERCPU_DYNAMIC_EARLY_SIZE (12 << 10)
75 #if BITS_PER_LONG > 32
76 #define PERCPU_DYNAMIC_RESERVE (20 << 10)
78 #define PERCPU_DYNAMIC_RESERVE (12 << 10)
114 typedef void * (*pcpu_fc_alloc_fn_t)(
unsigned int cpu,
size_t size,
127 #ifdef CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK
135 #ifdef CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK
148 #define per_cpu_ptr(ptr, cpu) SHIFT_PERCPU_PTR((ptr), per_cpu_offset((cpu)))
150 #define per_cpu_ptr(ptr, cpu) ({ (void)(cpu); VERIFY_PERCPU_PTR((ptr)); })
156 #if !defined(CONFIG_SMP) || !defined(CONFIG_HAVE_SETUP_PER_CPU_AREA)
165 #define alloc_percpu(type) \
166 (typeof(type) __percpu *)__alloc_percpu(sizeof(type), __alignof__(type))
175 #define __pcpu_size_call_return(stem, variable) \
176 ({ typeof(variable) pscr_ret__; \
177 __verify_pcpu_ptr(&(variable)); \
178 switch(sizeof(variable)) { \
179 case 1: pscr_ret__ = stem##1(variable);break; \
180 case 2: pscr_ret__ = stem##2(variable);break; \
181 case 4: pscr_ret__ = stem##4(variable);break; \
182 case 8: pscr_ret__ = stem##8(variable);break; \
184 __bad_size_call_parameter();break; \
189 #define __pcpu_size_call_return2(stem, variable, ...) \
191 typeof(variable) pscr2_ret__; \
192 __verify_pcpu_ptr(&(variable)); \
193 switch(sizeof(variable)) { \
194 case 1: pscr2_ret__ = stem##1(variable, __VA_ARGS__); break; \
195 case 2: pscr2_ret__ = stem##2(variable, __VA_ARGS__); break; \
196 case 4: pscr2_ret__ = stem##4(variable, __VA_ARGS__); break; \
197 case 8: pscr2_ret__ = stem##8(variable, __VA_ARGS__); break; \
199 __bad_size_call_parameter(); break; \
212 #define __pcpu_double_call_return_bool(stem, pcp1, pcp2, ...) \
215 __verify_pcpu_ptr(&pcp1); \
216 BUILD_BUG_ON(sizeof(pcp1) != sizeof(pcp2)); \
217 VM_BUG_ON((unsigned long)(&pcp1) % (2 * sizeof(pcp1))); \
218 VM_BUG_ON((unsigned long)(&pcp2) != \
219 (unsigned long)(&pcp1) + sizeof(pcp1)); \
220 switch(sizeof(pcp1)) { \
221 case 1: pdcrb_ret__ = stem##1(pcp1, pcp2, __VA_ARGS__); break; \
222 case 2: pdcrb_ret__ = stem##2(pcp1, pcp2, __VA_ARGS__); break; \
223 case 4: pdcrb_ret__ = stem##4(pcp1, pcp2, __VA_ARGS__); break; \
224 case 8: pdcrb_ret__ = stem##8(pcp1, pcp2, __VA_ARGS__); break; \
226 __bad_size_call_parameter(); break; \
231 #define __pcpu_size_call(stem, variable, ...) \
233 __verify_pcpu_ptr(&(variable)); \
234 switch(sizeof(variable)) { \
235 case 1: stem##1(variable, __VA_ARGS__);break; \
236 case 2: stem##2(variable, __VA_ARGS__);break; \
237 case 4: stem##4(variable, __VA_ARGS__);break; \
238 case 8: stem##8(variable, __VA_ARGS__);break; \
240 __bad_size_call_parameter();break; \
270 #define _this_cpu_generic_read(pcp) \
271 ({ typeof(pcp) ret__; \
273 ret__ = *this_cpu_ptr(&(pcp)); \
278 #ifndef this_cpu_read
279 # ifndef this_cpu_read_1
280 # define this_cpu_read_1(pcp) _this_cpu_generic_read(pcp)
282 # ifndef this_cpu_read_2
283 # define this_cpu_read_2(pcp) _this_cpu_generic_read(pcp)
285 # ifndef this_cpu_read_4
286 # define this_cpu_read_4(pcp) _this_cpu_generic_read(pcp)
288 # ifndef this_cpu_read_8
289 # define this_cpu_read_8(pcp) _this_cpu_generic_read(pcp)
291 # define this_cpu_read(pcp) __pcpu_size_call_return(this_cpu_read_, (pcp))
294 #define _this_cpu_generic_to_op(pcp, val, op) \
296 unsigned long flags; \
297 raw_local_irq_save(flags); \
298 *__this_cpu_ptr(&(pcp)) op val; \
299 raw_local_irq_restore(flags); \
302 #ifndef this_cpu_write
303 # ifndef this_cpu_write_1
304 # define this_cpu_write_1(pcp, val) _this_cpu_generic_to_op((pcp), (val), =)
306 # ifndef this_cpu_write_2
307 # define this_cpu_write_2(pcp, val) _this_cpu_generic_to_op((pcp), (val), =)
309 # ifndef this_cpu_write_4
310 # define this_cpu_write_4(pcp, val) _this_cpu_generic_to_op((pcp), (val), =)
312 # ifndef this_cpu_write_8
313 # define this_cpu_write_8(pcp, val) _this_cpu_generic_to_op((pcp), (val), =)
315 # define this_cpu_write(pcp, val) __pcpu_size_call(this_cpu_write_, (pcp), (val))
319 # ifndef this_cpu_add_1
320 # define this_cpu_add_1(pcp, val) _this_cpu_generic_to_op((pcp), (val), +=)
322 # ifndef this_cpu_add_2
323 # define this_cpu_add_2(pcp, val) _this_cpu_generic_to_op((pcp), (val), +=)
325 # ifndef this_cpu_add_4
326 # define this_cpu_add_4(pcp, val) _this_cpu_generic_to_op((pcp), (val), +=)
328 # ifndef this_cpu_add_8
329 # define this_cpu_add_8(pcp, val) _this_cpu_generic_to_op((pcp), (val), +=)
331 # define this_cpu_add(pcp, val) __pcpu_size_call(this_cpu_add_, (pcp), (val))
335 # define this_cpu_sub(pcp, val) this_cpu_add((pcp), -(val))
339 # define this_cpu_inc(pcp) this_cpu_add((pcp), 1)
343 # define this_cpu_dec(pcp) this_cpu_sub((pcp), 1)
347 # ifndef this_cpu_and_1
348 # define this_cpu_and_1(pcp, val) _this_cpu_generic_to_op((pcp), (val), &=)
350 # ifndef this_cpu_and_2
351 # define this_cpu_and_2(pcp, val) _this_cpu_generic_to_op((pcp), (val), &=)
353 # ifndef this_cpu_and_4
354 # define this_cpu_and_4(pcp, val) _this_cpu_generic_to_op((pcp), (val), &=)
356 # ifndef this_cpu_and_8
357 # define this_cpu_and_8(pcp, val) _this_cpu_generic_to_op((pcp), (val), &=)
359 # define this_cpu_and(pcp, val) __pcpu_size_call(this_cpu_and_, (pcp), (val))
363 # ifndef this_cpu_or_1
364 # define this_cpu_or_1(pcp, val) _this_cpu_generic_to_op((pcp), (val), |=)
366 # ifndef this_cpu_or_2
367 # define this_cpu_or_2(pcp, val) _this_cpu_generic_to_op((pcp), (val), |=)
369 # ifndef this_cpu_or_4
370 # define this_cpu_or_4(pcp, val) _this_cpu_generic_to_op((pcp), (val), |=)
372 # ifndef this_cpu_or_8
373 # define this_cpu_or_8(pcp, val) _this_cpu_generic_to_op((pcp), (val), |=)
375 # define this_cpu_or(pcp, val) __pcpu_size_call(this_cpu_or_, (pcp), (val))
379 # ifndef this_cpu_xor_1
380 # define this_cpu_xor_1(pcp, val) _this_cpu_generic_to_op((pcp), (val), ^=)
382 # ifndef this_cpu_xor_2
383 # define this_cpu_xor_2(pcp, val) _this_cpu_generic_to_op((pcp), (val), ^=)
385 # ifndef this_cpu_xor_4
386 # define this_cpu_xor_4(pcp, val) _this_cpu_generic_to_op((pcp), (val), ^=)
388 # ifndef this_cpu_xor_8
389 # define this_cpu_xor_8(pcp, val) _this_cpu_generic_to_op((pcp), (val), ^=)
391 # define this_cpu_xor(pcp, val) __pcpu_size_call(this_cpu_or_, (pcp), (val))
394 #define _this_cpu_generic_add_return(pcp, val) \
397 unsigned long flags; \
398 raw_local_irq_save(flags); \
399 __this_cpu_add(pcp, val); \
400 ret__ = __this_cpu_read(pcp); \
401 raw_local_irq_restore(flags); \
405 #ifndef this_cpu_add_return
406 # ifndef this_cpu_add_return_1
407 # define this_cpu_add_return_1(pcp, val) _this_cpu_generic_add_return(pcp, val)
409 # ifndef this_cpu_add_return_2
410 # define this_cpu_add_return_2(pcp, val) _this_cpu_generic_add_return(pcp, val)
412 # ifndef this_cpu_add_return_4
413 # define this_cpu_add_return_4(pcp, val) _this_cpu_generic_add_return(pcp, val)
415 # ifndef this_cpu_add_return_8
416 # define this_cpu_add_return_8(pcp, val) _this_cpu_generic_add_return(pcp, val)
418 # define this_cpu_add_return(pcp, val) __pcpu_size_call_return2(this_cpu_add_return_, pcp, val)
421 #define this_cpu_sub_return(pcp, val) this_cpu_add_return(pcp, -(val))
422 #define this_cpu_inc_return(pcp) this_cpu_add_return(pcp, 1)
423 #define this_cpu_dec_return(pcp) this_cpu_add_return(pcp, -1)
425 #define _this_cpu_generic_xchg(pcp, nval) \
426 ({ typeof(pcp) ret__; \
427 unsigned long flags; \
428 raw_local_irq_save(flags); \
429 ret__ = __this_cpu_read(pcp); \
430 __this_cpu_write(pcp, nval); \
431 raw_local_irq_restore(flags); \
435 #ifndef this_cpu_xchg
436 # ifndef this_cpu_xchg_1
437 # define this_cpu_xchg_1(pcp, nval) _this_cpu_generic_xchg(pcp, nval)
439 # ifndef this_cpu_xchg_2
440 # define this_cpu_xchg_2(pcp, nval) _this_cpu_generic_xchg(pcp, nval)
442 # ifndef this_cpu_xchg_4
443 # define this_cpu_xchg_4(pcp, nval) _this_cpu_generic_xchg(pcp, nval)
445 # ifndef this_cpu_xchg_8
446 # define this_cpu_xchg_8(pcp, nval) _this_cpu_generic_xchg(pcp, nval)
448 # define this_cpu_xchg(pcp, nval) \
449 __pcpu_size_call_return2(this_cpu_xchg_, (pcp), nval)
452 #define _this_cpu_generic_cmpxchg(pcp, oval, nval) \
455 unsigned long flags; \
456 raw_local_irq_save(flags); \
457 ret__ = __this_cpu_read(pcp); \
458 if (ret__ == (oval)) \
459 __this_cpu_write(pcp, nval); \
460 raw_local_irq_restore(flags); \
464 #ifndef this_cpu_cmpxchg
465 # ifndef this_cpu_cmpxchg_1
466 # define this_cpu_cmpxchg_1(pcp, oval, nval) _this_cpu_generic_cmpxchg(pcp, oval, nval)
468 # ifndef this_cpu_cmpxchg_2
469 # define this_cpu_cmpxchg_2(pcp, oval, nval) _this_cpu_generic_cmpxchg(pcp, oval, nval)
471 # ifndef this_cpu_cmpxchg_4
472 # define this_cpu_cmpxchg_4(pcp, oval, nval) _this_cpu_generic_cmpxchg(pcp, oval, nval)
474 # ifndef this_cpu_cmpxchg_8
475 # define this_cpu_cmpxchg_8(pcp, oval, nval) _this_cpu_generic_cmpxchg(pcp, oval, nval)
477 # define this_cpu_cmpxchg(pcp, oval, nval) \
478 __pcpu_size_call_return2(this_cpu_cmpxchg_, pcp, oval, nval)
489 #define _this_cpu_generic_cmpxchg_double(pcp1, pcp2, oval1, oval2, nval1, nval2) \
492 unsigned long flags; \
493 raw_local_irq_save(flags); \
494 ret__ = __this_cpu_generic_cmpxchg_double(pcp1, pcp2, \
495 oval1, oval2, nval1, nval2); \
496 raw_local_irq_restore(flags); \
500 #ifndef this_cpu_cmpxchg_double
501 # ifndef this_cpu_cmpxchg_double_1
502 # define this_cpu_cmpxchg_double_1(pcp1, pcp2, oval1, oval2, nval1, nval2) \
503 _this_cpu_generic_cmpxchg_double(pcp1, pcp2, oval1, oval2, nval1, nval2)
505 # ifndef this_cpu_cmpxchg_double_2
506 # define this_cpu_cmpxchg_double_2(pcp1, pcp2, oval1, oval2, nval1, nval2) \
507 _this_cpu_generic_cmpxchg_double(pcp1, pcp2, oval1, oval2, nval1, nval2)
509 # ifndef this_cpu_cmpxchg_double_4
510 # define this_cpu_cmpxchg_double_4(pcp1, pcp2, oval1, oval2, nval1, nval2) \
511 _this_cpu_generic_cmpxchg_double(pcp1, pcp2, oval1, oval2, nval1, nval2)
513 # ifndef this_cpu_cmpxchg_double_8
514 # define this_cpu_cmpxchg_double_8(pcp1, pcp2, oval1, oval2, nval1, nval2) \
515 _this_cpu_generic_cmpxchg_double(pcp1, pcp2, oval1, oval2, nval1, nval2)
517 # define this_cpu_cmpxchg_double(pcp1, pcp2, oval1, oval2, nval1, nval2) \
518 __pcpu_double_call_return_bool(this_cpu_cmpxchg_double_, (pcp1), (pcp2), (oval1), (oval2), (nval1), (nval2))
535 #ifndef __this_cpu_read
536 # ifndef __this_cpu_read_1
537 # define __this_cpu_read_1(pcp) (*__this_cpu_ptr(&(pcp)))
539 # ifndef __this_cpu_read_2
540 # define __this_cpu_read_2(pcp) (*__this_cpu_ptr(&(pcp)))
542 # ifndef __this_cpu_read_4
543 # define __this_cpu_read_4(pcp) (*__this_cpu_ptr(&(pcp)))
545 # ifndef __this_cpu_read_8
546 # define __this_cpu_read_8(pcp) (*__this_cpu_ptr(&(pcp)))
548 # define __this_cpu_read(pcp) __pcpu_size_call_return(__this_cpu_read_, (pcp))
551 #define __this_cpu_generic_to_op(pcp, val, op) \
553 *__this_cpu_ptr(&(pcp)) op val; \
556 #ifndef __this_cpu_write
557 # ifndef __this_cpu_write_1
558 # define __this_cpu_write_1(pcp, val) __this_cpu_generic_to_op((pcp), (val), =)
560 # ifndef __this_cpu_write_2
561 # define __this_cpu_write_2(pcp, val) __this_cpu_generic_to_op((pcp), (val), =)
563 # ifndef __this_cpu_write_4
564 # define __this_cpu_write_4(pcp, val) __this_cpu_generic_to_op((pcp), (val), =)
566 # ifndef __this_cpu_write_8
567 # define __this_cpu_write_8(pcp, val) __this_cpu_generic_to_op((pcp), (val), =)
569 # define __this_cpu_write(pcp, val) __pcpu_size_call(__this_cpu_write_, (pcp), (val))
572 #ifndef __this_cpu_add
573 # ifndef __this_cpu_add_1
574 # define __this_cpu_add_1(pcp, val) __this_cpu_generic_to_op((pcp), (val), +=)
576 # ifndef __this_cpu_add_2
577 # define __this_cpu_add_2(pcp, val) __this_cpu_generic_to_op((pcp), (val), +=)
579 # ifndef __this_cpu_add_4
580 # define __this_cpu_add_4(pcp, val) __this_cpu_generic_to_op((pcp), (val), +=)
582 # ifndef __this_cpu_add_8
583 # define __this_cpu_add_8(pcp, val) __this_cpu_generic_to_op((pcp), (val), +=)
585 # define __this_cpu_add(pcp, val) __pcpu_size_call(__this_cpu_add_, (pcp), (val))
588 #ifndef __this_cpu_sub
589 # define __this_cpu_sub(pcp, val) __this_cpu_add((pcp), -(val))
592 #ifndef __this_cpu_inc
593 # define __this_cpu_inc(pcp) __this_cpu_add((pcp), 1)
596 #ifndef __this_cpu_dec
597 # define __this_cpu_dec(pcp) __this_cpu_sub((pcp), 1)
600 #ifndef __this_cpu_and
601 # ifndef __this_cpu_and_1
602 # define __this_cpu_and_1(pcp, val) __this_cpu_generic_to_op((pcp), (val), &=)
604 # ifndef __this_cpu_and_2
605 # define __this_cpu_and_2(pcp, val) __this_cpu_generic_to_op((pcp), (val), &=)
607 # ifndef __this_cpu_and_4
608 # define __this_cpu_and_4(pcp, val) __this_cpu_generic_to_op((pcp), (val), &=)
610 # ifndef __this_cpu_and_8
611 # define __this_cpu_and_8(pcp, val) __this_cpu_generic_to_op((pcp), (val), &=)
613 # define __this_cpu_and(pcp, val) __pcpu_size_call(__this_cpu_and_, (pcp), (val))
616 #ifndef __this_cpu_or
617 # ifndef __this_cpu_or_1
618 # define __this_cpu_or_1(pcp, val) __this_cpu_generic_to_op((pcp), (val), |=)
620 # ifndef __this_cpu_or_2
621 # define __this_cpu_or_2(pcp, val) __this_cpu_generic_to_op((pcp), (val), |=)
623 # ifndef __this_cpu_or_4
624 # define __this_cpu_or_4(pcp, val) __this_cpu_generic_to_op((pcp), (val), |=)
626 # ifndef __this_cpu_or_8
627 # define __this_cpu_or_8(pcp, val) __this_cpu_generic_to_op((pcp), (val), |=)
629 # define __this_cpu_or(pcp, val) __pcpu_size_call(__this_cpu_or_, (pcp), (val))
632 #ifndef __this_cpu_xor
633 # ifndef __this_cpu_xor_1
634 # define __this_cpu_xor_1(pcp, val) __this_cpu_generic_to_op((pcp), (val), ^=)
636 # ifndef __this_cpu_xor_2
637 # define __this_cpu_xor_2(pcp, val) __this_cpu_generic_to_op((pcp), (val), ^=)
639 # ifndef __this_cpu_xor_4
640 # define __this_cpu_xor_4(pcp, val) __this_cpu_generic_to_op((pcp), (val), ^=)
642 # ifndef __this_cpu_xor_8
643 # define __this_cpu_xor_8(pcp, val) __this_cpu_generic_to_op((pcp), (val), ^=)
645 # define __this_cpu_xor(pcp, val) __pcpu_size_call(__this_cpu_xor_, (pcp), (val))
648 #define __this_cpu_generic_add_return(pcp, val) \
650 __this_cpu_add(pcp, val); \
651 __this_cpu_read(pcp); \
654 #ifndef __this_cpu_add_return
655 # ifndef __this_cpu_add_return_1
656 # define __this_cpu_add_return_1(pcp, val) __this_cpu_generic_add_return(pcp, val)
658 # ifndef __this_cpu_add_return_2
659 # define __this_cpu_add_return_2(pcp, val) __this_cpu_generic_add_return(pcp, val)
661 # ifndef __this_cpu_add_return_4
662 # define __this_cpu_add_return_4(pcp, val) __this_cpu_generic_add_return(pcp, val)
664 # ifndef __this_cpu_add_return_8
665 # define __this_cpu_add_return_8(pcp, val) __this_cpu_generic_add_return(pcp, val)
667 # define __this_cpu_add_return(pcp, val) \
668 __pcpu_size_call_return2(__this_cpu_add_return_, pcp, val)
671 #define __this_cpu_sub_return(pcp, val) __this_cpu_add_return(pcp, -(val))
672 #define __this_cpu_inc_return(pcp) __this_cpu_add_return(pcp, 1)
673 #define __this_cpu_dec_return(pcp) __this_cpu_add_return(pcp, -1)
675 #define __this_cpu_generic_xchg(pcp, nval) \
676 ({ typeof(pcp) ret__; \
677 ret__ = __this_cpu_read(pcp); \
678 __this_cpu_write(pcp, nval); \
682 #ifndef __this_cpu_xchg
683 # ifndef __this_cpu_xchg_1
684 # define __this_cpu_xchg_1(pcp, nval) __this_cpu_generic_xchg(pcp, nval)
686 # ifndef __this_cpu_xchg_2
687 # define __this_cpu_xchg_2(pcp, nval) __this_cpu_generic_xchg(pcp, nval)
689 # ifndef __this_cpu_xchg_4
690 # define __this_cpu_xchg_4(pcp, nval) __this_cpu_generic_xchg(pcp, nval)
692 # ifndef __this_cpu_xchg_8
693 # define __this_cpu_xchg_8(pcp, nval) __this_cpu_generic_xchg(pcp, nval)
695 # define __this_cpu_xchg(pcp, nval) \
696 __pcpu_size_call_return2(__this_cpu_xchg_, (pcp), nval)
699 #define __this_cpu_generic_cmpxchg(pcp, oval, nval) \
702 ret__ = __this_cpu_read(pcp); \
703 if (ret__ == (oval)) \
704 __this_cpu_write(pcp, nval); \
708 #ifndef __this_cpu_cmpxchg
709 # ifndef __this_cpu_cmpxchg_1
710 # define __this_cpu_cmpxchg_1(pcp, oval, nval) __this_cpu_generic_cmpxchg(pcp, oval, nval)
712 # ifndef __this_cpu_cmpxchg_2
713 # define __this_cpu_cmpxchg_2(pcp, oval, nval) __this_cpu_generic_cmpxchg(pcp, oval, nval)
715 # ifndef __this_cpu_cmpxchg_4
716 # define __this_cpu_cmpxchg_4(pcp, oval, nval) __this_cpu_generic_cmpxchg(pcp, oval, nval)
718 # ifndef __this_cpu_cmpxchg_8
719 # define __this_cpu_cmpxchg_8(pcp, oval, nval) __this_cpu_generic_cmpxchg(pcp, oval, nval)
721 # define __this_cpu_cmpxchg(pcp, oval, nval) \
722 __pcpu_size_call_return2(__this_cpu_cmpxchg_, pcp, oval, nval)
725 #define __this_cpu_generic_cmpxchg_double(pcp1, pcp2, oval1, oval2, nval1, nval2) \
728 if (__this_cpu_read(pcp1) == (oval1) && \
729 __this_cpu_read(pcp2) == (oval2)) { \
730 __this_cpu_write(pcp1, (nval1)); \
731 __this_cpu_write(pcp2, (nval2)); \
737 #ifndef __this_cpu_cmpxchg_double
738 # ifndef __this_cpu_cmpxchg_double_1
739 # define __this_cpu_cmpxchg_double_1(pcp1, pcp2, oval1, oval2, nval1, nval2) \
740 __this_cpu_generic_cmpxchg_double(pcp1, pcp2, oval1, oval2, nval1, nval2)
742 # ifndef __this_cpu_cmpxchg_double_2
743 # define __this_cpu_cmpxchg_double_2(pcp1, pcp2, oval1, oval2, nval1, nval2) \
744 __this_cpu_generic_cmpxchg_double(pcp1, pcp2, oval1, oval2, nval1, nval2)
746 # ifndef __this_cpu_cmpxchg_double_4
747 # define __this_cpu_cmpxchg_double_4(pcp1, pcp2, oval1, oval2, nval1, nval2) \
748 __this_cpu_generic_cmpxchg_double(pcp1, pcp2, oval1, oval2, nval1, nval2)
750 # ifndef __this_cpu_cmpxchg_double_8
751 # define __this_cpu_cmpxchg_double_8(pcp1, pcp2, oval1, oval2, nval1, nval2) \
752 __this_cpu_generic_cmpxchg_double(pcp1, pcp2, oval1, oval2, nval1, nval2)
754 # define __this_cpu_cmpxchg_double(pcp1, pcp2, oval1, oval2, nval1, nval2) \
755 __pcpu_double_call_return_bool(__this_cpu_cmpxchg_double_, (pcp1), (pcp2), (oval1), (oval2), (nval1), (nval2))