From: Rusty Russell <rusty@rustcorp.com.au>
To: Mike Travis <travis@sgi.com>
Cc: Ingo Molnar <mingo@redhat.com>, "H. Peter Anvin" <hpa@zytor.com>,
Thomas Gleixner <tglx@linutronix.de>,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 3/4] cpumask: use maxcpus=NUM to extend the cpu limit as well as restrict the limit
Date: Fri, 12 Dec 2008 22:11:35 +1030 [thread overview]
Message-ID: <200812122211.36590.rusty@rustcorp.com.au> (raw)
In-Reply-To: <20081211112807.004085000@polaris-admin.engr.sgi.com>
On Thursday 11 December 2008 21:58:09 Mike Travis wrote:
> Impact: allow adding additional cpus.
>
> Use maxcpus=NUM kernel parameter to extend the number of possible cpus as well
> as (currently) limit them. Any cpus >= number of present cpus will disabled.
...
These two bits of logic are very similar: can we merge them?
> - possible = num_processors + disabled_cpus;
> - if (possible > NR_CPUS)
> - possible = NR_CPUS;
> + if (setup_max_cpus == -1) /* not specified */
> + possible = num_processors + disabled_cpus;
> + else if (setup_max_cpus == 0) /* UP mode forced */
> + possible = 1;
> + else /* user specified */
> + possible = setup_max_cpus;
> +
> + if (possible > CONFIG_NR_CPUS) {
> + printk(KERN_WARNING
> + "%d Processors exceeds NR_CPUS limit of %d\n",
> + possible, CONFIG_NR_CPUS);
> + possible = CONFIG_NR_CPUS;
> + }
...
> -extern unsigned int setup_max_cpus;
> +extern int setup_max_cpus;
> +static inline int maxcpus(void)
> +{
> + int maxcpus = setup_max_cpus;
> +
> + if (maxcpus == -1 || maxcpus > CONFIG_NR_CPUS)
> + maxcpus = CONFIG_NR_CPUS;
> + else if (maxcpus == 0)
> + maxcpus = 1;
> +
> + return maxcpus;
> +}
If this didn't trunacte to CONFIG_NR_CPUS, it could still be used here:
> @@ -425,7 +423,7 @@ static void __init smp_init(void)
>
> /* FIXME: This should be done in userspace --RR */
> for_each_present_cpu(cpu) {
> - if (num_online_cpus() >= setup_max_cpus)
> + if (num_online_cpus() >= maxcpus())
> break;
> if (!cpu_online(cpu))
> cpu_up(cpu);
And it turns out noone actually uses the smp_cpus_done() arg, so
I don't know what the semantics are supposed to be.
> @@ -433,7 +431,7 @@ static void __init smp_init(void)
>
> /* Any cleanup work */
> printk(KERN_INFO "Brought up %ld CPUs\n", (long)num_online_cpus());
> - smp_cpus_done(setup_max_cpus);
> + smp_cpus_done(maxcpus());
Cheers,
Rusty.
next prev parent reply other threads:[~2008-12-12 11:41 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-12-11 11:28 [PATCH 0/4] cpumask: fixups and additions Mike Travis
2008-12-11 11:28 ` [PATCH 1/4] x86: fix assign_irq_vector boot up problem Mike Travis
2008-12-12 8:27 ` Rusty Russell
2008-12-12 9:20 ` Ingo Molnar
2008-12-12 18:10 ` Mike Travis
2008-12-12 19:06 ` Mike Travis
2008-12-11 11:28 ` [PATCH 2/4] x86: fix cpu_mask_to_apicid_and to include cpu_online_mask Mike Travis
2008-12-12 11:06 ` Rusty Russell
2008-12-12 16:37 ` Mike Travis
2008-12-13 12:03 ` Rusty Russell
2008-12-11 11:28 ` [PATCH 3/4] cpumask: use maxcpus=NUM to extend the cpu limit as well as restrict the limit Mike Travis
2008-12-11 13:41 ` Heiko Carstens
2008-12-11 18:19 ` Mike Travis
2008-12-12 10:03 ` Heiko Carstens
2008-12-12 11:41 ` Rusty Russell [this message]
2008-12-12 15:38 ` Mike Travis
2008-12-11 11:28 ` [PATCH 4/4] cpumask: add sysfs displays for configured and disabled cpu maps Mike Travis
2008-12-12 11:44 ` Rusty Russell
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=200812122211.36590.rusty@rustcorp.com.au \
--to=rusty@rustcorp.com.au \
--cc=hpa@zytor.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=tglx@linutronix.de \
--cc=travis@sgi.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox