All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] x86/devicetree: Fix build for amd64
@ 2015-02-02 16:30 Ricardo Ribalda Delgado
  2015-02-02 18:36 ` Maciej W. Rozycki
  0 siblings, 1 reply; 2+ messages in thread
From: Ricardo Ribalda Delgado @ 2015-02-02 16:30 UTC (permalink / raw)
  To: Jiang Liu, Thomas Gleixner, Ingo Molnar, H. Peter Anvin, x86,
	David Rientjes, Oren Twaig, Jan Beulich, Maciej W. Rozycki,
	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>
---

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/kernel/apic/apic.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/arch/x86/kernel/apic/apic.c b/arch/x86/kernel/apic/apic.c
index 29b5b18..8d5a320 100644
--- a/arch/x86/kernel/apic/apic.c
+++ b/arch/x86/kernel/apic/apic.c
@@ -1679,6 +1679,12 @@ static int __init detect_init_APIC(void)
 	mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
 	return 0;
 }
+
+int __init apic_force_enable(unsigned long addr)
+{
+	return -1;
+}
+
 #else
 
 static int __init apic_verify(void)
-- 
2.1.4


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

* Re: [PATCH v2] x86/devicetree: Fix build for amd64
  2015-02-02 16:30 [PATCH v2] x86/devicetree: Fix build for amd64 Ricardo Ribalda Delgado
@ 2015-02-02 18:36 ` Maciej W. Rozycki
  0 siblings, 0 replies; 2+ messages in thread
From: Maciej W. Rozycki @ 2015-02-02 18:36 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>
> ---
> 
> 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/kernel/apic/apic.c | 6 ++++++
>  1 file changed, 6 insertions(+)

 I think the original suggestion made sense, move your stuff to apic.h so 
that the call is optimised away rather than keeping it here.

  Maciej

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

end of thread, other threads:[~2015-02-02 18:36 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-02-02 16:30 [PATCH v2] x86/devicetree: Fix build for amd64 Ricardo Ribalda Delgado
2015-02-02 18:36 ` Maciej W. Rozycki

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.