Lines Matching defs:pcp
153 #define __raw_cpu_read(size, qual, pcp) \ argument
158 #define __raw_cpu_write(size, qual, pcp, val) \ argument
163 #define __raw_cpu_read_const(pcp) __raw_cpu_read(, , pcp) argument
196 #define __raw_cpu_read_const(pcp) ({ BUILD_BUG(); (typeof(pcp))0; }) argument
364 #define raw_cpu_cmpxchg64(pcp, oval, nval) percpu_cmpxchg64_op(8, , pcp, oval, nval) argument
365 #define this_cpu_cmpxchg64(pcp, oval, nval) percpu_cmpxchg64_op(8, volatile, pcp, oval, nval) argument
398 #define raw_cpu_try_cmpxchg64(pcp, ovalp, nval) percpu_try_cmpxchg64_op(8, , pcp, ovalp, n… argument
399 #define this_cpu_try_cmpxchg64(pcp, ovalp, nval) percpu_try_cmpxchg64_op(8, volatile, pcp, ovalp, n… argument
404 #define raw_cpu_cmpxchg64(pcp, oval, nval) percpu_cmpxchg_op(8, , pcp, oval, nval); argument
405 #define this_cpu_cmpxchg64(pcp, oval, nval) percpu_cmpxchg_op(8, volatile, pcp, oval, nval); argument
407 #define raw_cpu_try_cmpxchg64(pcp, ovalp, nval) percpu_try_cmpxchg_op(8, , pcp, ovalp, nva… argument
408 #define this_cpu_try_cmpxchg64(pcp, ovalp, nval) percpu_try_cmpxchg_op(8, volatile, pcp, ovalp, nva… argument
435 #define raw_cpu_cmpxchg128(pcp, oval, nval) percpu_cmpxchg128_op(16, , pcp, oval, nval) argument
436 #define this_cpu_cmpxchg128(pcp, oval, nval) percpu_cmpxchg128_op(16, volatile, pcp, oval, nval) argument
468 #define raw_cpu_try_cmpxchg128(pcp, ovalp, nval) percpu_try_cmpxchg128_op(16, , pcp, ovalp,… argument
469 #define this_cpu_try_cmpxchg128(pcp, ovalp, nval) percpu_try_cmpxchg128_op(16, volatile, pcp, ovalp… argument
473 #define raw_cpu_read_1(pcp) __raw_cpu_read(1, , pcp) argument
474 #define raw_cpu_read_2(pcp) __raw_cpu_read(2, , pcp) argument
475 #define raw_cpu_read_4(pcp) __raw_cpu_read(4, , pcp) argument
476 #define raw_cpu_write_1(pcp, val) __raw_cpu_write(1, , pcp, val) argument
477 #define raw_cpu_write_2(pcp, val) __raw_cpu_write(2, , pcp, val) argument
478 #define raw_cpu_write_4(pcp, val) __raw_cpu_write(4, , pcp, val) argument
480 #define this_cpu_read_1(pcp) __raw_cpu_read(1, volatile, pcp) argument
481 #define this_cpu_read_2(pcp) __raw_cpu_read(2, volatile, pcp) argument
482 #define this_cpu_read_4(pcp) __raw_cpu_read(4, volatile, pcp) argument
483 #define this_cpu_write_1(pcp, val) __raw_cpu_write(1, volatile, pcp, val) argument
484 #define this_cpu_write_2(pcp, val) __raw_cpu_write(2, volatile, pcp, val) argument
485 #define this_cpu_write_4(pcp, val) __raw_cpu_write(4, volatile, pcp, val) argument
487 #define this_cpu_read_stable_1(pcp) __raw_cpu_read_stable(1, pcp) argument
488 #define this_cpu_read_stable_2(pcp) __raw_cpu_read_stable(2, pcp) argument
489 #define this_cpu_read_stable_4(pcp) __raw_cpu_read_stable(4, pcp) argument
491 #define raw_cpu_add_1(pcp, val) percpu_add_op(1, , (pcp), val) argument
492 #define raw_cpu_add_2(pcp, val) percpu_add_op(2, , (pcp), val) argument
493 #define raw_cpu_add_4(pcp, val) percpu_add_op(4, , (pcp), val) argument
494 #define raw_cpu_and_1(pcp, val) percpu_binary_op(1, , "and", (pcp), val) argument
495 #define raw_cpu_and_2(pcp, val) percpu_binary_op(2, , "and", (pcp), val) argument
496 #define raw_cpu_and_4(pcp, val) percpu_binary_op(4, , "and", (pcp), val) argument
497 #define raw_cpu_or_1(pcp, val) percpu_binary_op(1, , "or", (pcp), val) argument
498 #define raw_cpu_or_2(pcp, val) percpu_binary_op(2, , "or", (pcp), val) argument
499 #define raw_cpu_or_4(pcp, val) percpu_binary_op(4, , "or", (pcp), val) argument
500 #define raw_cpu_xchg_1(pcp, val) raw_percpu_xchg_op(pcp, val) argument
501 #define raw_cpu_xchg_2(pcp, val) raw_percpu_xchg_op(pcp, val) argument
502 #define raw_cpu_xchg_4(pcp, val) raw_percpu_xchg_op(pcp, val) argument
504 #define this_cpu_add_1(pcp, val) percpu_add_op(1, volatile, (pcp), val) argument
505 #define this_cpu_add_2(pcp, val) percpu_add_op(2, volatile, (pcp), val) argument
506 #define this_cpu_add_4(pcp, val) percpu_add_op(4, volatile, (pcp), val) argument
507 #define this_cpu_and_1(pcp, val) percpu_binary_op(1, volatile, "and", (pcp), val) argument
508 #define this_cpu_and_2(pcp, val) percpu_binary_op(2, volatile, "and", (pcp), val) argument
509 #define this_cpu_and_4(pcp, val) percpu_binary_op(4, volatile, "and", (pcp), val) argument
510 #define this_cpu_or_1(pcp, val) percpu_binary_op(1, volatile, "or", (pcp), val) argument
511 #define this_cpu_or_2(pcp, val) percpu_binary_op(2, volatile, "or", (pcp), val) argument
512 #define this_cpu_or_4(pcp, val) percpu_binary_op(4, volatile, "or", (pcp), val) argument
513 #define this_cpu_xchg_1(pcp, nval) this_percpu_xchg_op(pcp, nval) argument
514 #define this_cpu_xchg_2(pcp, nval) this_percpu_xchg_op(pcp, nval) argument
515 #define this_cpu_xchg_4(pcp, nval) this_percpu_xchg_op(pcp, nval) argument
517 #define raw_cpu_add_return_1(pcp, val) percpu_add_return_op(1, , pcp, val) argument
518 #define raw_cpu_add_return_2(pcp, val) percpu_add_return_op(2, , pcp, val) argument
519 #define raw_cpu_add_return_4(pcp, val) percpu_add_return_op(4, , pcp, val) argument
520 #define raw_cpu_cmpxchg_1(pcp, oval, nval) percpu_cmpxchg_op(1, , pcp, oval, nval) argument
521 #define raw_cpu_cmpxchg_2(pcp, oval, nval) percpu_cmpxchg_op(2, , pcp, oval, nval) argument
522 #define raw_cpu_cmpxchg_4(pcp, oval, nval) percpu_cmpxchg_op(4, , pcp, oval, nval) argument
523 #define raw_cpu_try_cmpxchg_1(pcp, ovalp, nval) percpu_try_cmpxchg_op(1, , pcp, ovalp, nval) argument
524 #define raw_cpu_try_cmpxchg_2(pcp, ovalp, nval) percpu_try_cmpxchg_op(2, , pcp, ovalp, nval) argument
525 #define raw_cpu_try_cmpxchg_4(pcp, ovalp, nval) percpu_try_cmpxchg_op(4, , pcp, ovalp, nval) argument
527 #define this_cpu_add_return_1(pcp, val) percpu_add_return_op(1, volatile, pcp, val) argument
528 #define this_cpu_add_return_2(pcp, val) percpu_add_return_op(2, volatile, pcp, val) argument
529 #define this_cpu_add_return_4(pcp, val) percpu_add_return_op(4, volatile, pcp, val) argument
530 #define this_cpu_cmpxchg_1(pcp, oval, nval) percpu_cmpxchg_op(1, volatile, pcp, oval, nval) argument
531 #define this_cpu_cmpxchg_2(pcp, oval, nval) percpu_cmpxchg_op(2, volatile, pcp, oval, nval) argument
532 #define this_cpu_cmpxchg_4(pcp, oval, nval) percpu_cmpxchg_op(4, volatile, pcp, oval, nval) argument
533 #define this_cpu_try_cmpxchg_1(pcp, ovalp, nval) percpu_try_cmpxchg_op(1, volatile, pcp, ovalp, nva… argument
534 #define this_cpu_try_cmpxchg_2(pcp, ovalp, nval) percpu_try_cmpxchg_op(2, volatile, pcp, ovalp, nva… argument
535 #define this_cpu_try_cmpxchg_4(pcp, ovalp, nval) percpu_try_cmpxchg_op(4, volatile, pcp, ovalp, nva… argument
543 #define raw_cpu_read_8(pcp) __raw_cpu_read(8, , pcp) argument
544 #define raw_cpu_write_8(pcp, val) __raw_cpu_write(8, , pcp, val) argument
546 #define this_cpu_read_8(pcp) __raw_cpu_read(8, volatile, pcp) argument
547 #define this_cpu_write_8(pcp, val) __raw_cpu_write(8, volatile, pcp, val) argument
549 #define this_cpu_read_stable_8(pcp) __raw_cpu_read_stable(8, pcp) argument
551 #define raw_cpu_add_8(pcp, val) percpu_add_op(8, , (pcp), val) argument
552 #define raw_cpu_and_8(pcp, val) percpu_binary_op(8, , "and", (pcp), val) argument
553 #define raw_cpu_or_8(pcp, val) percpu_binary_op(8, , "or", (pcp), val) argument
554 #define raw_cpu_add_return_8(pcp, val) percpu_add_return_op(8, , pcp, val) argument
555 #define raw_cpu_xchg_8(pcp, nval) raw_percpu_xchg_op(pcp, nval) argument
556 #define raw_cpu_cmpxchg_8(pcp, oval, nval) percpu_cmpxchg_op(8, , pcp, oval, nval) argument
557 #define raw_cpu_try_cmpxchg_8(pcp, ovalp, nval) percpu_try_cmpxchg_op(8, , pcp, ovalp, nval) argument
559 #define this_cpu_add_8(pcp, val) percpu_add_op(8, volatile, (pcp), val) argument
560 #define this_cpu_and_8(pcp, val) percpu_binary_op(8, volatile, "and", (pcp), val) argument
561 #define this_cpu_or_8(pcp, val) percpu_binary_op(8, volatile, "or", (pcp), val) argument
562 #define this_cpu_add_return_8(pcp, val) percpu_add_return_op(8, volatile, pcp, val) argument
563 #define this_cpu_xchg_8(pcp, nval) this_percpu_xchg_op(pcp, nval) argument
564 #define this_cpu_cmpxchg_8(pcp, oval, nval) percpu_cmpxchg_op(8, volatile, pcp, oval, nval) argument
565 #define this_cpu_try_cmpxchg_8(pcp, ovalp, nval) percpu_try_cmpxchg_op(8, volatile, pcp, ovalp, nva… argument
567 #define raw_cpu_read_long(pcp) raw_cpu_read_8(pcp) argument
572 #define this_cpu_read_stable_8(pcp) ({ BUILD_BUG(); (typeof(pcp))0; }) argument
574 #define raw_cpu_read_long(pcp) raw_cpu_read_4(pcp) argument
578 #define this_cpu_read_const(pcp) __raw_cpu_read_const(pcp) argument
589 #define this_cpu_read_stable(pcp) __pcpu_size_call_return(this_cpu_read_stable_, pcp) argument