[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20060728221508.9ec9be23.akpm@osdl.org>
Date: Fri, 28 Jul 2006 22:15:08 -0700
From: Andrew Morton <akpm@...l.org>
To: "Rafael J. Wysocki" <rjw@...k.pl>
Cc: linux-kernel@...r.kernel.org, pavel@....cz
Subject: Re: [PATCH -mm][resend] Disable CPU hotplug during suspend
On Fri, 28 Jul 2006 10:15:29 +0200
"Rafael J. Wysocki" <rjw@...k.pl> wrote:
> int disable_nonboot_cpus(void)
> +{
> + int cpu, error = 0;
> +
> + /* We take all of the non-boot CPUs down in one shot to avoid races
> + * with the userspace trying to use the CPU hotplug at the same time
> + */
> + mutex_lock(&cpu_add_remove_lock);
> + cpus_clear(frozen_cpus);
> + printk("Disabling non-boot CPUs ...\n");
> + for_each_online_cpu(cpu) {
> + if (cpu == 0)
> + continue;
This is presumably only called on cpu 0, yes?
How can we guarantee that, given that preemption is enabled?
What happens if cpu 0 isn't online?
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists