Searched refs:this_cpu_generic_to_op (Results 1 – 1 of 1) sorted by relevance
/openbmc/linux/include/asm-generic/ |
H A D | percpu.h | 152 #define this_cpu_generic_to_op(pcp, val, op) \ macro 388 #define this_cpu_write_1(pcp, val) this_cpu_generic_to_op(pcp, val, =) 391 #define this_cpu_write_2(pcp, val) this_cpu_generic_to_op(pcp, val, =) 394 #define this_cpu_write_4(pcp, val) this_cpu_generic_to_op(pcp, val, =) 397 #define this_cpu_write_8(pcp, val) this_cpu_generic_to_op(pcp, val, =) 401 #define this_cpu_add_1(pcp, val) this_cpu_generic_to_op(pcp, val, +=) 404 #define this_cpu_add_2(pcp, val) this_cpu_generic_to_op(pcp, val, +=) 407 #define this_cpu_add_4(pcp, val) this_cpu_generic_to_op(pcp, val, +=) 410 #define this_cpu_add_8(pcp, val) this_cpu_generic_to_op(pcp, val, +=) 414 #define this_cpu_and_1(pcp, val) this_cpu_generic_to_op(pcp, val, &=) [all …]
|