Searched refs:local_bh_count (Results 1 - 25 of 88) sorted by relevance

1234

/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-ppc/
H A Dsoftirq.h13 local_bh_count(smp_processor_id())++; \
20 local_bh_count(smp_processor_id())--; \
25 if (!--local_bh_count(smp_processor_id()) \
31 #define in_softirq() (local_bh_count(smp_processor_id()) != 0)
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-ppc64/
H A Dsoftirq.h13 #define local_bh_disable() do { local_bh_count(smp_processor_id())++; barrier(); } while (0)
14 #define __local_bh_enable() do { barrier(); local_bh_count(smp_processor_id())--; } while (0)
19 if (!--local_bh_count(smp_processor_id()) \
25 #define in_softirq() (local_bh_count(smp_processor_id()) != 0)
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-sh/
H A Dsoftirq.h9 local_bh_count(smp_processor_id())++; \
16 local_bh_count(smp_processor_id())--; \
22 if (!--local_bh_count(smp_processor_id()) \
28 #define in_softirq() (local_bh_count(smp_processor_id()) != 0)
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-sparc/
H A Dsoftirq.h16 #define local_bh_disable() (local_bh_count(smp_processor_id())++)
17 #define __local_bh_enable() (local_bh_count(smp_processor_id())--)
19 do { if (!--local_bh_count(smp_processor_id()) && \
25 #define in_softirq() (local_bh_count(smp_processor_id()) != 0)
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-sparc64/
H A Dsoftirq.h13 #define local_bh_disable() (local_bh_count(smp_processor_id())++)
14 #define __local_bh_enable() (local_bh_count(smp_processor_id())--)
16 do { if (!--local_bh_count(smp_processor_id()) && \
23 #define in_softirq() (local_bh_count(smp_processor_id()) != 0)
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-ppc/
H A Dsoftirq.h13 local_bh_count(smp_processor_id())++; \
20 local_bh_count(smp_processor_id())--; \
25 if (!--local_bh_count(smp_processor_id()) \
31 #define in_softirq() (local_bh_count(smp_processor_id()) != 0)
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-ppc64/
H A Dsoftirq.h13 #define local_bh_disable() do { local_bh_count(smp_processor_id())++; barrier(); } while (0)
14 #define __local_bh_enable() do { barrier(); local_bh_count(smp_processor_id())--; } while (0)
19 if (!--local_bh_count(smp_processor_id()) \
25 #define in_softirq() (local_bh_count(smp_processor_id()) != 0)
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-sh/
H A Dsoftirq.h9 local_bh_count(smp_processor_id())++; \
16 local_bh_count(smp_processor_id())--; \
22 if (!--local_bh_count(smp_processor_id()) \
28 #define in_softirq() (local_bh_count(smp_processor_id()) != 0)
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-sparc/
H A Dsoftirq.h16 #define local_bh_disable() (local_bh_count(smp_processor_id())++)
17 #define __local_bh_enable() (local_bh_count(smp_processor_id())--)
19 do { if (!--local_bh_count(smp_processor_id()) && \
25 #define in_softirq() (local_bh_count(smp_processor_id()) != 0)
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-sparc64/
H A Dsoftirq.h13 #define local_bh_disable() (local_bh_count(smp_processor_id())++)
14 #define __local_bh_enable() (local_bh_count(smp_processor_id())--)
16 do { if (!--local_bh_count(smp_processor_id()) && \
23 #define in_softirq() (local_bh_count(smp_processor_id()) != 0)
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-arm/
H A Dsoftirq.h8 do { barrier(); local_bh_count(cpu)--; } while (0)
10 do { local_bh_count(cpu)++; barrier(); } while (0)
15 #define in_softirq() (local_bh_count(smp_processor_id()) != 0)
19 unsigned int *ptr = &local_bh_count(smp_processor_id()); \
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-cris/
H A Dsoftirq.h9 local_bh_count(smp_processor_id())++; \
16 local_bh_count(smp_processor_id())--; \
21 if (!--local_bh_count(smp_processor_id()) \
28 #define in_softirq() (local_bh_count(smp_processor_id()) != 0)
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-arm/
H A Dsoftirq.h8 do { barrier(); local_bh_count(cpu)--; } while (0)
10 do { local_bh_count(cpu)++; barrier(); } while (0)
15 #define in_softirq() (local_bh_count(smp_processor_id()) != 0)
19 unsigned int *ptr = &local_bh_count(smp_processor_id()); \
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-cris/
H A Dsoftirq.h9 local_bh_count(smp_processor_id())++; \
16 local_bh_count(smp_processor_id())--; \
21 if (!--local_bh_count(smp_processor_id()) \
28 #define in_softirq() (local_bh_count(smp_processor_id()) != 0)
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-mips/
H A Dsoftirq.h18 local_bh_count(cpu)++;
25 local_bh_count(cpu)--;
37 if (!--local_bh_count(cpu) && softirq_pending(cpu)) \
41 #define in_softirq() (local_bh_count(smp_processor_id()) != 0)
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-mips64/
H A Dsoftirq.h18 local_bh_count(cpu)++;
25 local_bh_count(cpu)--;
36 if (!--local_bh_count(cpu) && softirq_pending(cpu)) \
40 #define in_softirq() (local_bh_count(smp_processor_id()) != 0)
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-s390/
H A Dsoftirq.h21 do { barrier(); local_bh_count(cpu)--; } while (0)
23 do { local_bh_count(cpu)++; barrier(); } while (0)
28 #define in_softirq() (local_bh_count(smp_processor_id()) != 0)
34 unsigned int *ptr = &local_bh_count(smp_processor_id()); \
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-s390x/
H A Dsoftirq.h21 do { barrier(); local_bh_count(cpu)--; } while (0)
23 do { local_bh_count(cpu)++; barrier(); } while (0)
28 #define in_softirq() (local_bh_count(smp_processor_id()) != 0)
34 unsigned int *ptr = &local_bh_count(smp_processor_id()); \
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-mips/
H A Dsoftirq.h18 local_bh_count(cpu)++;
25 local_bh_count(cpu)--;
37 if (!--local_bh_count(cpu) && softirq_pending(cpu)) \
41 #define in_softirq() (local_bh_count(smp_processor_id()) != 0)
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-mips64/
H A Dsoftirq.h18 local_bh_count(cpu)++;
25 local_bh_count(cpu)--;
36 if (!--local_bh_count(cpu) && softirq_pending(cpu)) \
40 #define in_softirq() (local_bh_count(smp_processor_id()) != 0)
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-s390/
H A Dsoftirq.h21 do { barrier(); local_bh_count(cpu)--; } while (0)
23 do { local_bh_count(cpu)++; barrier(); } while (0)
28 #define in_softirq() (local_bh_count(smp_processor_id()) != 0)
34 unsigned int *ptr = &local_bh_count(smp_processor_id()); \
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-s390x/
H A Dsoftirq.h21 do { barrier(); local_bh_count(cpu)--; } while (0)
23 do { local_bh_count(cpu)++; barrier(); } while (0)
28 #define in_softirq() (local_bh_count(smp_processor_id()) != 0)
34 unsigned int *ptr = &local_bh_count(smp_processor_id()); \
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm/
H A Dsoftirq.h18 local_bh_count(cpu)++;
25 local_bh_count(cpu)--;
37 if (!--local_bh_count(cpu) && softirq_pending(cpu)) \
41 #define in_softirq() (local_bh_count(smp_processor_id()) != 0)
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-alpha/
H A Dsoftirq.h10 local_bh_count(cpu)++;
17 local_bh_count(cpu)--;
29 if (!--local_bh_count(cpu) && softirq_pending(cpu)) \
33 #define in_softirq() (local_bh_count(smp_processor_id()) != 0)
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-i386/
H A Dsoftirq.h8 do { barrier(); local_bh_count(cpu)--; } while (0)
10 do { local_bh_count(cpu)++; barrier(); } while (0)
15 #define in_softirq() (local_bh_count(smp_processor_id()) != 0)
20 * (char *)&local_bh_count - 8 == (char *)&softirq_pending
27 unsigned int *ptr = &local_bh_count(smp_processor_id()); \

Completed in 474 milliseconds

1234