]> git.ipfire.org Git - thirdparty/man-pages.git/blob - man9/ksoftirqd.9
Import of man-pages 1.70
[thirdparty/man-pages.git] / man9 / ksoftirqd.9
1 .\" Hey Emacs! This file is -*- nroff -*- source.
2 .\"
3 .\" This manpage is Copyright (C) 2003 Matthew Wilcox
4 .\"
5 .\" Permission is granted to make and distribute verbatim copies of this
6 .\" manual provided the copyright notice and this permission notice are
7 .\" preserved on all copies.
8 .\"
9 .\" Permission is granted to copy and distribute modified versions of this
10 .\" manual under the conditions for verbatim copying, provided that the
11 .\" entire resulting derived work is distributed under the terms of a
12 .\" permission notice identical to this one.
13 .\"
14 .\" Since the Linux kernel is constantly changing, this manual page may
15 .\" be incorrect or out-of-date. The author(s) assume no responsibility
16 .\" for errors or omissions, or for damages resulting from the use of the
17 .\" information contained herein.
18 .\"
19 .\" Formatted or processed versions of this manual, if unaccompanied by
20 .\" the source, must acknowledge the copyright and authors of this work.
21 .\"
22 .TH KSOFTIRQD 9 2003-08-24 "Linux 2.6.0" "Linux Programmer's Manual"
23 .SH NAME
24 ksoftirqd \- Softirq daemon
25 .SH DESCRIPTION
26 .B ksoftirqd
27 is a per-cpu kernel thread that runs when the machine is under heavy
28 soft-interrupt load. Soft interrupts are normally serviced on return from
29 a hard interrupt, but it's possible for soft interrupts to be triggered
30 more quickly than they can be serviced. If a soft interrupt is triggered
31 for a second time while soft interrupts are being handled, the
32 .B ksoftirq
33 daemon is triggered to handle the soft interrupts in process context.
34 If
35 .B ksoftirqd
36 is taking more than a tiny percentage of CPU time, this indicates the
37 machine is under heavy soft interrupt load.
38 .SH HISTORY
39 .B ksoftirqd
40 was introduced during the 2.3 development series as part of the
41 softnet work by Alexey Kuznetsov and David Miller.