public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3] x86/devicetree: Fix build for amd64
@ 2015-02-02 19:27 Ricardo Ribalda Delgado
  2015-02-03 11:45 ` Maciej W. Rozycki
  2015-02-19  0:27 ` [tip:x86/urgent] x86/apic: Fix the devicetree build in certain configs tip-bot for Ricardo Ribalda Delgado
  0 siblings, 2 replies; 3+ messages in thread
From: Ricardo Ribalda Delgado @ 2015-02-02 19:27 UTC (permalink / raw)
  To: Maciej W . Rozycki, Jiang Liu, Thomas Gleixner, Ingo Molnar,
	H. Peter Anvin, x86, David Rientjes, Oren Twaig, Jan Beulich,
	Christoph Lameter, Jan Kiszka, linux-kernel, David Vrabel,
	Rob Herring
  Cc: Ricardo Ribalda Delgado

apic_force_enable is not defined for amd64.

Without this patch:

LD      init/built-in.o
arch/x86/built-in.o: In function `dtb_lapic_setup':
kernel/devicetree.c:155:
undefined reference to `apic_force_enable'
Makefile:923: recipe for target 'vmlinux' failed
make: *** [vmlinux] Error 1

Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com>
---
v3: Suggested by: Maciej W. Rozycki <macro@linux-mips.org>
Implementing the function in apic.h and not in apic.c
(actually, doing v2 properly :) )

v2: Suggested by: Jiang Liu <jiang.liu@linux.intel.com>

How about defining a version of apic_force_enable()
	for X86_64 in apic.h which just return failure?


 arch/x86/include/asm/apic.h | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/arch/x86/include/asm/apic.h b/arch/x86/include/asm/apic.h
index 92003f3..efc3b22 100644
--- a/arch/x86/include/asm/apic.h
+++ b/arch/x86/include/asm/apic.h
@@ -213,7 +213,15 @@ void register_lapic_address(unsigned long address);
 extern void setup_boot_APIC_clock(void);
 extern void setup_secondary_APIC_clock(void);
 extern int APIC_init_uniprocessor(void);
+
+#ifdef CONFIG_X86_64
+static inline int apic_force_enable(unsigned long addr)
+{
+	return -1;
+}
+#else
 extern int apic_force_enable(unsigned long addr);
+#endif
 
 extern int apic_bsp_setup(bool upmode);
 extern void apic_ap_setup(void);
-- 
2.1.4


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH v3] x86/devicetree: Fix build for amd64
  2015-02-02 19:27 [PATCH v3] x86/devicetree: Fix build for amd64 Ricardo Ribalda Delgado
@ 2015-02-03 11:45 ` Maciej W. Rozycki
  2015-02-19  0:27 ` [tip:x86/urgent] x86/apic: Fix the devicetree build in certain configs tip-bot for Ricardo Ribalda Delgado
  1 sibling, 0 replies; 3+ messages in thread
From: Maciej W. Rozycki @ 2015-02-03 11:45 UTC (permalink / raw)
  To: Ricardo Ribalda Delgado
  Cc: Jiang Liu, Thomas Gleixner, Ingo Molnar, H. Peter Anvin, x86,
	David Rientjes, Oren Twaig, Jan Beulich, Christoph Lameter,
	Jan Kiszka, linux-kernel, David Vrabel, Rob Herring

On Mon, 2 Feb 2015, Ricardo Ribalda Delgado wrote:

> apic_force_enable is not defined for amd64.
> 
> Without this patch:
> 
> LD      init/built-in.o
> arch/x86/built-in.o: In function `dtb_lapic_setup':
> kernel/devicetree.c:155:
> undefined reference to `apic_force_enable'
> Makefile:923: recipe for target 'vmlinux' failed
> make: *** [vmlinux] Error 1
> 
> Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com>
> ---
> v3: Suggested by: Maciej W. Rozycki <macro@linux-mips.org>
> Implementing the function in apic.h and not in apic.c
> (actually, doing v2 properly :) )
> 
> v2: Suggested by: Jiang Liu <jiang.liu@linux.intel.com>
> 
> How about defining a version of apic_force_enable()
> 	for X86_64 in apic.h which just return failure?

Reviewed-by: Maciej W. Rozycki <macro@linux-mips.org>

 Thanks,

  Maciej

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [tip:x86/urgent] x86/apic: Fix the devicetree build in certain configs
  2015-02-02 19:27 [PATCH v3] x86/devicetree: Fix build for amd64 Ricardo Ribalda Delgado
  2015-02-03 11:45 ` Maciej W. Rozycki
@ 2015-02-19  0:27 ` tip-bot for Ricardo Ribalda Delgado
  1 sibling, 0 replies; 3+ messages in thread
From: tip-bot for Ricardo Ribalda Delgado @ 2015-02-19  0:27 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: JBeulich, ricardo.ribalda, linux-kernel, mingo, tglx, rientjes,
	hpa, macro

Commit-ID:  b273c2c2f2d2d13dc0bfa8923d52fbaf8fa56ae8
Gitweb:     http://git.kernel.org/tip/b273c2c2f2d2d13dc0bfa8923d52fbaf8fa56ae8
Author:     Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com>
AuthorDate: Mon, 2 Feb 2015 20:27:11 +0100
Committer:  Ingo Molnar <mingo@kernel.org>
CommitDate: Wed, 18 Feb 2015 22:30:19 +0100

x86/apic: Fix the devicetree build in certain configs

Without this patch:

  LD      init/built-in.o
  arch/x86/built-in.o: In function `dtb_lapic_setup': kernel/devicetree.c:155:
  undefined reference to `apic_force_enable'
  Makefile:923: recipe for target 'vmlinux' failed
  make: *** [vmlinux] Error 1

Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com>
Reviewed-by: Maciej W. Rozycki <macro@linux-mips.org>
Cc: David Rientjes <rientjes@google.com>
Cc: Jan Beulich <JBeulich@suse.com>
Link: http://lkml.kernel.org/r/1422905231-16067-1-git-send-email-ricardo.ribalda@gmail.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
---
 arch/x86/include/asm/apic.h | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/arch/x86/include/asm/apic.h b/arch/x86/include/asm/apic.h
index 92003f3..efc3b22 100644
--- a/arch/x86/include/asm/apic.h
+++ b/arch/x86/include/asm/apic.h
@@ -213,7 +213,15 @@ void register_lapic_address(unsigned long address);
 extern void setup_boot_APIC_clock(void);
 extern void setup_secondary_APIC_clock(void);
 extern int APIC_init_uniprocessor(void);
+
+#ifdef CONFIG_X86_64
+static inline int apic_force_enable(unsigned long addr)
+{
+	return -1;
+}
+#else
 extern int apic_force_enable(unsigned long addr);
+#endif
 
 extern int apic_bsp_setup(bool upmode);
 extern void apic_ap_setup(void);

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-02-19  0:27 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-02 19:27 [PATCH v3] x86/devicetree: Fix build for amd64 Ricardo Ribalda Delgado
2015-02-03 11:45 ` Maciej W. Rozycki
2015-02-19  0:27 ` [tip:x86/urgent] x86/apic: Fix the devicetree build in certain configs tip-bot for Ricardo Ribalda Delgado

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox