diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2024-11-05 14:14:46 +0300 |
---|---|---|
committer | Geert Uytterhoeven <geert@linux-m68k.org> | 2024-11-06 17:10:14 +0300 |
commit | b6fb218cf90bb2579c9e8191ac2aa3ce4d2536cf (patch) | |
tree | c643bb27304521fa99130a2730ca092f7fce846f /tools/perf/scripts/python/syscall-counts-by-pid.py | |
parent | 4760df6c170792054d6473a2850bc2af9188ea33 (diff) | |
download | linux-b6fb218cf90bb2579c9e8191ac2aa3ce4d2536cf.tar.xz |
m68k: Make sure NR_IRQS is never zero
When compiling an MMU kernel without any platform support, e.g.
"MMU=y allnoconfig":
echo CONFIG_MMU=y > allno.config
make KCONFIG_ALLCONFIG=1 allnoconfig
NR_IRQS is zero, causing a build failure:
kernel/irq/irqdesc.c:593:3: error: array index in initializer exceeds array bounds
593 | [0 ... NR_IRQS-1] = {
| ^
kernel/irq/irqdesc.c:593:3: note: (near initialization for ‘irq_desc’)
kernel/irq/irqdesc.c:593:22: warning: excess elements in array initializer
593 | [0 ... NR_IRQS-1] = {
| ^
kernel/irq/irqdesc.c:593:22: note: (near initialization for ‘irq_desc’)
Fix this by setting the default value of NR_IRQS to 8, which is the
mininum number of interrupts on any m68k CPU (the DIP48 variant of the
MC68008 has tied IPL0 and IPL2 together, but that does not impact the
range).
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Link: https://lore.kernel.org/71db70dc27b46e5326518cd23cb94fa6bee172fe.1730805216.git.geert@linux-m68k.org
Diffstat (limited to 'tools/perf/scripts/python/syscall-counts-by-pid.py')
0 files changed, 0 insertions, 0 deletions