Skip to content

Commit bfc9136

Browse files
meelisroosmattst88
authored andcommitted
alpha: Fix Eiger NR_IRQS to 128
Eiger machine vector definition has nr_irqs 128, and working 2.6.26 boot shows SCSI getting IRQ-s 64 and 65. Current kernel boot fails because Symbios SCSI fails to request IRQ-s and does not find the disks. It has been broken at least since 3.18 - the earliest I could test with my gcc-5. The headers have moved around and possibly another order of defines has worked in the past - but since 128 seems to be correct and used, fix arch/alpha/include/asm/irq.h to have NR_IRQS=128 for Eiger. This fixes 4.19-rc7 boot on my Force Flexor A264 (Eiger subarch). Cc: stable@vger.kernel.org # v3.18+ Signed-off-by: Meelis Roos <mroos@linux.ee> Signed-off-by: Matt Turner <mattst88@gmail.com>
1 parent 842fc0f commit bfc9136

File tree

1 file changed

+3
-3
lines changed
  • arch/alpha/include/asm

1 file changed

+3
-3
lines changed

arch/alpha/include/asm/irq.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,15 +56,15 @@
5656

5757
#elif defined(CONFIG_ALPHA_DP264) || \
5858
defined(CONFIG_ALPHA_LYNX) || \
59-
defined(CONFIG_ALPHA_SHARK) || \
60-
defined(CONFIG_ALPHA_EIGER)
59+
defined(CONFIG_ALPHA_SHARK)
6160
# define NR_IRQS 64
6261

6362
#elif defined(CONFIG_ALPHA_TITAN)
6463
#define NR_IRQS 80
6564

6665
#elif defined(CONFIG_ALPHA_RAWHIDE) || \
67-
defined(CONFIG_ALPHA_TAKARA)
66+
defined(CONFIG_ALPHA_TAKARA) || \
67+
defined(CONFIG_ALPHA_EIGER)
6868
# define NR_IRQS 128
6969

7070
#elif defined(CONFIG_ALPHA_WILDFIRE)

0 commit comments

Comments
 (0)