softirq.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  *
  6.  * Copyright (C) 1997, 1998, 1999, 2000, 2001 Ralf Baechle
  7.  * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
  8.  * Copyright (C) 1999, 2001 MIPS Technologies, Inc.
  9.  */
  10. #ifndef _ASM_SOFTIRQ_H
  11. #define _ASM_SOFTIRQ_H
  12. #include <asm/atomic.h>
  13. #include <asm/hardirq.h>
  14. static inline void cpu_bh_disable(int cpu)
  15. {
  16. local_bh_count(cpu)++;
  17. barrier();
  18. }
  19. static inline void __cpu_bh_enable(int cpu)
  20. {
  21. barrier();
  22. local_bh_count(cpu)--;
  23. }
  24. #define local_bh_disable() cpu_bh_disable(smp_processor_id())
  25. #define __local_bh_enable() __cpu_bh_enable(smp_processor_id())
  26. #define local_bh_enable()
  27. do {
  28. int cpu;
  29. barrier();
  30. cpu = smp_processor_id();
  31. if (!--local_bh_count(cpu) && softirq_pending(cpu))
  32. do_softirq();
  33. } while (0)
  34. #define in_softirq() (local_bh_count(smp_processor_id()) != 0)
  35. #endif /* _ASM_SOFTIRQ_H */