[PATCH] fix visws breakage in 2.5.67

Andrey Panin (pazke@orbita1.ru)
Wed, 9 Apr 2003 09:07:11 +0400


This is a MIME-formatted message. If you see this text it means that your
E-mail software does not support MIME-formatted messages.

--=_courier-13702-1049864897-0001-2
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

Hi,

someone broke visws again :(

This patch fixes it by adding '#ifdef CONFIG_X86_IO_APIC'
around call to setup_ioapic_dest() in smp_cpus_done().

Best regards.

-- 
Andrey Panin		| Embedded systems software developer
pazke@orbita1.ru	| PGP key: wwwkeys.pgp.net

--=_courier-13702-1049864897-0001-2 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="patch-ioapic-2.5.67"

diff -urN -X /usr/share/dontdiff linux-2.5.67.vanilla/arch/i386/kernel/smpboot.c linux-2.5.67/arch/i386/kernel/smpboot.c --- linux-2.5.67.vanilla/arch/i386/kernel/smpboot.c Wed Apr 9 19:43:46 2003 +++ linux-2.5.67/arch/i386/kernel/smpboot.c Wed Apr 9 19:16:46 2003 @@ -1155,7 +1155,9 @@ void __init smp_cpus_done(unsigned int max_cpus) { +#ifdef CONFIG_X86_IO_APIC setup_ioapic_dest(TARGET_CPUS); +#endif zap_low_mappings(); }

--=_courier-13702-1049864897-0001-2--