From: Rusty Russell <rusty@rustcorp.com.au>
To: Mike Travis <travis@sgi.com>
Cc: Ingo Molnar <mingo@redhat.com>, Jack Steiner <steiner@sgi.com>,
linux-kernel@vger.kernel.org, Greg KH <gregkh@suse.de>
Subject: Re: [PATCH 3/3] cpumask: add sysfs displays for configured and disabled cpu maps
Date: Wed, 17 Dec 2008 22:23:52 +1030 [thread overview]
Message-ID: <200812172223.53079.rusty@rustcorp.com.au> (raw)
In-Reply-To: <20081216042646.088194000@polaris-admin.engr.sgi.com>
On Tuesday 16 December 2008 14:56:48 Mike Travis wrote:
> Impact: add new functionality.
>
> Add sysfs files "kernel_max" and "offline" to display the max CPU index
> allowed (NR_CPUS-1), and the map of cpus that are offline.
I've applied this to the cpumask series, but Greg is sysfs maestro, so
I'll await his ack (I've quoted whole thing for easy reading).
Thanks,
Rusty.
> Cpus can be offlined via HOTPLUG, disabled by the BIOS ACPI tables, or
> if they exceed the number of cpus allowed by the NR_CPUS config option,
> or the "maxcpus=NUM" kernel start parameter.
>
> The "possible_cpus=NUM" parameter can also extend the number of possible
> cpus allowed, in which case the cpus not present at startup will be
> in the offline state. (These cpus can be HOTPLUGGED ON after system
> startup [pending a follow-on patch to provide the capability via the
> /sys/devices/sys/cpu/cpuN/online mechanism to bring them online.])
>
> By design, the "offlined cpus > possible cpus" display will always
> use the following formats:
>
> * all possible cpus online: "x$" or "x-y$"
> * some possible cpus offline: ".*,x$" or ".*,x-y$"
>
> where:
> x == number of possible cpus (nr_cpu_ids); and
> y == number of cpus >= NR_CPUS or maxcpus (if y > x).
>
> One use of this feature is for distros to select (or configure) the
> appropriate kernel to install for the resident system.
>
> Notes:
> * cpus offlined <= possible cpus will be printed for all architectures.
> * cpus offlined > possible cpus will only be printed for arches that
> set 'total_cpus' [X86 only in this patch].
>
> Based on tip/cpus4096 + .../rusty/linux-2.6-for-ingo.git/master +
> x86-only-patches sent 12/15.
>
> Signed-off-by: Mike Travis <travis@sgi.com>
> Acked-by: Rusty Russell <rusty@rustcorp.com.au>
> ---
> arch/x86/kernel/smpboot.c | 2 ++
> drivers/base/cpu.c | 45 +++++++++++++++++++++++++++++++++++++++++++++
> include/linux/smp.h | 3 +++
> 3 files changed, 50 insertions(+)
>
> --- linux-2.6-for-ingo.orig/arch/x86/kernel/smpboot.c
> +++ linux-2.6-for-ingo/arch/x86/kernel/smpboot.c
> @@ -1293,6 +1293,8 @@ __init void prefill_possible_map(void)
> else
> possible = setup_possible_cpus;
>
> + total_cpus = max_t(int, possible, num_processors + disabled_cpus);
> +
> if (possible > CONFIG_NR_CPUS) {
> printk(KERN_WARNING
> "%d Processors exceeds NR_CPUS limit of %d\n",
> --- linux-2.6-for-ingo.orig/drivers/base/cpu.c
> +++ linux-2.6-for-ingo/drivers/base/cpu.c
> @@ -128,10 +128,55 @@ print_cpus_func(online);
> print_cpus_func(possible);
> print_cpus_func(present);
>
> +/*
> + * Print values for NR_CPUS and offlined cpus
> + */
> +static ssize_t print_cpus_kernel_max(struct sysdev_class *class, char *buf)
> +{
> + int n = snprintf(buf, PAGE_SIZE-2, "%d\n", CONFIG_NR_CPUS - 1);
> + return n;
> +}
> +static SYSDEV_CLASS_ATTR(kernel_max, 0444, print_cpus_kernel_max, NULL);
> +
> +/* arch-optional setting to enable display of offline cpus >= nr_cpu_ids */
> +unsigned int total_cpus;
> +
> +static ssize_t print_cpus_offline(struct sysdev_class *class, char *buf)
> +{
> + int n = 0, len = PAGE_SIZE-2;
> + cpumask_var_t offline;
> +
> + /* display offline cpus < nr_cpu_ids */
> + if (!alloc_cpumask_var(&offline, GFP_KERNEL))
> + goto next;
> + cpumask_complement(offline, cpu_online_mask);
> + n = cpulist_scnprintf(buf, len, offline);
> + free_cpumask_var(offline);
> +
> +next:
> + /* display offline cpus >= nr_cpu_ids */
> + if (total_cpus && nr_cpu_ids < total_cpus) {
> + if (n && n < len)
> + buf[n++] = ',';
> +
> + if (nr_cpu_ids == total_cpus-1)
> + n += snprintf(&buf[n], len - n, "%d", nr_cpu_ids);
> + else
> + n += snprintf(&buf[n], len - n, "%d-%d",
> + nr_cpu_ids, total_cpus-1);
> + }
> +
> + n += snprintf(&buf[n], len - n, "\n");
> + return n;
> +}
> +static SYSDEV_CLASS_ATTR(offline, 0444, print_cpus_offline, NULL);
> +
> static struct sysdev_class_attribute *cpu_state_attr[] = {
> &attr_online_map,
> &attr_possible_map,
> &attr_present_map,
> + &attr_kernel_max,
> + &attr_offline,
> };
>
> static int cpu_states_init(void)
> --- linux-2.6-for-ingo.orig/include/linux/smp.h
> +++ linux-2.6-for-ingo/include/linux/smp.h
> @@ -21,6 +21,9 @@ struct call_single_data {
> u16 priv;
> };
>
> +/* total number of cpus in this system (may exceed NR_CPUS) */
> +extern unsigned int total_cpus;
> +
> #ifdef CONFIG_SMP
>
> #include <linux/preempt.h>
>
next prev parent reply other threads:[~2008-12-17 11:54 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-12-16 4:26 [PATCH 0/3] x86/cpumask: fixups and additions Mike Travis
2008-12-16 4:26 ` [PATCH 1/3] x86: fix cpu_mask_to_apicid_and to include cpu_online_mask Mike Travis
2008-12-16 4:26 ` [PATCH 2/3] x86: use possible_cpus=NUM to extend the possible cpus allowed Mike Travis
2008-12-16 4:26 ` [PATCH 3/3] cpumask: add sysfs displays for configured and disabled cpu maps Mike Travis
2008-12-17 11:53 ` Rusty Russell [this message]
2008-12-17 18:40 ` Greg KH
2008-12-17 20:35 ` Mike Travis
2008-12-17 22:14 ` [PATCH 1/1]: sysfs: add documentation to cputopology.txt for system cpumasks Mike Travis
2008-12-18 2:58 ` Greg KH
2008-12-19 6:46 ` [PATCH 3/3] cpumask: add sysfs displays for configured and disabled cpu maps Rusty Russell
2008-12-19 16:15 ` Greg KH
[not found] ` <20081216114459.GA21266@elte.hu>
2008-12-17 23:01 ` [PATCH 0/3] x86/cpumask: fixups and additions Mike Travis
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=200812172223.53079.rusty@rustcorp.com.au \
--to=rusty@rustcorp.com.au \
--cc=gregkh@suse.de \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=steiner@sgi.com \
--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