Linux Bottome Half Handler 机制详细解析

Interrupts Handling

Interrupts are used to allow the hardware to communicate with the operating system. Here, a brief explanation of the principles governing the execution of an interrupt is given. There are two types of interrupts in Linux: fast and slow. Slow interrupts are the usual kind. Other interrupts are legal when they are being dealt with. After slow interrupt has been processed, additional activities requiring regular attention are carried out by the system - for example, scheduler is called as and when required. A typical example is the timer interrupt. Fast interrupts are used for the short, less complex tasks. While they are handled, other interrupts are blocked. A typical example is the line printer interrupt [ea96b].

The variable "intr_count" (kernel/softirq.c of the source) is used by the kernel to keep track of the level of the interrupt nesting.

Bottom Half Handling

There are often times in a kernel when you do not want to do work at this moment. A good example of this is during interrupt processing. When the interrupt was asserted, the processor stopped what it was doing and the operating system delivered the interrupt to the appropriate device driver. Device drivers should not spend too much time handling interrupts as, during this time, nothing else in the system can run. There is often some work that could just as well be done later on. Linux's bottom half handlers were invented so that device drivers and other parts of the Linux kernel could queue work to be done later on [ea96b].

  [IMAGE ]
Figure: Linux Bottom Half Handling

The Figure (fig [*]) shows the kernel data structures associated with bottom half handling. There can be up to 32 different bottom half handlers. bh_base is a vector of pointers to each of the kernel's bottom half handling routines. bh_active and bh_mask have their bits set according to what handlers have been installed and are active. If bit N of bh_mask is set then the Nth element of bh_base contains the address of a bottom half routine. If bit N of bh_active is set then the N'th bottom half handler routine should be called as soon as the scheduler deems reasonable. These indices are statically defined; the timer bottom half handler is the highest priority ( index 0), the console bottom half handler is next in priority ( index 1) and so on. Typically, the bottom half handling routines have lists of tasks associated with them. For example, the immediate bottom half handler works its way through the immediate tasks queue ( tq_immediate) which contains tasks that need to be performed immediately. Some of the kernel's bottom half handers are device specific, but others are more generic.
TIMER This handler is marked as active each time the system's periodic timer interrupts and is used to drive the kernel's timer queue mechanisms.
CONSOLE This handler is used to process console messages.
TQUEUE This handler is used to process tty messages.
NET This handler handles general network processing.
IMMEDIATE This is a generic handler used by several device drivers to queue work to be done later.
Whenever a device driver, or some other part of the kernel, needs to schedule work to be done later, it adds work to the appropriate system queue, for example the timer queue, and then signals the kernel that some bottom half handling needs to be done. It does this by setting the appropriate bit in bh_active. Bit 8 is set if the driver has queued something on the immediate queue and wishes the immediate bottom half handler to run and process it. After every slow interrupt, if no further interrupt is running, the bh_active bitmask consisting of upto 32 bottom halves is scanned. If it has any bits set, the bottom half handler routines that are active are called. Bit 1 is checked first, then 2 and so on until bit 31. The bit in bh_active is cleared as each bottom half handling routine is called. bh_active is transient, it only has meaning between calls to the scheduler and is a way of not calling bottom half handling routines when there is no work for them to do.

The variable "intr_count" is incremented at the time of entry into bottom half processing and decremented at the end of the processing.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值