[patch] Remove sole CONFIG_MULIQUAD in kernel source

Matthew Dobson (colpatch@us.ibm.com)
Wed, 30 Oct 2002 16:14:42 -0800


This is a multi-part message in MIME format.
--------------020104070307050603080204
Content-Type: text/plain; charset=us-ascii; format=flowed
Content-Transfer-Encoding: 7bit

Linus,
There is one remaining instance of CONFIG_MULTIQUAD in the kernel source.
This hanger-on must go! It means that (since CONFIG_MULTIQUAD is no
longer defined) the NUMA-Q specific PCI code is no longer compiled in.
This is bad...

[mcd@arrakis linux-2.5.44-vanilla]$ grep -r CONFIG_MULTIQUAD *
arch/i386/pci/Makefile:ifdef
CONFIG_MULTIQUAD
arch/i386/pci/Makefile:endif
# CONFIG_MULTIQUAD

[mcd@arrakis patches]$ diffstat multiquad_fix/multiquad_pci_fix-2.5.44.patch
Makefile | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)

Please apply...

Cheers!

-Matt

--------------020104070307050603080204
Content-Type: text/plain;
name="multiquad_pci_fix-2.5.44.patch"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
filename="multiquad_pci_fix-2.5.44.patch"

diff -Nur --exclude-from=/usr/src/.dontdiff linux-2.5.39-multiquad/arch/i386/pci/Makefile linux-2.5.39-multiquad+numa_rename/arch/i386/pci/Makefile
--- linux-2.5.39-multiquad/arch/i386/pci/Makefile Fri Sep 27 14:50:18 2002
+++ linux-2.5.39-multiquad+numa_rename/arch/i386/pci/Makefile Mon Sep 30 11:21:09 2002
@@ -3,7 +3,7 @@
obj-$(CONFIG_PCI_BIOS) += pcbios.o
obj-$(CONFIG_PCI_DIRECT) += direct.o

-ifdef CONFIG_MULTIQUAD
+ifdef CONFIG_X86_NUMAQ
obj-y += numa.o
else
obj-y += fixup.o
@@ -14,7 +14,7 @@
obj-y += legacy.o


-endif # CONFIG_MULTIQUAD
+endif # CONFIG_X86_NUMAQ
obj-y += irq.o common.o

include $(TOPDIR)/Rules.make

--------------020104070307050603080204--

-
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/