Import 2.4.0-test6pre6
[davej-history.git] / include / asm-alpha / softirq.h
blob21bbad2c7314ca98e874d5323a109bf7eed60998
1 #ifndef _ALPHA_SOFTIRQ_H
2 #define _ALPHA_SOFTIRQ_H
4 #include <linux/stddef.h>
5 #include <asm/atomic.h>
6 #include <asm/hardirq.h>
8 extern inline void cpu_bh_disable(int cpu)
10 local_bh_count(cpu)++;
11 mb();
14 extern inline void cpu_bh_enable(int cpu)
16 mb();
17 local_bh_count(cpu)--;
20 #define local_bh_enable() cpu_bh_enable(smp_processor_id())
21 #define local_bh_disable() cpu_bh_disable(smp_processor_id())
23 #define in_softirq() (local_bh_count(smp_processor_id()) != 0)
25 #endif /* _ALPHA_SOFTIRQ_H */