Lines Matching defs:pcp
137 #define __raw_cpu_read(size, qual, pcp) \ argument
142 #define __raw_cpu_write(size, qual, pcp, val) \ argument
147 #define __raw_cpu_read_const(pcp) __raw_cpu_read(, , pcp) argument
182 #define __raw_cpu_read_const(pcp) ({ BUILD_BUG(); (typeof(pcp))0; }) argument
349 #define raw_cpu_cmpxchg64(pcp, oval, nval) percpu_cmpxchg64_op(8, , pcp, oval, nval) argument
350 #define this_cpu_cmpxchg64(pcp, oval, nval) percpu_cmpxchg64_op(8, volatile, pcp, oval, nval) argument
381 #define raw_cpu_try_cmpxchg64(pcp, ovalp, nval) percpu_try_cmpxchg64_op(8, , pcp, ovalp, n… argument
382 #define this_cpu_try_cmpxchg64(pcp, ovalp, nval) percpu_try_cmpxchg64_op(8, volatile, pcp, ovalp, n… argument
387 #define raw_cpu_cmpxchg64(pcp, oval, nval) percpu_cmpxchg_op(8, , pcp, oval, nval); argument
388 #define this_cpu_cmpxchg64(pcp, oval, nval) percpu_cmpxchg_op(8, volatile, pcp, oval, nval); argument
390 #define raw_cpu_try_cmpxchg64(pcp, ovalp, nval) percpu_try_cmpxchg_op(8, , pcp, ovalp, nva… argument
391 #define this_cpu_try_cmpxchg64(pcp, ovalp, nval) percpu_try_cmpxchg_op(8, volatile, pcp, ovalp, nva… argument
417 #define raw_cpu_cmpxchg128(pcp, oval, nval) percpu_cmpxchg128_op(16, , pcp, oval, nval) argument
418 #define this_cpu_cmpxchg128(pcp, oval, nval) percpu_cmpxchg128_op(16, volatile, pcp, oval, nval) argument
449 #define raw_cpu_try_cmpxchg128(pcp, ovalp, nval) percpu_try_cmpxchg128_op(16, , pcp, ovalp,… argument
450 #define this_cpu_try_cmpxchg128(pcp, ovalp, nval) percpu_try_cmpxchg128_op(16, volatile, pcp, ovalp… argument
454 #define raw_cpu_read_1(pcp) __raw_cpu_read(1, , pcp) argument
455 #define raw_cpu_read_2(pcp) __raw_cpu_read(2, , pcp) argument
456 #define raw_cpu_read_4(pcp) __raw_cpu_read(4, , pcp) argument
457 #define raw_cpu_write_1(pcp, val) __raw_cpu_write(1, , pcp, val) argument
458 #define raw_cpu_write_2(pcp, val) __raw_cpu_write(2, , pcp, val) argument
459 #define raw_cpu_write_4(pcp, val) __raw_cpu_write(4, , pcp, val) argument
461 #define this_cpu_read_1(pcp) __raw_cpu_read(1, volatile, pcp) argument
462 #define this_cpu_read_2(pcp) __raw_cpu_read(2, volatile, pcp) argument
463 #define this_cpu_read_4(pcp) __raw_cpu_read(4, volatile, pcp) argument
464 #define this_cpu_write_1(pcp, val) __raw_cpu_write(1, volatile, pcp, val) argument
465 #define this_cpu_write_2(pcp, val) __raw_cpu_write(2, volatile, pcp, val) argument
466 #define this_cpu_write_4(pcp, val) __raw_cpu_write(4, volatile, pcp, val) argument
468 #define this_cpu_read_stable_1(pcp) __raw_cpu_read_stable(1, pcp) argument
469 #define this_cpu_read_stable_2(pcp) __raw_cpu_read_stable(2, pcp) argument
470 #define this_cpu_read_stable_4(pcp) __raw_cpu_read_stable(4, pcp) argument
472 #define raw_cpu_add_1(pcp, val) percpu_add_op(1, , (pcp), val) argument
473 #define raw_cpu_add_2(pcp, val) percpu_add_op(2, , (pcp), val) argument
474 #define raw_cpu_add_4(pcp, val) percpu_add_op(4, , (pcp), val) argument
475 #define raw_cpu_and_1(pcp, val) percpu_binary_op(1, , "and", (pcp), val) argument
476 #define raw_cpu_and_2(pcp, val) percpu_binary_op(2, , "and", (pcp), val) argument
477 #define raw_cpu_and_4(pcp, val) percpu_binary_op(4, , "and", (pcp), val) argument
478 #define raw_cpu_or_1(pcp, val) percpu_binary_op(1, , "or", (pcp), val) argument
479 #define raw_cpu_or_2(pcp, val) percpu_binary_op(2, , "or", (pcp), val) argument
480 #define raw_cpu_or_4(pcp, val) percpu_binary_op(4, , "or", (pcp), val) argument
481 #define raw_cpu_xchg_1(pcp, val) raw_percpu_xchg_op(pcp, val) argument
482 #define raw_cpu_xchg_2(pcp, val) raw_percpu_xchg_op(pcp, val) argument
483 #define raw_cpu_xchg_4(pcp, val) raw_percpu_xchg_op(pcp, val) argument
485 #define this_cpu_add_1(pcp, val) percpu_add_op(1, volatile, (pcp), val) argument
486 #define this_cpu_add_2(pcp, val) percpu_add_op(2, volatile, (pcp), val) argument
487 #define this_cpu_add_4(pcp, val) percpu_add_op(4, volatile, (pcp), val) argument
488 #define this_cpu_and_1(pcp, val) percpu_binary_op(1, volatile, "and", (pcp), val) argument
489 #define this_cpu_and_2(pcp, val) percpu_binary_op(2, volatile, "and", (pcp), val) argument
490 #define this_cpu_and_4(pcp, val) percpu_binary_op(4, volatile, "and", (pcp), val) argument
491 #define this_cpu_or_1(pcp, val) percpu_binary_op(1, volatile, "or", (pcp), val) argument
492 #define this_cpu_or_2(pcp, val) percpu_binary_op(2, volatile, "or", (pcp), val) argument
493 #define this_cpu_or_4(pcp, val) percpu_binary_op(4, volatile, "or", (pcp), val) argument
494 #define this_cpu_xchg_1(pcp, nval) this_percpu_xchg_op(pcp, nval) argument
495 #define this_cpu_xchg_2(pcp, nval) this_percpu_xchg_op(pcp, nval) argument
496 #define this_cpu_xchg_4(pcp, nval) this_percpu_xchg_op(pcp, nval) argument
498 #define raw_cpu_add_return_1(pcp, val) percpu_add_return_op(1, , pcp, val) argument
499 #define raw_cpu_add_return_2(pcp, val) percpu_add_return_op(2, , pcp, val) argument
500 #define raw_cpu_add_return_4(pcp, val) percpu_add_return_op(4, , pcp, val) argument
501 #define raw_cpu_cmpxchg_1(pcp, oval, nval) percpu_cmpxchg_op(1, , pcp, oval, nval) argument
502 #define raw_cpu_cmpxchg_2(pcp, oval, nval) percpu_cmpxchg_op(2, , pcp, oval, nval) argument
503 #define raw_cpu_cmpxchg_4(pcp, oval, nval) percpu_cmpxchg_op(4, , pcp, oval, nval) argument
504 #define raw_cpu_try_cmpxchg_1(pcp, ovalp, nval) percpu_try_cmpxchg_op(1, , pcp, ovalp, nval) argument
505 #define raw_cpu_try_cmpxchg_2(pcp, ovalp, nval) percpu_try_cmpxchg_op(2, , pcp, ovalp, nval) argument
506 #define raw_cpu_try_cmpxchg_4(pcp, ovalp, nval) percpu_try_cmpxchg_op(4, , pcp, ovalp, nval) argument
508 #define this_cpu_add_return_1(pcp, val) percpu_add_return_op(1, volatile, pcp, val) argument
509 #define this_cpu_add_return_2(pcp, val) percpu_add_return_op(2, volatile, pcp, val) argument
510 #define this_cpu_add_return_4(pcp, val) percpu_add_return_op(4, volatile, pcp, val) argument
511 #define this_cpu_cmpxchg_1(pcp, oval, nval) percpu_cmpxchg_op(1, volatile, pcp, oval, nval) argument
512 #define this_cpu_cmpxchg_2(pcp, oval, nval) percpu_cmpxchg_op(2, volatile, pcp, oval, nval) argument
513 #define this_cpu_cmpxchg_4(pcp, oval, nval) percpu_cmpxchg_op(4, volatile, pcp, oval, nval) argument
514 #define this_cpu_try_cmpxchg_1(pcp, ovalp, nval) percpu_try_cmpxchg_op(1, volatile, pcp, ovalp, nva… argument
515 #define this_cpu_try_cmpxchg_2(pcp, ovalp, nval) percpu_try_cmpxchg_op(2, volatile, pcp, ovalp, nva… argument
516 #define this_cpu_try_cmpxchg_4(pcp, ovalp, nval) percpu_try_cmpxchg_op(4, volatile, pcp, ovalp, nva… argument
524 #define raw_cpu_read_8(pcp) __raw_cpu_read(8, , pcp) argument
525 #define raw_cpu_write_8(pcp, val) __raw_cpu_write(8, , pcp, val) argument
527 #define this_cpu_read_8(pcp) __raw_cpu_read(8, volatile, pcp) argument
528 #define this_cpu_write_8(pcp, val) __raw_cpu_write(8, volatile, pcp, val) argument
530 #define this_cpu_read_stable_8(pcp) __raw_cpu_read_stable(8, pcp) argument
532 #define raw_cpu_add_8(pcp, val) percpu_add_op(8, , (pcp), val) argument
533 #define raw_cpu_and_8(pcp, val) percpu_binary_op(8, , "and", (pcp), val) argument
534 #define raw_cpu_or_8(pcp, val) percpu_binary_op(8, , "or", (pcp), val) argument
535 #define raw_cpu_add_return_8(pcp, val) percpu_add_return_op(8, , pcp, val) argument
536 #define raw_cpu_xchg_8(pcp, nval) raw_percpu_xchg_op(pcp, nval) argument
537 #define raw_cpu_cmpxchg_8(pcp, oval, nval) percpu_cmpxchg_op(8, , pcp, oval, nval) argument
538 #define raw_cpu_try_cmpxchg_8(pcp, ovalp, nval) percpu_try_cmpxchg_op(8, , pcp, ovalp, nval) argument
540 #define this_cpu_add_8(pcp, val) percpu_add_op(8, volatile, (pcp), val) argument
541 #define this_cpu_and_8(pcp, val) percpu_binary_op(8, volatile, "and", (pcp), val) argument
542 #define this_cpu_or_8(pcp, val) percpu_binary_op(8, volatile, "or", (pcp), val) argument
543 #define this_cpu_add_return_8(pcp, val) percpu_add_return_op(8, volatile, pcp, val) argument
544 #define this_cpu_xchg_8(pcp, nval) this_percpu_xchg_op(pcp, nval) argument
545 #define this_cpu_cmpxchg_8(pcp, oval, nval) percpu_cmpxchg_op(8, volatile, pcp, oval, nval) argument
546 #define this_cpu_try_cmpxchg_8(pcp, ovalp, nval) percpu_try_cmpxchg_op(8, volatile, pcp, ovalp, nva… argument
548 #define raw_cpu_read_long(pcp) raw_cpu_read_8(pcp) argument
553 #define this_cpu_read_stable_8(pcp) ({ BUILD_BUG(); (typeof(pcp))0; }) argument
555 #define raw_cpu_read_long(pcp) raw_cpu_read_4(pcp) argument
559 #define this_cpu_read_const(pcp) __raw_cpu_read_const(pcp) argument
570 #define this_cpu_read_stable(pcp) __pcpu_size_call_return(this_cpu_read_stable_, pcp) argument