Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Sun, 3 Nov 2002 11:14:24 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Sun, 3 Nov 2002 11:14:24 -0500 Received: from modemcable077.18-202-24.mtl.mc.videotron.ca ([24.202.18.77]:31243 "EHLO montezuma.mastecende.com") by vger.kernel.org with ESMTP id ; Sun, 3 Nov 2002 11:14:19 -0500 Date: Sun, 3 Nov 2002 11:23:49 -0500 (EST) From: Zwane Mwaikambo X-X-Sender: zwane@montezuma.mastecende.com To: Alan Cox cc: Linux Kernel Subject: [PATCH][2.5] nolapic boot parameter Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1140 Lines: 40 This has bugged me for a while, also applies to 2.4.45 Index: linux-2.5.44-ac5/arch/i386/kernel/apic.c =================================================================== RCS file: /build/cvsroot/linux-2.5.44-ac5/arch/i386/kernel/apic.c,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 apic.c --- linux-2.5.44-ac5/arch/i386/kernel/apic.c 3 Nov 2002 07:20:03 -0000 1.1.1.1 +++ linux-2.5.44-ac5/arch/i386/kernel/apic.c 3 Nov 2002 07:43:50 -0000 @@ -609,11 +609,20 @@ #endif /* CONFIG_PM */ +int dont_enable_local_apic __initdata = 0; + +static int __init nolapic_setup(char *str) +{ + dont_enable_local_apic = 1; + return 1; +} + +__setup("nolapic", nolapic_setup); + /* * Detect and enable local APICs on non-SMP boards. * Original code written by Keir Fraser. */ -int dont_enable_local_apic __initdata = 0; static int __init detect_init_APIC (void) { -- function.linuxpower.ca - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/