All of lore.kernel.org
 help / color / mirror / Atom feed
From: "H. Peter Anvin" <hpa@zytor.com>
To: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>,
	Thomas Gleixner <tglx@linutronix.de>,
	Ingo Molnar <mingo@redhat.com>
Cc: x86@kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] arch/x86/realmode: make trampoline code conditional for x86-32
Date: Wed, 15 Oct 2014 08:47:11 -0700	[thread overview]
Message-ID: <543E96FF.6000201@zytor.com> (raw)
In-Reply-To: <1413387506-5269-1-git-send-email-jarkko.sakkinen@linux.intel.com>

On 10/15/2014 08:38 AM, Jarkko Sakkinen wrote:
> Trampoline code is only needed for SMP and in x86-64 for wakeup
> code. Make it conditional in order to minimize the kernel size.
> 
> Signed-off-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
> ---
>  arch/x86/realmode/rm/Makefile | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/arch/x86/realmode/rm/Makefile b/arch/x86/realmode/rm/Makefile
> index 7c0d7be..82b7312 100644
> --- a/arch/x86/realmode/rm/Makefile
> +++ b/arch/x86/realmode/rm/Makefile
> @@ -20,7 +20,11 @@ wakeup-objs	+= video-vesa.o
>  wakeup-objs	+= video-bios.o
>  
>  realmode-y			+= header.o
> +ifdef CONFIG_X86_64
>  realmode-y			+= trampoline_$(BITS).o
> +else
> +realmode-$(CONFIG_SMP)		+= trampoline_$(BITS).o
> +endif
>  realmode-y			+= stack.o
>  realmode-y			+= reboot.o
>  realmode-$(CONFIG_ACPI_SLEEP)	+= $(wakeup-objs)
> 

It is usually preferred to make this a hidden config option (e.g.
CONFIG_X86_TRAMPOLINE) rather than use ifdef, especially since your
ifdef has another conditional inside it.

	-hpa


  reply	other threads:[~2014-10-15 15:47 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-10-15 15:38 [PATCH] arch/x86/realmode: make trampoline code conditional for x86-32 Jarkko Sakkinen
2014-10-15 15:47 ` H. Peter Anvin [this message]
2014-10-16  6:59   ` Jarkko Sakkinen
  -- strict thread matches above, loose matches on Subject: below --
2014-10-16  9:05 Jarkko Sakkinen
2014-10-16 20:03 ` Jarkko Sakkinen

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=543E96FF.6000201@zytor.com \
    --to=hpa@zytor.com \
    --cc=jarkko.sakkinen@linux.intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@redhat.com \
    --cc=tglx@linutronix.de \
    --cc=x86@kernel.org \
    /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 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.