Skip to content

Commit

Permalink
[PATCH] x86: increase MAX_MP_BUSSES on default arch
Browse files Browse the repository at this point in the history
Vitezslav Samel <samel@mail.cz> reports that an HP DL380 g4 fails using the
default arch due to the ISA bus having an ID of 32.

It would have worked OK with the generic arch - for some reason the default
arch doesn't support as many busses.

So bump that up to support 256 busses, but leave it at 32 if we're building a
tiny system to save a bit of memory.

Cc: Vitezslav Samel <samel@mail.cz>
Acked-by: Andi Kleen <ak@muc.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Andrew Morton authored and Linus Torvalds committed Sep 1, 2006
1 parent d742eae commit a9aa141
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions include/asm-i386/mach-default/mach_mpspec.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@

#define MAX_IRQ_SOURCES 256

#if CONFIG_BASE_SMALL == 0
#define MAX_MP_BUSSES 256
#else
#define MAX_MP_BUSSES 32
#endif

#endif /* __ASM_MACH_MPSPEC_H */

0 comments on commit a9aa141

Please sign in to comment.