From a62a98fc8226ba9b9f04fd25f989da4f3b8389f9 Mon Sep 17 00:00:00 2001 From: Yinghai Lu Date: Fri, 15 May 2009 13:05:16 -0700 Subject: [PATCH] --- yaml --- r: 145643 b: refs/heads/master c: 629e15d245f46bef9d26199b450f882f9437a8fe h: refs/heads/master i: 145641: bb3a00824d377b1a54b8ea9c7727b7addd92e73d 145639: 35c5563b96b618d2aeecea419df8890e83836060 v: v3 --- [refs] | 2 +- trunk/arch/x86/kernel/mpparse.c | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/[refs] b/[refs] index 7741544a04e0..cb4cdd00f664 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 2759c3287de27266e06f1f4e82cbd2d65f6a044c +refs/heads/master: 629e15d245f46bef9d26199b450f882f9437a8fe diff --git a/trunk/arch/x86/kernel/mpparse.c b/trunk/arch/x86/kernel/mpparse.c index cd2a41a7c45c..e6bf9d08e503 100644 --- a/trunk/arch/x86/kernel/mpparse.c +++ b/trunk/arch/x86/kernel/mpparse.c @@ -17,6 +17,7 @@ #include #include #include +#include #include #include @@ -961,6 +962,9 @@ static int __initdata enable_update_mptable; static int __init update_mptable_setup(char *str) { enable_update_mptable = 1; +#ifdef CONFIG_PCI + pci_routeirq = 1; +#endif return 0; } early_param("update_mptable", update_mptable_setup); @@ -973,6 +977,9 @@ static int __initdata alloc_mptable; static int __init parse_alloc_mptable_opt(char *p) { enable_update_mptable = 1; +#ifdef CONFIG_PCI + pci_routeirq = 1; +#endif alloc_mptable = 1; if (!p) return 0;