Re: What does the "bottom half" mean in linux?

Bradley D. LaRonde (brad@ltc.com)
Wed, 25 Aug 1999 23:06:50 -0400


> What does the "bottom half" mean in linux?

It's the part right below the "top half". :-) j/k

It's the part of an interrupt handler that runs with interrupts enabled.
The "top half" runs first with interrupts disabled (not something you want
to do for long) and tries to just what is immediately necessary/expedient,
then schedules the rest of the work for the "bottom half" to do later.

Look here for more explanation:

http://metalab.unc.edu/mdw/LDP/lkmpg/mpg.html

Regards,
Brad

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.tux.org/lkml/