public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Robert Richter <robert.richter@amd.com>
To: Ingo Molnar <mingo@elte.hu>, Thomas Gleixner <tglx@linutronix.de>
Cc: LKML <linux-kernel@vger.kernel.org>,
	Robert Richter <robert.richter@amd.com>
Subject: [PATCH 08/11] x86/pci: merge: Moving mp_bus_to_node.c to amd_bus.c
Date: Wed, 2 Jul 2008 22:50:26 +0200	[thread overview]
Message-ID: <1215031829-29124-9-git-send-email-robert.richter@amd.com> (raw)
In-Reply-To: <1215031829-29124-1-git-send-email-robert.richter@amd.com>

Signed-off-by: Robert Richter <robert.richter@amd.com>
---
 arch/x86/pci/Makefile         |    3 +--
 arch/x86/pci/amd_bus.c        |   32 +++++++++++++++++++++++++++++---
 arch/x86/pci/mp_bus_to_node.c |   23 -----------------------
 3 files changed, 30 insertions(+), 28 deletions(-)
 delete mode 100644 arch/x86/pci/mp_bus_to_node.c

diff --git a/arch/x86/pci/Makefile b/arch/x86/pci/Makefile
index 844906e..58a3749 100644
--- a/arch/x86/pci/Makefile
+++ b/arch/x86/pci/Makefile
@@ -14,12 +14,11 @@ pci-y				:= fixup.o
 # legacy/irq.o
 pci-$(CONFIG_ACPI)		+= acpi.o
 pci-y				+= legacy.o irq.o
-pci-$(CONFIG_NUMA)		+= mp_bus_to_node.o
 
 # Careful: VISWS and NUMAQ overrule the pci-y above. The colons are
 # therefor correct. This needs a proper fix by distangling the code.
 pci-$(CONFIG_X86_VISWS)		:= visws.o fixup.o
-pci-$(CONFIG_X86_NUMAQ)		:= numa.o irq.o mp_bus_to_node.o
+pci-$(CONFIG_X86_NUMAQ)		:= numa.o irq.o
 
 obj-y				+= $(pci-y) common.o early.o
 obj-y				+= amd_bus.o
diff --git a/arch/x86/pci/amd_bus.c b/arch/x86/pci/amd_bus.c
index aa3a190..f2b81d6 100644
--- a/arch/x86/pci/amd_bus.c
+++ b/arch/x86/pci/amd_bus.c
@@ -1,13 +1,13 @@
 #include <linux/init.h>
 #include <linux/pci.h>
+#include <linux/topology.h>
 #include "pci.h"
 
 #ifdef CONFIG_X86_64
-
 #include <asm/pci-direct.h>
 #include <asm/mpspec.h>
 #include <linux/cpumask.h>
-#include <linux/topology.h>
+#endif
 
 /*
  * This discovers the pcibus <-> node mapping on AMD K8.
@@ -18,6 +18,8 @@
 
 #define BUS_NR 256
 
+#ifdef CONFIG_X86_64
+
 static int mp_bus_to_node[BUS_NR];
 
 void set_mp_bus_to_node(int busnum, int node)
@@ -45,7 +47,31 @@ int get_mp_bus_to_node(int busnum)
 	return node;
 }
 
-#endif
+#else /* CONFIG_X86_32 */
+
+static unsigned char mp_bus_to_node[BUS_NR];
+
+void set_mp_bus_to_node(int busnum, int node)
+{
+	if (busnum >= 0 &&  busnum < BUS_NR)
+	mp_bus_to_node[busnum] = (unsigned char) node;
+}
+
+int get_mp_bus_to_node(int busnum)
+{
+	int node;
+
+	if (busnum < 0 || busnum > (BUS_NR - 1))
+		return 0;
+	node = mp_bus_to_node[busnum];
+	return node;
+}
+
+#endif /* CONFIG_X86_32 */
+
+#endif /* CONFIG_NUMA */
+
+#ifdef CONFIG_X86_64
 
 /*
  * sub bus (transparent) will use entres from 3 to store extra from root,
diff --git a/arch/x86/pci/mp_bus_to_node.c b/arch/x86/pci/mp_bus_to_node.c
deleted file mode 100644
index 0229439..0000000
--- a/arch/x86/pci/mp_bus_to_node.c
+++ /dev/null
@@ -1,23 +0,0 @@
-#include <linux/pci.h>
-#include <linux/init.h>
-#include <linux/topology.h>
-
-#define BUS_NR 256
-
-static unsigned char mp_bus_to_node[BUS_NR];
-
-void set_mp_bus_to_node(int busnum, int node)
-{
-	if (busnum >= 0 &&  busnum < BUS_NR)
-	mp_bus_to_node[busnum] = (unsigned char) node;
-}
-
-int get_mp_bus_to_node(int busnum)
-{
-	int node;
-
-	if (busnum < 0 || busnum > (BUS_NR - 1))
-		return 0;
-	node = mp_bus_to_node[busnum];
-	return node;
-}
-- 
1.5.5.4



  parent reply	other threads:[~2008-07-02 22:21 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-07-02 20:50 [PATCH 0/11] x86/pci 32/64 bit merge Robert Richter
2008-07-02 20:50 ` [PATCH 01/11] x86/pci: Makefile merge: Removing Makefile_* Robert Richter
2008-07-02 20:50 ` [PATCH 02/11] x86/pci: Makefile merge: Removing include dir flag Robert Richter
2008-07-02 20:50 ` [PATCH 03/11] x86/pci: Makefile merge: Whitespace changes only Robert Richter
2008-07-02 20:50 ` [PATCH 04/11] x86/pci: Makefile merge: Decoupling options for mp_bus_to_node.o Robert Richter
2008-07-02 23:38   ` Yinghai Lu
2008-07-02 20:50 ` [PATCH 05/11] x86/pci: Makefile merge: Changing 64bit ordering Robert Richter
2008-07-02 20:50 ` [PATCH 06/11] x86/pci: Makefile merge: Creating pci-y for 64 bit Robert Richter
2008-07-02 20:50 ` [PATCH 07/11] x86/pci: mp_bus_to_node merge: moving code in amd_bus.c Robert Richter
2008-07-02 20:50 ` Robert Richter [this message]
2008-07-02 20:50 ` [PATCH 09/11] x86/pci: Makefile merge: Coalescing 32 and 64 bit Robert Richter
2008-07-02 20:50 ` [PATCH 10/11] x86/pci: visws: Renaming pcibios_init() Robert Richter
2008-07-02 20:50 ` [PATCH 11/11] x86/pci: Removing subsys_initcall ordering dependencies Robert Richter
2008-07-03 19:19 ` [PATCH 0/11] x86/pci 32/64 bit merge Jesse Barnes
2008-07-04 15:39   ` Robert Richter
2008-07-09  9:41 ` Ingo Molnar

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1215031829-29124-9-git-send-email-robert.richter@amd.com \
    --to=robert.richter@amd.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@elte.hu \
    --cc=tglx@linutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox