From: Andrew Morton <akpm@linux-foundation.org>
To: Magnus Damm <magnus@valinux.co.jp>
Cc: linux-kernel@vger.kernel.org, linux-ia64@vger.kernel.org, "Luck,
Tony" <tony.luck@intel.com>,
fastboot@lists.osdl.org
Subject: Re: [PATCH] kexec: Fix CONFIG_SMP=n compilation (ia64)
Date: Fri, 02 Feb 2007 00:33:20 +0000 [thread overview]
Message-ID: <20070201163320.eb4fa2c7.akpm@osdl.org> (raw)
In-Reply-To: <20070201131347.3807.87075.sendpatchset@localhost>
(added ia64 list)
(added ia64 maintainer)
(added kexec list)
On Thu, 01 Feb 2007 22:13:47 +0900
Magnus Damm <magnus@valinux.co.jp> wrote:
> kexec: Fix CONFIG_SMP=n compilation (ia64)
>
> This patch makes it possible to compile kexec for ia64 without SMP support.
>
Please always include the compiler stderr when fixing build errors or
warnings.
>
> Applies on top of 2.6.20-rc7.
>
> arch/ia64/kernel/crash.c | 11 +++++++----
> arch/ia64/kernel/machine_kexec.c | 2 ++
> 2 files changed, 9 insertions(+), 4 deletions(-)
>
> --- 0002/arch/ia64/kernel/crash.c
> +++ work/arch/ia64/kernel/crash.c 2007-02-01 12:42:38.000000000 +0900
> @@ -79,6 +79,7 @@ crash_save_this_cpu()
> final_note(buf);
> }
>
> +#ifdef CONFIG_SMP
> static int
> kdump_wait_cpu_freeze(void)
> {
> @@ -91,6 +92,7 @@ kdump_wait_cpu_freeze(void)
> }
> return 1;
> }
> +#endif
I think this is a warning fix?
> void
> machine_crash_shutdown(struct pt_regs *pt)
> @@ -132,11 +134,12 @@ kdump_cpu_freeze(struct unw_frame_info *
> atomic_inc(&kdump_cpu_freezed);
> kdump_status[cpuid] = 1;
> mb();
> - if (cpuid = 0) {
> - for (;;)
> - cpu_relax();
> - } else
> +#ifdef CONFIG_HOTPLUG_CPU
> + if (cpuid != 0)
> ia64_jump_to_sal(&sal_boot_rendez_state[cpuid]);
> +#endif
> + for (;;)
> + cpu_relax();
> }
I trust ia64_jump_to_sal doesn't return.
> static int
> --- 0002/arch/ia64/kernel/machine_kexec.c
> +++ work/arch/ia64/kernel/machine_kexec.c 2007-02-01 12:35:46.000000000 +0900
> @@ -70,12 +70,14 @@ void machine_kexec_cleanup(struct kimage
>
> void machine_shutdown(void)
> {
> +#ifdef CONFIG_SMP
> int cpu;
>
> for_each_online_cpu(cpu) {
> if (cpu != smp_processor_id())
> cpu_down(cpu);
> }
> +#endif
> kexec_disable_iosapic();
> }
hm. I suspect this one should have been #ifndef CONFIG_HOTPLUG_CPU?
I was wondering if we should have stubs for cpu_down() if !CONFIG_HOTPLUG_CPU,
but perhaps that doesn't make sense.
WARNING: multiple messages have this Message-ID (diff)
From: Andrew Morton <akpm@linux-foundation.org>
To: Magnus Damm <magnus@valinux.co.jp>
Cc: linux-kernel@vger.kernel.org, linux-ia64@vger.kernel.org, "Luck,
Tony" <tony.luck@intel.com>,
fastboot@lists.osdl.org
Subject: Re: [PATCH] kexec: Fix CONFIG_SMP=n compilation (ia64)
Date: Thu, 1 Feb 2007 16:33:20 -0800 [thread overview]
Message-ID: <20070201163320.eb4fa2c7.akpm@osdl.org> (raw)
In-Reply-To: <20070201131347.3807.87075.sendpatchset@localhost>
(added ia64 list)
(added ia64 maintainer)
(added kexec list)
On Thu, 01 Feb 2007 22:13:47 +0900
Magnus Damm <magnus@valinux.co.jp> wrote:
> kexec: Fix CONFIG_SMP=n compilation (ia64)
>
> This patch makes it possible to compile kexec for ia64 without SMP support.
>
Please always include the compiler stderr when fixing build errors or
warnings.
>
> Applies on top of 2.6.20-rc7.
>
> arch/ia64/kernel/crash.c | 11 +++++++----
> arch/ia64/kernel/machine_kexec.c | 2 ++
> 2 files changed, 9 insertions(+), 4 deletions(-)
>
> --- 0002/arch/ia64/kernel/crash.c
> +++ work/arch/ia64/kernel/crash.c 2007-02-01 12:42:38.000000000 +0900
> @@ -79,6 +79,7 @@ crash_save_this_cpu()
> final_note(buf);
> }
>
> +#ifdef CONFIG_SMP
> static int
> kdump_wait_cpu_freeze(void)
> {
> @@ -91,6 +92,7 @@ kdump_wait_cpu_freeze(void)
> }
> return 1;
> }
> +#endif
I think this is a warning fix?
> void
> machine_crash_shutdown(struct pt_regs *pt)
> @@ -132,11 +134,12 @@ kdump_cpu_freeze(struct unw_frame_info *
> atomic_inc(&kdump_cpu_freezed);
> kdump_status[cpuid] = 1;
> mb();
> - if (cpuid == 0) {
> - for (;;)
> - cpu_relax();
> - } else
> +#ifdef CONFIG_HOTPLUG_CPU
> + if (cpuid != 0)
> ia64_jump_to_sal(&sal_boot_rendez_state[cpuid]);
> +#endif
> + for (;;)
> + cpu_relax();
> }
I trust ia64_jump_to_sal doesn't return.
> static int
> --- 0002/arch/ia64/kernel/machine_kexec.c
> +++ work/arch/ia64/kernel/machine_kexec.c 2007-02-01 12:35:46.000000000 +0900
> @@ -70,12 +70,14 @@ void machine_kexec_cleanup(struct kimage
>
> void machine_shutdown(void)
> {
> +#ifdef CONFIG_SMP
> int cpu;
>
> for_each_online_cpu(cpu) {
> if (cpu != smp_processor_id())
> cpu_down(cpu);
> }
> +#endif
> kexec_disable_iosapic();
> }
hm. I suspect this one should have been #ifndef CONFIG_HOTPLUG_CPU?
I was wondering if we should have stubs for cpu_down() if !CONFIG_HOTPLUG_CPU,
but perhaps that doesn't make sense.
next prev parent reply other threads:[~2007-02-02 0:33 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-02-01 13:13 [PATCH] kexec: Fix CONFIG_SMP=n compilation (ia64) Magnus Damm
2007-02-02 0:33 ` Andrew Morton [this message]
2007-02-02 0:33 ` Andrew Morton
2007-02-02 2:38 ` Magnus Damm
2007-02-02 2:38 ` Magnus Damm
2007-02-02 11:53 ` Magnus Damm
2007-02-02 11:53 ` Magnus Damm
2007-02-03 3:27 ` [Fastboot] " Horms
2007-02-03 3:27 ` Horms
2007-02-05 6:41 ` Magnus Damm
2007-02-05 6:41 ` Magnus Damm
2007-02-02 3:01 ` Zou, Nanhai
2007-02-02 3:01 ` Zou, Nanhai
2007-02-02 3:57 ` [Fastboot] " Horms
2007-02-02 3:57 ` Horms
2007-02-02 15:21 ` Jay Lan
2007-02-02 15:21 ` Jay Lan
2007-02-05 1:02 ` Zou, Nanhai
2007-02-05 1:02 ` Zou, Nanhai
2007-02-05 6:43 ` [PATCH] kexec: Fix CONFIG_SMP=n compilation V2 (ia64) Magnus Damm
2007-02-05 6:43 ` Magnus Damm
2007-02-05 18:14 ` Jay Lan
2007-02-05 18:14 ` Jay Lan
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=20070201163320.eb4fa2c7.akpm@osdl.org \
--to=akpm@linux-foundation.org \
--cc=fastboot@lists.osdl.org \
--cc=linux-ia64@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=magnus@valinux.co.jp \
--cc=tony.luck@intel.com \
/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.