Searched refs:nr (Results 1 – 4 of 4) sorted by relevance
22 void register_softirq(uint16_t nr, softirq_handler handler) in register_softirq() argument24 softirq_handlers[nr] = handler; in register_softirq()30 void fire_softirq(uint16_t nr) in fire_softirq() argument32 bitmap_set_lock(nr, &per_cpu(softirq_pending, get_pcpu_id())); in fire_softirq()39 uint16_t nr = ffs64(*softirq_pending_bitmap); in do_softirq_internal() local41 while (nr < NR_SOFTIRQS) { in do_softirq_internal()42 bitmap_clear_lock(nr, softirq_pending_bitmap); in do_softirq_internal()43 (*softirq_handlers[nr])(cpu_id); in do_softirq_internal()44 nr = ffs64(*softirq_pending_bitmap); in do_softirq_internal()
188 uint16_t nr; \189 nr = nr_arg & ((8U * sizeof(op_type)) - 1U); \192 : "r" ((op_type)(1UL<<nr)) \208 uint16_t nr; \212 : "r" ((op_type)(~(1UL<<(nr)))) \230 : "m" (*addr), "r" ((uint64_t)(nr & 0x3fU)) in bitmap_test()240 : "m" (*addr), "r" ((uint32_t)(nr & 0x1fU)) in bitmap32_test()255 uint16_t nr; \260 : "r" ((op_type)nr) \279 uint16_t nr; \[all …]
18 void register_softirq(uint16_t nr, softirq_handler handler);19 void fire_softirq(uint16_t nr);
29 uint32_t i = 0U, nr, half; in local_find_vcpuid_entry() local33 nr = vm->vcpuid_entry_nr; in local_find_vcpuid_entry()34 half = nr >> 1U; in local_find_vcpuid_entry()39 for (; i < nr; i++) { in local_find_vcpuid_entry()
Completed in 11 milliseconds