红联Linux门户
Linux帮助

linux软中断

发布时间:2006-08-28 10:16:23来源:红联作者:syncode
前几天把硬中断完成了,这几天在做软中断的事情。现在对linux2.6.12的软中断机制有了一个基本的认识。在此把它的软中断的一些问题做一个记录。
系统中有一个softirq_action结构,它定义在中,是一个通用结构,还有一个很重要的结构在中申明,这个结构是cpu相关的,比如在i386中这个结构为
[code]typedef struct {
unsigned int __softirq_pending;
unsigned long idle_timestamp;
unsigned int __nmi_count; /* arch dependent */
unsigned int apic_timer_irqs; /* arch dependent */
} ____cacheline_aligned irq_cpustat_t;[/code]
在arm中这个结构为
[code]typedef struct {
unsigned int __softirq_pending;
} ____cacheline_aligned irq_cpustat_t;[/code]
以上两个结构均再中。
中有几个很不好理解的函数:

1:local_softirq_pending()
下面是这个函数的定义
[code]#ifndef __ARCH_IRQ_STAT
extern irq_cpustat_t irq_stat[]; /* defined in asm/hardirq.h */
#define __IRQ_STAT(cpu, member) (irq_stat[cpu].member)
#endif

/* arch independent irq_stat fields */
#define local_softirq_pending() \
__IRQ_STAT(smp_processor_id(), __softirq_pending)[/code]
其中的smp_processor_id()如果追下去会很复杂,其实它最后只是一个数字:cpu的号码,单cpu中为0.

2.#define __raise_softirq_irqoff(nr) do { local_softirq_pending() |= 1UL << (nr); } while (0)
这个函数实际上是把irq_stat[cpu_id](kernel/softirq.c中)结构中的pending的第nr为置位,表示这个cpu有几号软中断要处理,在do_softirq()中有对irq_stat[]的pending的相应检查及处理,详细的处理过程参见源代码及《Linux Kernel Development》第7章。
这是我现在感到不好理解的部分。
文章评论

共有 5 条评论

  1. davemac 于 2011-01-24 11:23:05发表:

    学习了 谢谢

  2. checkpoint 于 2010-09-29 16:09:31发表:

    谢谢楼主,支持楼主。

  3. vidio 于 2010-09-27 09:33:40发表:

    还是不清楚

  4. js001sdx 于 2009-09-29 09:47:37发表:

    读了,谢了

  5. blueeyes1004 于 2006-09-05 09:23:43发表:

    没看懂:(