linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] x86/devicetree: Fix build for amd64
@ 2015-02-02 15:50 Ricardo Ribalda Delgado
  2015-02-02 16:14 ` Jiang Liu
  0 siblings, 1 reply; 3+ messages in thread
From: Ricardo Ribalda Delgado @ 2015-02-02 15:50 UTC (permalink / raw)
  To: Thomas Gleixner, Ingo Molnar, H. Peter Anvin, x86, Jiang Liu,
	David Vrabel, Rob Herring, linux-kernel
  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>
---
 arch/x86/kernel/devicetree.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/arch/x86/kernel/devicetree.c b/arch/x86/kernel/devicetree.c
index 3d35033..b5560de 100644
--- a/arch/x86/kernel/devicetree.c
+++ b/arch/x86/kernel/devicetree.c
@@ -152,7 +152,9 @@ static void __init dtb_lapic_setup(void)
 
 	/* Did the boot loader setup the local APIC ? */
 	if (!cpu_has_apic) {
+#ifndef CONFIG_X86_64
 		if (apic_force_enable(r.start))
+#endif
 			return;
 	}
 	smp_found_config = 1;
-- 
2.1.4


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

* Re: [PATCH] x86/devicetree: Fix build for amd64
  2015-02-02 15:50 [PATCH] x86/devicetree: Fix build for amd64 Ricardo Ribalda Delgado
@ 2015-02-02 16:14 ` Jiang Liu
  2015-02-02 16:17   ` Ricardo Ribalda Delgado
  0 siblings, 1 reply; 3+ messages in thread
From: Jiang Liu @ 2015-02-02 16:14 UTC (permalink / raw)
  To: Ricardo Ribalda Delgado, Thomas Gleixner, Ingo Molnar,
	H. Peter Anvin, x86, David Vrabel, Rob Herring, linux-kernel

Hi Ricardo,
	How about defining a version of apic_force_enable()
for X86_64 in apic.h which just return failure?
Regards!
Gerry

On 2015/2/2 23:50, 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>
> ---
>  arch/x86/kernel/devicetree.c | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/arch/x86/kernel/devicetree.c b/arch/x86/kernel/devicetree.c
> index 3d35033..b5560de 100644
> --- a/arch/x86/kernel/devicetree.c
> +++ b/arch/x86/kernel/devicetree.c
> @@ -152,7 +152,9 @@ static void __init dtb_lapic_setup(void)
>  
>  	/* Did the boot loader setup the local APIC ? */
>  	if (!cpu_has_apic) {
> +#ifndef CONFIG_X86_64
>  		if (apic_force_enable(r.start))
> +#endif
>  			return;
>  	}
>  	smp_found_config = 1;
> 

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

* Re: [PATCH] x86/devicetree: Fix build for amd64
  2015-02-02 16:14 ` Jiang Liu
@ 2015-02-02 16:17   ` Ricardo Ribalda Delgado
  0 siblings, 0 replies; 3+ messages in thread
From: Ricardo Ribalda Delgado @ 2015-02-02 16:17 UTC (permalink / raw)
  To: Jiang Liu
  Cc: Thomas Gleixner, Ingo Molnar, H. Peter Anvin, x86, David Vrabel,
	Rob Herring, LKML

Hello,

That is also an option, but I thought this was cleaner. If you prefer
it that way I can prepare a patch.

Regards

On Mon, Feb 2, 2015 at 5:14 PM, Jiang Liu <jiang.liu@linux.intel.com> wrote:
> Hi Ricardo,
>         How about defining a version of apic_force_enable()
> for X86_64 in apic.h which just return failure?
> Regards!
> Gerry
>
> On 2015/2/2 23:50, 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>
>> ---
>>  arch/x86/kernel/devicetree.c | 2 ++
>>  1 file changed, 2 insertions(+)
>>
>> diff --git a/arch/x86/kernel/devicetree.c b/arch/x86/kernel/devicetree.c
>> index 3d35033..b5560de 100644
>> --- a/arch/x86/kernel/devicetree.c
>> +++ b/arch/x86/kernel/devicetree.c
>> @@ -152,7 +152,9 @@ static void __init dtb_lapic_setup(void)
>>
>>       /* Did the boot loader setup the local APIC ? */
>>       if (!cpu_has_apic) {
>> +#ifndef CONFIG_X86_64
>>               if (apic_force_enable(r.start))
>> +#endif
>>                       return;
>>       }
>>       smp_found_config = 1;
>>



-- 
Ricardo Ribalda

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

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

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-02-02 15:50 [PATCH] x86/devicetree: Fix build for amd64 Ricardo Ribalda Delgado
2015-02-02 16:14 ` Jiang Liu
2015-02-02 16:17   ` 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;
as well as URLs for NNTP newsgroup(s).