summaryrefslogtreecommitdiffstats
path: root/include/asm-ppc/softirq.h
blob: 550b46192481bf0c2d4a269414053640fc21d265 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef __ASM_SOFTIRQ_H
#define __ASM_SOFTIRQ_H

#include <asm/atomic.h>
#include <asm/hardirq.h>

extern unsigned int local_bh_count[NR_CPUS];

#define local_bh_disable()	do { local_bh_count[smp_processor_id()]++; barrier(); } while (0)
#define local_bh_enable()	do { barrier(); local_bh_count[smp_processor_id()]--; } while (0)

#define in_softirq() (local_bh_count[smp_processor_id()] != 0)

#endif	/* __ASM_SOFTIRQ_H */