]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - kernel/irq/Kconfig
genirq: Add IRQ_INPROGRESS to core
[mirror_ubuntu-zesty-kernel.git] / kernel / irq / Kconfig
CommitLineData
d9817ebe
TG
1config HAVE_GENERIC_HARDIRQS
2 def_bool n
3
4if HAVE_GENERIC_HARDIRQS
5menu "IRQ subsystem"
6#
7# Interrupt subsystem related configuration options
8#
9config GENERIC_HARDIRQS
10 def_bool y
11
bd151412
TG
12# Select this to disable the deprecated stuff
13config GENERIC_HARDIRQS_NO_DEPRECATED
14 def_bool n
15
009b4c3b
TG
16config GENERIC_HARDIRQS_NO_COMPAT
17 def_bool n
18
d9817ebe
TG
19# Options selectable by the architecture code
20config HAVE_SPARSE_IRQ
21 def_bool n
22
23config GENERIC_IRQ_PROBE
24 def_bool n
25
c78b9b65
TG
26config GENERIC_IRQ_SHOW
27 def_bool n
28
d9817ebe
TG
29config GENERIC_PENDING_IRQ
30 def_bool n
31
d9817ebe
TG
32config AUTO_IRQ_AFFINITY
33 def_bool n
34
35config IRQ_PER_CPU
36 def_bool n
37
38config HARDIRQS_SW_RESEND
39 def_bool n
40
41config SPARSE_IRQ
42 bool "Support sparse irq numbering"
43 depends on HAVE_SPARSE_IRQ
44 ---help---
45
46 Sparse irq numbering is useful for distro kernels that want
47 to define a high CONFIG_NR_CPUS value but still want to have
48 low kernel memory footprint on smaller machines.
49
50 ( Sparse irqs can also be beneficial on NUMA boxes, as they spread
51 out the interrupt descriptors in a more NUMA-friendly way. )
52
53 If you don't know what to do here, say N.
54
55endmenu
56endif