linux kernel 工程师
全部博文(99)
发布时间:2014-02-10 15:51:12
网络接收软中断的注册static int __init net_dev_init(void){....open_softirq(NET_RX_SOFTIRQ, net_rx_action);}网络接收软中断的处理思路static void net_rx_action(struct softirq_action *h){ struct softnet_data *sd = &__get_cpu_var(softnet_data); unsigned long time_limit = ji.........【阅读全文】
发布时间:2014-02-08 16:14:33
handle_edge_irq,handle_level_irq等函数会调用handle_irq_event,我们来看一下它的流程handle_irq_event->handle_irq_event_percpu->action->handlerirqreturn_t handle_irq_event(struct irq_desc *desc){ struct irqaction *action = desc->action; irqreturn_t ret; desc->istate &= ~IRQS.........【阅读全文】
发布时间:2014-02-08 16:04:24
linux中断(2):中断注册之__irq_set_handler 文中提到 __irq_set_handler作为中断注册的第一个层次,通过这个函数为desc->handle_irq 安排一个处理函数。通常安排的处理函数有handle_edge_irq,handle_level_irq等 假如安排的处理函数是 handle_level_irq,我们看一下处理流程 /** *&.........【阅读全文】
发布时间:2014-02-08 15:37:08
在x86里面irq的入口函数是 do_irq() 在arm里面irq的入口函数是 asm_do_irq() unsigned int __irq_entry do_IRQ(struct pt_regs *regs){struct pt_regs *old_regs = set_irq_regs(regs);/* high bit used in ret_from_ code */unsigned vector = ~regs->orig_ax;unsigned irq;irq_enter().........【阅读全文】
发布时间:2014-02-08 15:26:46
__setup_irq是request_irq的核心部分,真正实现把 irqaction添加到irq_desc上面/* * Internal function to register an irqaction - typically used to * allocate special interrupts that are part of the architecture. */static int__setup_irq(unsigned int irq, struct irq_desc *desc, .........【阅读全文】