2017-11-07 16:30:07 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
2011-12-21 22:29:42 +00:00
|
|
|
* CPU subsystem support
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
|
|
|
|
2012-01-10 02:59:49 +00:00
|
|
|
#include <linux/kernel.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/init.h>
|
2006-10-18 05:47:25 +00:00
|
|
|
#include <linux/sched.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <linux/cpu.h>
|
|
|
|
#include <linux/topology.h>
|
|
|
|
#include <linux/device.h>
|
[PATCH] node hotplug: register cpu: remove node struct
With Goto-san's patch, we can add new pgdat/node at runtime. I'm now
considering node-hot-add with cpu + memory on ACPI.
I found acpi container, which describes node, could evaluate cpu before
memory. This means cpu-hot-add occurs before memory hot add.
In most part, cpu-hot-add doesn't depend on node hot add. But register_cpu(),
which creates symbolic link from node to cpu, requires that node should be
onlined before register_cpu(). When a node is onlined, its pgdat should be
there.
This patch-set holds off creating symbolic link from node to cpu
until node is onlined.
This removes node arguments from register_cpu().
Now, register_cpu() requires 'struct node' as its argument. But the array of
struct node is now unified in driver/base/node.c now (By Goto's node hotplug
patch). We can get struct node in generic way. So, this argument is not
necessary now.
This patch also guarantees add cpu under node only when node is onlined. It
is necessary for node-hot-add vs. cpu-hot-add patch following this.
Moreover, register_cpu calculates cpu->node_id by cpu_to_node() without regard
to its 'struct node *root' argument. This patch removes it.
Also modify callers of register_cpu()/unregister_cpu, whose args are changed
by register-cpu-remove-node-struct patch.
[Brice.Goglin@ens-lyon.org: fix it]
Signed-off-by: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Yasunori Goto <y-goto@jp.fujitsu.com>
Cc: Ashok Raj <ashok.raj@intel.com>
Cc: Dave Hansen <haveblue@us.ibm.com>
Signed-off-by: Brice Goglin <Brice.Goglin@ens-lyon.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-06-27 09:53:41 +00:00
|
|
|
#include <linux/node.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 08:04:11 +00:00
|
|
|
#include <linux/gfp.h>
|
2012-01-25 23:09:14 +00:00
|
|
|
#include <linux/slab.h>
|
2012-01-10 03:04:32 +00:00
|
|
|
#include <linux/percpu.h>
|
ACPI / processor: Use common hotplug infrastructure
Split the ACPI processor driver into two parts, one that is
non-modular, resides in the ACPI core and handles the enumeration
and hotplug of processors and one that implements the rest of the
existing processor driver functionality.
The non-modular part uses an ACPI scan handler object to enumerate
processors on the basis of information provided by the ACPI namespace
and to hook up with the common ACPI hotplug infrastructure. It also
populates the ACPI handle of each processor device having a
corresponding object in the ACPI namespace, which allows the driver
proper to bind to those devices, and makes the driver bind to them
if it is readily available (i.e. loaded) when the scan handler's
.attach() routine is running.
There are a few reasons to make this change.
First, switching the ACPI processor driver to using the common ACPI
hotplug infrastructure reduces code duplication and size considerably,
even though a new file is created along with a header comment etc.
Second, since the common hotplug code attempts to offline devices
before starting the (non-reversible) removal procedure, it will abort
(and possibly roll back) hot-remove operations involving processors
if cpu_down() returns an error code for one of them instead of
continuing them blindly (if /sys/firmware/acpi/hotplug/force_remove
is unset). That is a more desirable behavior than what the current
code does.
Finally, the separation of the scan/hotplug part from the driver
proper makes it possible to simplify the driver's .remove() routine,
because it doesn't need to worry about the possible cleanup related
to processor removal any more (the scan/hotplug part is responsible
for that now) and can handle device removal and driver removal
symmetricaly (i.e. as appropriate).
Some user-visible changes in sysfs are made (for example, the
'sysdev' link from the ACPI device node to the processor device's
directory is gone and a 'physical_node' link is present instead
and a corresponding 'firmware_node' is present in the processor
device's directory, the processor driver is now visible under
/sys/bus/cpu/drivers/ and bound to the processor device), but
that shouldn't affect the functionality that users care about
(frequency scaling, C-states and thermal management).
Tested on my venerable Toshiba Portege R500.
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Reviewed-by: Toshi Kani <toshi.kani@hp.com>
2013-05-02 22:26:22 +00:00
|
|
|
#include <linux/acpi.h>
|
2013-06-17 11:58:45 +00:00
|
|
|
#include <linux/of.h>
|
2014-02-08 12:34:09 +00:00
|
|
|
#include <linux/cpufeature.h>
|
2015-04-24 19:24:28 +00:00
|
|
|
#include <linux/tick.h>
|
2017-01-12 13:27:03 +00:00
|
|
|
#include <linux/pm_qos.h>
|
2023-07-24 14:38:26 +00:00
|
|
|
#include <linux/delay.h>
|
2017-10-27 02:42:37 +00:00
|
|
|
#include <linux/sched/isolation.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-10-13 16:54:41 +00:00
|
|
|
#include "base.h"
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2011-12-21 22:29:42 +00:00
|
|
|
static DEFINE_PER_CPU(struct device *, cpu_sys_devices);
|
2005-10-30 22:59:49 +00:00
|
|
|
|
ACPI / processor: Use common hotplug infrastructure
Split the ACPI processor driver into two parts, one that is
non-modular, resides in the ACPI core and handles the enumeration
and hotplug of processors and one that implements the rest of the
existing processor driver functionality.
The non-modular part uses an ACPI scan handler object to enumerate
processors on the basis of information provided by the ACPI namespace
and to hook up with the common ACPI hotplug infrastructure. It also
populates the ACPI handle of each processor device having a
corresponding object in the ACPI namespace, which allows the driver
proper to bind to those devices, and makes the driver bind to them
if it is readily available (i.e. loaded) when the scan handler's
.attach() routine is running.
There are a few reasons to make this change.
First, switching the ACPI processor driver to using the common ACPI
hotplug infrastructure reduces code duplication and size considerably,
even though a new file is created along with a header comment etc.
Second, since the common hotplug code attempts to offline devices
before starting the (non-reversible) removal procedure, it will abort
(and possibly roll back) hot-remove operations involving processors
if cpu_down() returns an error code for one of them instead of
continuing them blindly (if /sys/firmware/acpi/hotplug/force_remove
is unset). That is a more desirable behavior than what the current
code does.
Finally, the separation of the scan/hotplug part from the driver
proper makes it possible to simplify the driver's .remove() routine,
because it doesn't need to worry about the possible cleanup related
to processor removal any more (the scan/hotplug part is responsible
for that now) and can handle device removal and driver removal
symmetricaly (i.e. as appropriate).
Some user-visible changes in sysfs are made (for example, the
'sysdev' link from the ACPI device node to the processor device's
directory is gone and a 'physical_node' link is present instead
and a corresponding 'firmware_node' is present in the processor
device's directory, the processor driver is now visible under
/sys/bus/cpu/drivers/ and bound to the processor device), but
that shouldn't affect the functionality that users care about
(frequency scaling, C-states and thermal management).
Tested on my venerable Toshiba Portege R500.
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Reviewed-by: Toshi Kani <toshi.kani@hp.com>
2013-05-02 22:26:22 +00:00
|
|
|
static int cpu_subsys_match(struct device *dev, struct device_driver *drv)
|
|
|
|
{
|
|
|
|
/* ACPI style match is the only one that may succeed. */
|
|
|
|
if (acpi_driver_match_device(dev, drv))
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
#ifdef CONFIG_HOTPLUG_CPU
|
2013-04-29 22:08:50 +00:00
|
|
|
static void change_cpu_under_node(struct cpu *cpu,
|
|
|
|
unsigned int from_nid, unsigned int to_nid)
|
|
|
|
{
|
|
|
|
int cpuid = cpu->dev.id;
|
|
|
|
unregister_cpu_under_node(cpuid, from_nid);
|
|
|
|
register_cpu_under_node(cpuid, to_nid);
|
|
|
|
cpu->node_id = to_nid;
|
|
|
|
}
|
|
|
|
|
2015-07-19 18:06:21 +00:00
|
|
|
static int cpu_subsys_online(struct device *dev)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2011-12-21 22:29:42 +00:00
|
|
|
struct cpu *cpu = container_of(dev, struct cpu, dev);
|
2013-05-02 22:25:49 +00:00
|
|
|
int cpuid = dev->id;
|
|
|
|
int from_nid, to_nid;
|
2013-09-25 21:08:27 +00:00
|
|
|
int ret;
|
2023-07-24 14:38:26 +00:00
|
|
|
int retries = 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2013-05-02 22:25:49 +00:00
|
|
|
from_nid = cpu_to_node(cpuid);
|
2013-08-13 00:39:30 +00:00
|
|
|
if (from_nid == NUMA_NO_NODE)
|
2013-09-25 21:08:27 +00:00
|
|
|
return -ENODEV;
|
2013-08-13 00:39:30 +00:00
|
|
|
|
2023-07-24 14:38:26 +00:00
|
|
|
retry:
|
2020-03-23 13:51:10 +00:00
|
|
|
ret = cpu_device_up(dev);
|
2023-07-24 14:38:26 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* If -EBUSY is returned, it is likely that hotplug is temporarily
|
|
|
|
* disabled when cpu_hotplug_disable() was called. This condition is
|
|
|
|
* transient. So we retry after waiting for an exponentially
|
|
|
|
* increasing delay up to a total of at least 620ms as some PCI
|
|
|
|
* device initialization can take quite a while.
|
|
|
|
*/
|
|
|
|
if (ret == -EBUSY) {
|
|
|
|
retries++;
|
|
|
|
if (retries > 5)
|
|
|
|
return ret;
|
|
|
|
msleep(10 * (1 << retries));
|
|
|
|
goto retry;
|
|
|
|
}
|
|
|
|
|
2013-05-02 22:25:49 +00:00
|
|
|
/*
|
|
|
|
* When hot adding memory to memoryless node and enabling a cpu
|
|
|
|
* on the node, node number of the cpu may internally change.
|
|
|
|
*/
|
|
|
|
to_nid = cpu_to_node(cpuid);
|
|
|
|
if (from_nid != to_nid)
|
|
|
|
change_cpu_under_node(cpu, from_nid, to_nid);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2013-05-02 22:25:49 +00:00
|
|
|
return ret;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2013-05-02 22:25:49 +00:00
|
|
|
static int cpu_subsys_offline(struct device *dev)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2020-03-23 13:51:10 +00:00
|
|
|
return cpu_device_down(dev);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2013-05-14 14:46:07 +00:00
|
|
|
|
[PATCH] node hotplug: register cpu: remove node struct
With Goto-san's patch, we can add new pgdat/node at runtime. I'm now
considering node-hot-add with cpu + memory on ACPI.
I found acpi container, which describes node, could evaluate cpu before
memory. This means cpu-hot-add occurs before memory hot add.
In most part, cpu-hot-add doesn't depend on node hot add. But register_cpu(),
which creates symbolic link from node to cpu, requires that node should be
onlined before register_cpu(). When a node is onlined, its pgdat should be
there.
This patch-set holds off creating symbolic link from node to cpu
until node is onlined.
This removes node arguments from register_cpu().
Now, register_cpu() requires 'struct node' as its argument. But the array of
struct node is now unified in driver/base/node.c now (By Goto's node hotplug
patch). We can get struct node in generic way. So, this argument is not
necessary now.
This patch also guarantees add cpu under node only when node is onlined. It
is necessary for node-hot-add vs. cpu-hot-add patch following this.
Moreover, register_cpu calculates cpu->node_id by cpu_to_node() without regard
to its 'struct node *root' argument. This patch removes it.
Also modify callers of register_cpu()/unregister_cpu, whose args are changed
by register-cpu-remove-node-struct patch.
[Brice.Goglin@ens-lyon.org: fix it]
Signed-off-by: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Yasunori Goto <y-goto@jp.fujitsu.com>
Cc: Ashok Raj <ashok.raj@intel.com>
Cc: Dave Hansen <haveblue@us.ibm.com>
Signed-off-by: Brice Goglin <Brice.Goglin@ens-lyon.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-06-27 09:53:41 +00:00
|
|
|
void unregister_cpu(struct cpu *cpu)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2011-12-21 22:29:42 +00:00
|
|
|
int logical_cpu = cpu->dev.id;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
[PATCH] node hotplug: register cpu: remove node struct
With Goto-san's patch, we can add new pgdat/node at runtime. I'm now
considering node-hot-add with cpu + memory on ACPI.
I found acpi container, which describes node, could evaluate cpu before
memory. This means cpu-hot-add occurs before memory hot add.
In most part, cpu-hot-add doesn't depend on node hot add. But register_cpu(),
which creates symbolic link from node to cpu, requires that node should be
onlined before register_cpu(). When a node is onlined, its pgdat should be
there.
This patch-set holds off creating symbolic link from node to cpu
until node is onlined.
This removes node arguments from register_cpu().
Now, register_cpu() requires 'struct node' as its argument. But the array of
struct node is now unified in driver/base/node.c now (By Goto's node hotplug
patch). We can get struct node in generic way. So, this argument is not
necessary now.
This patch also guarantees add cpu under node only when node is onlined. It
is necessary for node-hot-add vs. cpu-hot-add patch following this.
Moreover, register_cpu calculates cpu->node_id by cpu_to_node() without regard
to its 'struct node *root' argument. This patch removes it.
Also modify callers of register_cpu()/unregister_cpu, whose args are changed
by register-cpu-remove-node-struct patch.
[Brice.Goglin@ens-lyon.org: fix it]
Signed-off-by: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Yasunori Goto <y-goto@jp.fujitsu.com>
Cc: Ashok Raj <ashok.raj@intel.com>
Cc: Dave Hansen <haveblue@us.ibm.com>
Signed-off-by: Brice Goglin <Brice.Goglin@ens-lyon.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-06-27 09:53:41 +00:00
|
|
|
unregister_cpu_under_node(logical_cpu, cpu_to_node(logical_cpu));
|
|
|
|
|
2011-12-21 22:29:42 +00:00
|
|
|
device_unregister(&cpu->dev);
|
2008-05-01 11:35:16 +00:00
|
|
|
per_cpu(cpu_sys_devices, logical_cpu) = NULL;
|
2005-04-16 22:20:36 +00:00
|
|
|
return;
|
|
|
|
}
|
2009-11-25 17:23:25 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_ARCH_CPU_PROBE_RELEASE
|
2011-12-21 22:29:42 +00:00
|
|
|
static ssize_t cpu_probe_store(struct device *dev,
|
|
|
|
struct device_attribute *attr,
|
2010-03-15 23:33:32 +00:00
|
|
|
const char *buf,
|
2009-11-25 17:23:25 +00:00
|
|
|
size_t count)
|
|
|
|
{
|
2013-08-30 00:22:07 +00:00
|
|
|
ssize_t cnt;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = lock_device_hotplug_sysfs();
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
cnt = arch_cpu_probe(buf, count);
|
|
|
|
|
|
|
|
unlock_device_hotplug();
|
|
|
|
return cnt;
|
2009-11-25 17:23:25 +00:00
|
|
|
}
|
|
|
|
|
2011-12-21 22:29:42 +00:00
|
|
|
static ssize_t cpu_release_store(struct device *dev,
|
|
|
|
struct device_attribute *attr,
|
2010-03-15 23:33:32 +00:00
|
|
|
const char *buf,
|
2009-11-25 17:23:25 +00:00
|
|
|
size_t count)
|
|
|
|
{
|
2013-08-30 00:22:07 +00:00
|
|
|
ssize_t cnt;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = lock_device_hotplug_sysfs();
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
cnt = arch_cpu_release(buf, count);
|
|
|
|
|
|
|
|
unlock_device_hotplug();
|
|
|
|
return cnt;
|
2009-11-25 17:23:25 +00:00
|
|
|
}
|
|
|
|
|
2011-12-21 22:29:42 +00:00
|
|
|
static DEVICE_ATTR(probe, S_IWUSR, NULL, cpu_probe_store);
|
|
|
|
static DEVICE_ATTR(release, S_IWUSR, NULL, cpu_release_store);
|
2009-11-25 17:23:25 +00:00
|
|
|
#endif /* CONFIG_ARCH_CPU_PROBE_RELEASE */
|
2005-04-16 22:20:36 +00:00
|
|
|
#endif /* CONFIG_HOTPLUG_CPU */
|
|
|
|
|
2023-11-28 05:52:48 +00:00
|
|
|
#ifdef CONFIG_KEXEC_CORE
|
2006-01-10 04:51:42 +00:00
|
|
|
#include <linux/kexec.h>
|
|
|
|
|
2020-09-16 20:40:42 +00:00
|
|
|
static ssize_t crash_notes_show(struct device *dev,
|
|
|
|
struct device_attribute *attr,
|
2008-07-01 16:48:41 +00:00
|
|
|
char *buf)
|
2006-01-10 04:51:42 +00:00
|
|
|
{
|
2011-12-21 22:29:42 +00:00
|
|
|
struct cpu *cpu = container_of(dev, struct cpu, dev);
|
2006-01-10 04:51:42 +00:00
|
|
|
unsigned long long addr;
|
|
|
|
int cpunum;
|
|
|
|
|
2011-12-21 22:29:42 +00:00
|
|
|
cpunum = cpu->dev.id;
|
2006-01-10 04:51:42 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Might be reading other cpu's data based on which cpu read thread
|
|
|
|
* has been scheduled. But cpu data (memory) is allocated once during
|
|
|
|
* boot up and this data does not change there after. Hence this
|
|
|
|
* operation should be safe. No locking required.
|
|
|
|
*/
|
2009-11-24 06:50:03 +00:00
|
|
|
addr = per_cpu_ptr_to_phys(per_cpu_ptr(crash_notes, cpunum));
|
2020-09-16 20:40:42 +00:00
|
|
|
|
|
|
|
return sysfs_emit(buf, "%llx\n", addr);
|
2006-01-10 04:51:42 +00:00
|
|
|
}
|
2020-09-16 20:40:42 +00:00
|
|
|
static DEVICE_ATTR_ADMIN_RO(crash_notes);
|
2013-03-28 08:15:35 +00:00
|
|
|
|
2020-09-16 20:40:42 +00:00
|
|
|
static ssize_t crash_notes_size_show(struct device *dev,
|
2013-03-28 08:15:35 +00:00
|
|
|
struct device_attribute *attr,
|
|
|
|
char *buf)
|
|
|
|
{
|
2020-09-16 20:40:42 +00:00
|
|
|
return sysfs_emit(buf, "%zu\n", sizeof(note_buf_t));
|
2013-03-28 08:15:35 +00:00
|
|
|
}
|
2020-09-16 20:40:42 +00:00
|
|
|
static DEVICE_ATTR_ADMIN_RO(crash_notes_size);
|
2013-05-14 14:46:06 +00:00
|
|
|
|
|
|
|
static struct attribute *crash_note_cpu_attrs[] = {
|
|
|
|
&dev_attr_crash_notes.attr,
|
|
|
|
&dev_attr_crash_notes_size.attr,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2021-05-28 21:34:08 +00:00
|
|
|
static const struct attribute_group crash_note_cpu_attr_group = {
|
2013-05-14 14:46:06 +00:00
|
|
|
.attrs = crash_note_cpu_attrs,
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static const struct attribute_group *common_cpu_attr_groups[] = {
|
2023-11-28 05:52:48 +00:00
|
|
|
#ifdef CONFIG_KEXEC_CORE
|
2013-05-14 14:46:06 +00:00
|
|
|
&crash_note_cpu_attr_group,
|
2006-01-10 04:51:42 +00:00
|
|
|
#endif
|
2013-05-14 14:46:06 +00:00
|
|
|
NULL
|
|
|
|
};
|
2006-01-10 04:51:42 +00:00
|
|
|
|
2013-05-14 14:46:07 +00:00
|
|
|
static const struct attribute_group *hotplugable_cpu_attr_groups[] = {
|
2023-11-28 05:52:48 +00:00
|
|
|
#ifdef CONFIG_KEXEC_CORE
|
2013-05-14 14:46:07 +00:00
|
|
|
&crash_note_cpu_attr_group,
|
|
|
|
#endif
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2008-04-08 18:43:04 +00:00
|
|
|
/*
|
|
|
|
* Print cpu online, possible, present, and system maps
|
|
|
|
*/
|
2010-01-05 11:48:00 +00:00
|
|
|
|
|
|
|
struct cpu_attr {
|
2011-12-21 22:29:42 +00:00
|
|
|
struct device_attribute attr;
|
2016-01-20 23:00:22 +00:00
|
|
|
const struct cpumask *const map;
|
2010-01-05 11:48:00 +00:00
|
|
|
};
|
|
|
|
|
2011-12-21 22:29:42 +00:00
|
|
|
static ssize_t show_cpus_attr(struct device *dev,
|
|
|
|
struct device_attribute *attr,
|
2010-01-05 11:48:00 +00:00
|
|
|
char *buf)
|
2008-04-08 18:43:04 +00:00
|
|
|
{
|
2010-01-05 11:48:00 +00:00
|
|
|
struct cpu_attr *ca = container_of(attr, struct cpu_attr, attr);
|
2008-04-08 18:43:04 +00:00
|
|
|
|
2016-01-20 23:00:22 +00:00
|
|
|
return cpumap_print_to_pagebuf(true, buf, ca->map);
|
2008-04-08 18:43:04 +00:00
|
|
|
}
|
|
|
|
|
2011-12-21 22:29:42 +00:00
|
|
|
#define _CPU_ATTR(name, map) \
|
|
|
|
{ __ATTR(name, 0444, show_cpus_attr, NULL), map }
|
2008-04-08 18:43:04 +00:00
|
|
|
|
2011-12-21 22:29:42 +00:00
|
|
|
/* Keep in sync with cpu_subsys_attrs */
|
2010-01-05 11:48:00 +00:00
|
|
|
static struct cpu_attr cpu_attrs[] = {
|
2016-01-20 23:00:22 +00:00
|
|
|
_CPU_ATTR(online, &__cpu_online_mask),
|
|
|
|
_CPU_ATTR(possible, &__cpu_possible_mask),
|
|
|
|
_CPU_ATTR(present, &__cpu_present_mask),
|
2010-01-05 11:48:00 +00:00
|
|
|
};
|
2008-04-08 18:43:04 +00:00
|
|
|
|
2008-12-16 04:26:48 +00:00
|
|
|
/*
|
|
|
|
* Print values for NR_CPUS and offlined cpus
|
|
|
|
*/
|
2011-12-21 22:29:42 +00:00
|
|
|
static ssize_t print_cpus_kernel_max(struct device *dev,
|
|
|
|
struct device_attribute *attr, char *buf)
|
2008-12-16 04:26:48 +00:00
|
|
|
{
|
drivers core: Use sysfs_emit and sysfs_emit_at for show(device *...) functions
Convert the various sprintf fmaily calls in sysfs device show functions
to sysfs_emit and sysfs_emit_at for PAGE_SIZE buffer safety.
Done with:
$ spatch -sp-file sysfs_emit_dev.cocci --in-place --max-width=80 .
And cocci script:
$ cat sysfs_emit_dev.cocci
@@
identifier d_show;
identifier dev, attr, buf;
@@
ssize_t d_show(struct device *dev, struct device_attribute *attr, char *buf)
{
<...
return
- sprintf(buf,
+ sysfs_emit(buf,
...);
...>
}
@@
identifier d_show;
identifier dev, attr, buf;
@@
ssize_t d_show(struct device *dev, struct device_attribute *attr, char *buf)
{
<...
return
- snprintf(buf, PAGE_SIZE,
+ sysfs_emit(buf,
...);
...>
}
@@
identifier d_show;
identifier dev, attr, buf;
@@
ssize_t d_show(struct device *dev, struct device_attribute *attr, char *buf)
{
<...
return
- scnprintf(buf, PAGE_SIZE,
+ sysfs_emit(buf,
...);
...>
}
@@
identifier d_show;
identifier dev, attr, buf;
expression chr;
@@
ssize_t d_show(struct device *dev, struct device_attribute *attr, char *buf)
{
<...
return
- strcpy(buf, chr);
+ sysfs_emit(buf, chr);
...>
}
@@
identifier d_show;
identifier dev, attr, buf;
identifier len;
@@
ssize_t d_show(struct device *dev, struct device_attribute *attr, char *buf)
{
<...
len =
- sprintf(buf,
+ sysfs_emit(buf,
...);
...>
return len;
}
@@
identifier d_show;
identifier dev, attr, buf;
identifier len;
@@
ssize_t d_show(struct device *dev, struct device_attribute *attr, char *buf)
{
<...
len =
- snprintf(buf, PAGE_SIZE,
+ sysfs_emit(buf,
...);
...>
return len;
}
@@
identifier d_show;
identifier dev, attr, buf;
identifier len;
@@
ssize_t d_show(struct device *dev, struct device_attribute *attr, char *buf)
{
<...
len =
- scnprintf(buf, PAGE_SIZE,
+ sysfs_emit(buf,
...);
...>
return len;
}
@@
identifier d_show;
identifier dev, attr, buf;
identifier len;
@@
ssize_t d_show(struct device *dev, struct device_attribute *attr, char *buf)
{
<...
- len += scnprintf(buf + len, PAGE_SIZE - len,
+ len += sysfs_emit_at(buf, len,
...);
...>
return len;
}
@@
identifier d_show;
identifier dev, attr, buf;
expression chr;
@@
ssize_t d_show(struct device *dev, struct device_attribute *attr, char *buf)
{
...
- strcpy(buf, chr);
- return strlen(buf);
+ return sysfs_emit(buf, chr);
}
Signed-off-by: Joe Perches <joe@perches.com>
Link: https://lore.kernel.org/r/3d033c33056d88bbe34d4ddb62afd05ee166ab9a.1600285923.git.joe@perches.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2020-09-16 20:40:39 +00:00
|
|
|
return sysfs_emit(buf, "%d\n", NR_CPUS - 1);
|
2008-12-16 04:26:48 +00:00
|
|
|
}
|
2011-12-21 22:29:42 +00:00
|
|
|
static DEVICE_ATTR(kernel_max, 0444, print_cpus_kernel_max, NULL);
|
2008-12-16 04:26:48 +00:00
|
|
|
|
|
|
|
/* arch-optional setting to enable display of offline cpus >= nr_cpu_ids */
|
|
|
|
unsigned int total_cpus;
|
|
|
|
|
2011-12-21 22:29:42 +00:00
|
|
|
static ssize_t print_cpus_offline(struct device *dev,
|
|
|
|
struct device_attribute *attr, char *buf)
|
2008-12-16 04:26:48 +00:00
|
|
|
{
|
2020-09-16 20:40:42 +00:00
|
|
|
int len = 0;
|
2008-12-16 04:26:48 +00:00
|
|
|
cpumask_var_t offline;
|
|
|
|
|
|
|
|
/* display offline cpus < nr_cpu_ids */
|
|
|
|
if (!alloc_cpumask_var(&offline, GFP_KERNEL))
|
|
|
|
return -ENOMEM;
|
2010-04-27 21:01:20 +00:00
|
|
|
cpumask_andnot(offline, cpu_possible_mask, cpu_online_mask);
|
2020-09-16 20:40:42 +00:00
|
|
|
len += sysfs_emit_at(buf, len, "%*pbl", cpumask_pr_args(offline));
|
2008-12-16 04:26:48 +00:00
|
|
|
free_cpumask_var(offline);
|
|
|
|
|
|
|
|
/* display offline cpus >= nr_cpu_ids */
|
|
|
|
if (total_cpus && nr_cpu_ids < total_cpus) {
|
2020-09-16 20:40:42 +00:00
|
|
|
len += sysfs_emit_at(buf, len, ",");
|
2008-12-16 04:26:48 +00:00
|
|
|
|
|
|
|
if (nr_cpu_ids == total_cpus-1)
|
2020-09-16 20:40:42 +00:00
|
|
|
len += sysfs_emit_at(buf, len, "%u", nr_cpu_ids);
|
2008-12-16 04:26:48 +00:00
|
|
|
else
|
2020-09-16 20:40:42 +00:00
|
|
|
len += sysfs_emit_at(buf, len, "%u-%d",
|
|
|
|
nr_cpu_ids, total_cpus - 1);
|
2008-12-16 04:26:48 +00:00
|
|
|
}
|
|
|
|
|
2020-09-16 20:40:42 +00:00
|
|
|
len += sysfs_emit_at(buf, len, "\n");
|
|
|
|
|
|
|
|
return len;
|
2008-12-16 04:26:48 +00:00
|
|
|
}
|
2011-12-21 22:29:42 +00:00
|
|
|
static DEVICE_ATTR(offline, 0444, print_cpus_offline, NULL);
|
2008-12-16 04:26:48 +00:00
|
|
|
|
2015-04-24 19:24:27 +00:00
|
|
|
static ssize_t print_cpus_isolated(struct device *dev,
|
|
|
|
struct device_attribute *attr, char *buf)
|
|
|
|
{
|
2020-09-16 20:40:42 +00:00
|
|
|
int len;
|
2017-10-27 02:42:37 +00:00
|
|
|
cpumask_var_t isolated;
|
2015-04-24 19:24:27 +00:00
|
|
|
|
2017-10-27 02:42:37 +00:00
|
|
|
if (!alloc_cpumask_var(&isolated, GFP_KERNEL))
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
cpumask_andnot(isolated, cpu_possible_mask,
|
2022-02-07 15:59:06 +00:00
|
|
|
housekeeping_cpumask(HK_TYPE_DOMAIN));
|
2020-09-16 20:40:42 +00:00
|
|
|
len = sysfs_emit(buf, "%*pbl\n", cpumask_pr_args(isolated));
|
2017-10-27 02:42:37 +00:00
|
|
|
|
|
|
|
free_cpumask_var(isolated);
|
2015-04-24 19:24:27 +00:00
|
|
|
|
2020-09-16 20:40:42 +00:00
|
|
|
return len;
|
2015-04-24 19:24:27 +00:00
|
|
|
}
|
|
|
|
static DEVICE_ATTR(isolated, 0444, print_cpus_isolated, NULL);
|
|
|
|
|
2015-04-24 19:24:28 +00:00
|
|
|
#ifdef CONFIG_NO_HZ_FULL
|
|
|
|
static ssize_t print_cpus_nohz_full(struct device *dev,
|
2020-09-16 20:40:42 +00:00
|
|
|
struct device_attribute *attr, char *buf)
|
2015-04-24 19:24:28 +00:00
|
|
|
{
|
drivers core: Use sysfs_emit and sysfs_emit_at for show(device *...) functions
Convert the various sprintf fmaily calls in sysfs device show functions
to sysfs_emit and sysfs_emit_at for PAGE_SIZE buffer safety.
Done with:
$ spatch -sp-file sysfs_emit_dev.cocci --in-place --max-width=80 .
And cocci script:
$ cat sysfs_emit_dev.cocci
@@
identifier d_show;
identifier dev, attr, buf;
@@
ssize_t d_show(struct device *dev, struct device_attribute *attr, char *buf)
{
<...
return
- sprintf(buf,
+ sysfs_emit(buf,
...);
...>
}
@@
identifier d_show;
identifier dev, attr, buf;
@@
ssize_t d_show(struct device *dev, struct device_attribute *attr, char *buf)
{
<...
return
- snprintf(buf, PAGE_SIZE,
+ sysfs_emit(buf,
...);
...>
}
@@
identifier d_show;
identifier dev, attr, buf;
@@
ssize_t d_show(struct device *dev, struct device_attribute *attr, char *buf)
{
<...
return
- scnprintf(buf, PAGE_SIZE,
+ sysfs_emit(buf,
...);
...>
}
@@
identifier d_show;
identifier dev, attr, buf;
expression chr;
@@
ssize_t d_show(struct device *dev, struct device_attribute *attr, char *buf)
{
<...
return
- strcpy(buf, chr);
+ sysfs_emit(buf, chr);
...>
}
@@
identifier d_show;
identifier dev, attr, buf;
identifier len;
@@
ssize_t d_show(struct device *dev, struct device_attribute *attr, char *buf)
{
<...
len =
- sprintf(buf,
+ sysfs_emit(buf,
...);
...>
return len;
}
@@
identifier d_show;
identifier dev, attr, buf;
identifier len;
@@
ssize_t d_show(struct device *dev, struct device_attribute *attr, char *buf)
{
<...
len =
- snprintf(buf, PAGE_SIZE,
+ sysfs_emit(buf,
...);
...>
return len;
}
@@
identifier d_show;
identifier dev, attr, buf;
identifier len;
@@
ssize_t d_show(struct device *dev, struct device_attribute *attr, char *buf)
{
<...
len =
- scnprintf(buf, PAGE_SIZE,
+ sysfs_emit(buf,
...);
...>
return len;
}
@@
identifier d_show;
identifier dev, attr, buf;
identifier len;
@@
ssize_t d_show(struct device *dev, struct device_attribute *attr, char *buf)
{
<...
- len += scnprintf(buf + len, PAGE_SIZE - len,
+ len += sysfs_emit_at(buf, len,
...);
...>
return len;
}
@@
identifier d_show;
identifier dev, attr, buf;
expression chr;
@@
ssize_t d_show(struct device *dev, struct device_attribute *attr, char *buf)
{
...
- strcpy(buf, chr);
- return strlen(buf);
+ return sysfs_emit(buf, chr);
}
Signed-off-by: Joe Perches <joe@perches.com>
Link: https://lore.kernel.org/r/3d033c33056d88bbe34d4ddb62afd05ee166ab9a.1600285923.git.joe@perches.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2020-09-16 20:40:39 +00:00
|
|
|
return sysfs_emit(buf, "%*pbl\n", cpumask_pr_args(tick_nohz_full_mask));
|
2015-04-24 19:24:28 +00:00
|
|
|
}
|
|
|
|
static DEVICE_ATTR(nohz_full, 0444, print_cpus_nohz_full, NULL);
|
|
|
|
#endif
|
|
|
|
|
crash: memory and CPU hotplug sysfs attributes
Introduce the crash_hotplug attribute for memory and CPUs for use by
userspace. These attributes directly facilitate the udev rule for
managing userspace re-loading of the crash kernel upon hot un/plug
changes.
For memory, expose the crash_hotplug attribute to the
/sys/devices/system/memory directory. For example:
# udevadm info --attribute-walk /sys/devices/system/memory/memory81
looking at device '/devices/system/memory/memory81':
KERNEL=="memory81"
SUBSYSTEM=="memory"
DRIVER==""
ATTR{online}=="1"
ATTR{phys_device}=="0"
ATTR{phys_index}=="00000051"
ATTR{removable}=="1"
ATTR{state}=="online"
ATTR{valid_zones}=="Movable"
looking at parent device '/devices/system/memory':
KERNELS=="memory"
SUBSYSTEMS==""
DRIVERS==""
ATTRS{auto_online_blocks}=="offline"
ATTRS{block_size_bytes}=="8000000"
ATTRS{crash_hotplug}=="1"
For CPUs, expose the crash_hotplug attribute to the
/sys/devices/system/cpu directory. For example:
# udevadm info --attribute-walk /sys/devices/system/cpu/cpu0
looking at device '/devices/system/cpu/cpu0':
KERNEL=="cpu0"
SUBSYSTEM=="cpu"
DRIVER=="processor"
ATTR{crash_notes}=="277c38600"
ATTR{crash_notes_size}=="368"
ATTR{online}=="1"
looking at parent device '/devices/system/cpu':
KERNELS=="cpu"
SUBSYSTEMS==""
DRIVERS==""
ATTRS{crash_hotplug}=="1"
ATTRS{isolated}==""
ATTRS{kernel_max}=="8191"
ATTRS{nohz_full}==" (null)"
ATTRS{offline}=="4-7"
ATTRS{online}=="0-3"
ATTRS{possible}=="0-7"
ATTRS{present}=="0-3"
With these sysfs attributes in place, it is possible to efficiently
instruct the udev rule to skip crash kernel reloading for kernels
configured with crash hotplug support.
For example, the following is the proposed udev rule change for RHEL
system 98-kexec.rules (as the first lines of the rule file):
# The kernel updates the crash elfcorehdr for CPU and memory changes
SUBSYSTEM=="cpu", ATTRS{crash_hotplug}=="1", GOTO="kdump_reload_end"
SUBSYSTEM=="memory", ATTRS{crash_hotplug}=="1", GOTO="kdump_reload_end"
When examined in the context of 98-kexec.rules, the above rules test if
crash_hotplug is set, and if so, the userspace initiated
unload-then-reload of the crash kernel is skipped.
CPU and memory checks are separated in accordance with CONFIG_HOTPLUG_CPU
and CONFIG_MEMORY_HOTPLUG kernel config options. If an architecture
supports, for example, memory hotplug but not CPU hotplug, then the
/sys/devices/system/memory/crash_hotplug attribute file is present, but
the /sys/devices/system/cpu/crash_hotplug attribute file will NOT be
present. Thus the udev rule skips userspace processing of memory hot
un/plug events, but the udev rule will evaluate false for CPU events, thus
allowing userspace to process CPU hot un/plug events (ie the
unload-then-reload of the kdump capture kernel).
Link: https://lkml.kernel.org/r/20230814214446.6659-5-eric.devolder@oracle.com
Signed-off-by: Eric DeVolder <eric.devolder@oracle.com>
Reviewed-by: Sourabh Jain <sourabhjain@linux.ibm.com>
Acked-by: Hari Bathini <hbathini@linux.ibm.com>
Acked-by: Baoquan He <bhe@redhat.com>
Cc: Akhil Raj <lf32.dev@gmail.com>
Cc: Bjorn Helgaas <bhelgaas@google.com>
Cc: Borislav Petkov (AMD) <bp@alien8.de>
Cc: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Cc: Dave Hansen <dave.hansen@linux.intel.com>
Cc: Dave Young <dyoung@redhat.com>
Cc: David Hildenbrand <david@redhat.com>
Cc: Eric W. Biederman <ebiederm@xmission.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Cc: Mimi Zohar <zohar@linux.ibm.com>
Cc: Naveen N. Rao <naveen.n.rao@linux.vnet.ibm.com>
Cc: Oscar Salvador <osalvador@suse.de>
Cc: "Rafael J. Wysocki" <rafael@kernel.org>
Cc: Sean Christopherson <seanjc@google.com>
Cc: Takashi Iwai <tiwai@suse.de>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Thomas Weißschuh <linux@weissschuh.net>
Cc: Valentin Schneider <vschneid@redhat.com>
Cc: Vivek Goyal <vgoyal@redhat.com>
Cc: Vlastimil Babka <vbabka@suse.cz>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
2023-08-14 21:44:42 +00:00
|
|
|
#ifdef CONFIG_CRASH_HOTPLUG
|
|
|
|
static ssize_t crash_hotplug_show(struct device *dev,
|
|
|
|
struct device_attribute *attr,
|
|
|
|
char *buf)
|
|
|
|
{
|
|
|
|
return sysfs_emit(buf, "%d\n", crash_hotplug_cpu_support());
|
|
|
|
}
|
|
|
|
static DEVICE_ATTR_ADMIN_RO(crash_hotplug);
|
|
|
|
#endif
|
|
|
|
|
2012-02-02 18:36:33 +00:00
|
|
|
static void cpu_device_release(struct device *dev)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* This is an empty function to prevent the driver core from spitting a
|
|
|
|
* warning at us. Yes, I know this is directly opposite of what the
|
|
|
|
* documentation for the driver core and kobjects say, and the author
|
|
|
|
* of this code has already been publically ridiculed for doing
|
|
|
|
* something as foolish as this. However, at this point in time, it is
|
|
|
|
* the only way to handle the issue of statically allocated cpu
|
|
|
|
* devices. The different architectures will have their cpu device
|
|
|
|
* code reworked to properly handle this in the near future, so this
|
|
|
|
* function will then be changed to correctly free up the memory held
|
|
|
|
* by the cpu device.
|
|
|
|
*
|
|
|
|
* Never copy this way of doing things, or you too will be made fun of
|
2013-01-15 14:27:46 +00:00
|
|
|
* on the linux-kernel list, you have been warned.
|
2012-02-02 18:36:33 +00:00
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
2014-02-08 12:34:09 +00:00
|
|
|
#ifdef CONFIG_GENERIC_CPU_AUTOPROBE
|
|
|
|
static ssize_t print_cpu_modalias(struct device *dev,
|
|
|
|
struct device_attribute *attr,
|
|
|
|
char *buf)
|
|
|
|
{
|
2020-09-16 20:40:42 +00:00
|
|
|
int len = 0;
|
2014-02-08 12:34:09 +00:00
|
|
|
u32 i;
|
|
|
|
|
2020-09-16 20:40:42 +00:00
|
|
|
len += sysfs_emit_at(buf, len,
|
|
|
|
"cpu:type:" CPU_FEATURE_TYPEFMT ":feature:",
|
|
|
|
CPU_FEATURE_TYPEVAL);
|
2014-02-08 12:34:09 +00:00
|
|
|
|
|
|
|
for (i = 0; i < MAX_CPU_FEATURES; i++)
|
|
|
|
if (cpu_have_feature(i)) {
|
2020-09-16 20:40:42 +00:00
|
|
|
if (len + sizeof(",XXXX\n") >= PAGE_SIZE) {
|
2014-02-08 12:34:09 +00:00
|
|
|
WARN(1, "CPU features overflow page\n");
|
|
|
|
break;
|
|
|
|
}
|
2020-09-16 20:40:42 +00:00
|
|
|
len += sysfs_emit_at(buf, len, ",%04X", i);
|
2014-02-08 12:34:09 +00:00
|
|
|
}
|
2020-09-16 20:40:42 +00:00
|
|
|
len += sysfs_emit_at(buf, len, "\n");
|
|
|
|
return len;
|
2014-02-08 12:34:09 +00:00
|
|
|
}
|
|
|
|
|
2023-01-11 11:30:17 +00:00
|
|
|
static int cpu_uevent(const struct device *dev, struct kobj_uevent_env *env)
|
2014-02-08 12:34:09 +00:00
|
|
|
{
|
|
|
|
char *buf = kzalloc(PAGE_SIZE, GFP_KERNEL);
|
|
|
|
if (buf) {
|
|
|
|
print_cpu_modalias(NULL, NULL, buf);
|
|
|
|
add_uevent_var(env, "MODALIAS=%s", buf);
|
|
|
|
kfree(buf);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2023-02-10 10:24:08 +00:00
|
|
|
struct bus_type cpu_subsys = {
|
|
|
|
.name = "cpu",
|
|
|
|
.dev_name = "cpu",
|
|
|
|
.match = cpu_subsys_match,
|
|
|
|
#ifdef CONFIG_HOTPLUG_CPU
|
|
|
|
.online = cpu_subsys_online,
|
|
|
|
.offline = cpu_subsys_offline,
|
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_GENERIC_CPU_AUTOPROBE
|
|
|
|
.uevent = cpu_uevent,
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
EXPORT_SYMBOL_GPL(cpu_subsys);
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
2007-02-17 18:13:42 +00:00
|
|
|
* register_cpu - Setup a sysfs device for a CPU.
|
2006-12-07 01:14:10 +00:00
|
|
|
* @cpu - cpu->hotpluggable field set to 1 will generate a control file in
|
|
|
|
* sysfs for this CPU.
|
2005-04-16 22:20:36 +00:00
|
|
|
* @num - CPU number to use when creating the device.
|
|
|
|
*
|
|
|
|
* Initialize and register the CPU device.
|
|
|
|
*/
|
2013-06-19 19:22:41 +00:00
|
|
|
int register_cpu(struct cpu *cpu, int num)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
int error;
|
[PATCH] node hotplug: register cpu: remove node struct
With Goto-san's patch, we can add new pgdat/node at runtime. I'm now
considering node-hot-add with cpu + memory on ACPI.
I found acpi container, which describes node, could evaluate cpu before
memory. This means cpu-hot-add occurs before memory hot add.
In most part, cpu-hot-add doesn't depend on node hot add. But register_cpu(),
which creates symbolic link from node to cpu, requires that node should be
onlined before register_cpu(). When a node is onlined, its pgdat should be
there.
This patch-set holds off creating symbolic link from node to cpu
until node is onlined.
This removes node arguments from register_cpu().
Now, register_cpu() requires 'struct node' as its argument. But the array of
struct node is now unified in driver/base/node.c now (By Goto's node hotplug
patch). We can get struct node in generic way. So, this argument is not
necessary now.
This patch also guarantees add cpu under node only when node is onlined. It
is necessary for node-hot-add vs. cpu-hot-add patch following this.
Moreover, register_cpu calculates cpu->node_id by cpu_to_node() without regard
to its 'struct node *root' argument. This patch removes it.
Also modify callers of register_cpu()/unregister_cpu, whose args are changed
by register-cpu-remove-node-struct patch.
[Brice.Goglin@ens-lyon.org: fix it]
Signed-off-by: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Yasunori Goto <y-goto@jp.fujitsu.com>
Cc: Ashok Raj <ashok.raj@intel.com>
Cc: Dave Hansen <haveblue@us.ibm.com>
Signed-off-by: Brice Goglin <Brice.Goglin@ens-lyon.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-06-27 09:53:41 +00:00
|
|
|
|
2011-12-21 22:29:42 +00:00
|
|
|
cpu->node_id = cpu_to_node(num);
|
2012-02-08 23:11:17 +00:00
|
|
|
memset(&cpu->dev, 0x00, sizeof(struct device));
|
2011-12-21 22:29:42 +00:00
|
|
|
cpu->dev.id = num;
|
|
|
|
cpu->dev.bus = &cpu_subsys;
|
2012-02-02 18:36:33 +00:00
|
|
|
cpu->dev.release = cpu_device_release;
|
2013-05-02 22:25:49 +00:00
|
|
|
cpu->dev.offline_disabled = !cpu->hotpluggable;
|
2013-05-29 22:30:05 +00:00
|
|
|
cpu->dev.offline = !cpu_online(num);
|
2013-06-17 11:58:45 +00:00
|
|
|
cpu->dev.of_node = of_get_cpu_node(num, NULL);
|
2013-05-14 14:46:06 +00:00
|
|
|
cpu->dev.groups = common_cpu_attr_groups;
|
2013-05-14 14:46:07 +00:00
|
|
|
if (cpu->hotpluggable)
|
|
|
|
cpu->dev.groups = hotplugable_cpu_attr_groups;
|
2011-12-21 22:29:42 +00:00
|
|
|
error = device_register(&cpu->dev);
|
2018-03-11 05:55:51 +00:00
|
|
|
if (error) {
|
|
|
|
put_device(&cpu->dev);
|
2016-08-25 08:42:39 +00:00
|
|
|
return error;
|
2018-03-11 05:55:51 +00:00
|
|
|
}
|
2006-01-10 04:51:42 +00:00
|
|
|
|
2016-08-25 08:42:39 +00:00
|
|
|
per_cpu(cpu_sys_devices, num) = &cpu->dev;
|
|
|
|
register_cpu_under_node(num, cpu_to_node(num));
|
2017-11-07 10:33:49 +00:00
|
|
|
dev_pm_qos_expose_latency_limit(&cpu->dev,
|
|
|
|
PM_QOS_RESUME_LATENCY_NO_CONSTRAINT);
|
2016-08-25 08:42:39 +00:00
|
|
|
|
|
|
|
return 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2021-06-28 17:19:07 +00:00
|
|
|
struct device *get_cpu_device(unsigned int cpu)
|
2005-10-30 22:59:49 +00:00
|
|
|
{
|
2008-05-01 11:35:16 +00:00
|
|
|
if (cpu < nr_cpu_ids && cpu_possible(cpu))
|
|
|
|
return per_cpu(cpu_sys_devices, cpu);
|
2005-10-30 22:59:49 +00:00
|
|
|
else
|
|
|
|
return NULL;
|
|
|
|
}
|
2011-12-21 22:29:42 +00:00
|
|
|
EXPORT_SYMBOL_GPL(get_cpu_device);
|
|
|
|
|
2014-09-30 13:48:24 +00:00
|
|
|
static void device_create_release(struct device *dev)
|
|
|
|
{
|
|
|
|
kfree(dev);
|
|
|
|
}
|
|
|
|
|
2019-01-23 19:42:00 +00:00
|
|
|
__printf(4, 0)
|
2014-09-30 13:48:24 +00:00
|
|
|
static struct device *
|
|
|
|
__cpu_device_create(struct device *parent, void *drvdata,
|
|
|
|
const struct attribute_group **groups,
|
|
|
|
const char *fmt, va_list args)
|
|
|
|
{
|
|
|
|
struct device *dev = NULL;
|
2021-02-18 20:28:37 +00:00
|
|
|
int retval = -ENOMEM;
|
2014-09-30 13:48:24 +00:00
|
|
|
|
|
|
|
dev = kzalloc(sizeof(*dev), GFP_KERNEL);
|
2021-02-18 20:28:37 +00:00
|
|
|
if (!dev)
|
2014-09-30 13:48:24 +00:00
|
|
|
goto error;
|
|
|
|
|
|
|
|
device_initialize(dev);
|
|
|
|
dev->parent = parent;
|
|
|
|
dev->groups = groups;
|
|
|
|
dev->release = device_create_release;
|
2019-02-14 18:29:10 +00:00
|
|
|
device_set_pm_not_required(dev);
|
2014-09-30 13:48:24 +00:00
|
|
|
dev_set_drvdata(dev, drvdata);
|
|
|
|
|
|
|
|
retval = kobject_set_name_vargs(&dev->kobj, fmt, args);
|
|
|
|
if (retval)
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
retval = device_add(dev);
|
|
|
|
if (retval)
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
return dev;
|
|
|
|
|
|
|
|
error:
|
|
|
|
put_device(dev);
|
|
|
|
return ERR_PTR(retval);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct device *cpu_device_create(struct device *parent, void *drvdata,
|
|
|
|
const struct attribute_group **groups,
|
|
|
|
const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list vargs;
|
|
|
|
struct device *dev;
|
|
|
|
|
|
|
|
va_start(vargs, fmt);
|
|
|
|
dev = __cpu_device_create(parent, drvdata, groups, fmt, vargs);
|
|
|
|
va_end(vargs);
|
|
|
|
return dev;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(cpu_device_create);
|
|
|
|
|
2014-02-08 12:34:10 +00:00
|
|
|
#ifdef CONFIG_GENERIC_CPU_AUTOPROBE
|
2014-02-08 12:34:09 +00:00
|
|
|
static DEVICE_ATTR(modalias, 0444, print_cpu_modalias, NULL);
|
2012-01-25 23:09:14 +00:00
|
|
|
#endif
|
|
|
|
|
2011-12-21 22:29:42 +00:00
|
|
|
static struct attribute *cpu_root_attrs[] = {
|
|
|
|
#ifdef CONFIG_ARCH_CPU_PROBE_RELEASE
|
|
|
|
&dev_attr_probe.attr,
|
|
|
|
&dev_attr_release.attr,
|
|
|
|
#endif
|
|
|
|
&cpu_attrs[0].attr.attr,
|
|
|
|
&cpu_attrs[1].attr.attr,
|
|
|
|
&cpu_attrs[2].attr.attr,
|
|
|
|
&dev_attr_kernel_max.attr,
|
|
|
|
&dev_attr_offline.attr,
|
2015-04-24 19:24:27 +00:00
|
|
|
&dev_attr_isolated.attr,
|
2015-04-24 19:24:28 +00:00
|
|
|
#ifdef CONFIG_NO_HZ_FULL
|
|
|
|
&dev_attr_nohz_full.attr,
|
|
|
|
#endif
|
crash: memory and CPU hotplug sysfs attributes
Introduce the crash_hotplug attribute for memory and CPUs for use by
userspace. These attributes directly facilitate the udev rule for
managing userspace re-loading of the crash kernel upon hot un/plug
changes.
For memory, expose the crash_hotplug attribute to the
/sys/devices/system/memory directory. For example:
# udevadm info --attribute-walk /sys/devices/system/memory/memory81
looking at device '/devices/system/memory/memory81':
KERNEL=="memory81"
SUBSYSTEM=="memory"
DRIVER==""
ATTR{online}=="1"
ATTR{phys_device}=="0"
ATTR{phys_index}=="00000051"
ATTR{removable}=="1"
ATTR{state}=="online"
ATTR{valid_zones}=="Movable"
looking at parent device '/devices/system/memory':
KERNELS=="memory"
SUBSYSTEMS==""
DRIVERS==""
ATTRS{auto_online_blocks}=="offline"
ATTRS{block_size_bytes}=="8000000"
ATTRS{crash_hotplug}=="1"
For CPUs, expose the crash_hotplug attribute to the
/sys/devices/system/cpu directory. For example:
# udevadm info --attribute-walk /sys/devices/system/cpu/cpu0
looking at device '/devices/system/cpu/cpu0':
KERNEL=="cpu0"
SUBSYSTEM=="cpu"
DRIVER=="processor"
ATTR{crash_notes}=="277c38600"
ATTR{crash_notes_size}=="368"
ATTR{online}=="1"
looking at parent device '/devices/system/cpu':
KERNELS=="cpu"
SUBSYSTEMS==""
DRIVERS==""
ATTRS{crash_hotplug}=="1"
ATTRS{isolated}==""
ATTRS{kernel_max}=="8191"
ATTRS{nohz_full}==" (null)"
ATTRS{offline}=="4-7"
ATTRS{online}=="0-3"
ATTRS{possible}=="0-7"
ATTRS{present}=="0-3"
With these sysfs attributes in place, it is possible to efficiently
instruct the udev rule to skip crash kernel reloading for kernels
configured with crash hotplug support.
For example, the following is the proposed udev rule change for RHEL
system 98-kexec.rules (as the first lines of the rule file):
# The kernel updates the crash elfcorehdr for CPU and memory changes
SUBSYSTEM=="cpu", ATTRS{crash_hotplug}=="1", GOTO="kdump_reload_end"
SUBSYSTEM=="memory", ATTRS{crash_hotplug}=="1", GOTO="kdump_reload_end"
When examined in the context of 98-kexec.rules, the above rules test if
crash_hotplug is set, and if so, the userspace initiated
unload-then-reload of the crash kernel is skipped.
CPU and memory checks are separated in accordance with CONFIG_HOTPLUG_CPU
and CONFIG_MEMORY_HOTPLUG kernel config options. If an architecture
supports, for example, memory hotplug but not CPU hotplug, then the
/sys/devices/system/memory/crash_hotplug attribute file is present, but
the /sys/devices/system/cpu/crash_hotplug attribute file will NOT be
present. Thus the udev rule skips userspace processing of memory hot
un/plug events, but the udev rule will evaluate false for CPU events, thus
allowing userspace to process CPU hot un/plug events (ie the
unload-then-reload of the kdump capture kernel).
Link: https://lkml.kernel.org/r/20230814214446.6659-5-eric.devolder@oracle.com
Signed-off-by: Eric DeVolder <eric.devolder@oracle.com>
Reviewed-by: Sourabh Jain <sourabhjain@linux.ibm.com>
Acked-by: Hari Bathini <hbathini@linux.ibm.com>
Acked-by: Baoquan He <bhe@redhat.com>
Cc: Akhil Raj <lf32.dev@gmail.com>
Cc: Bjorn Helgaas <bhelgaas@google.com>
Cc: Borislav Petkov (AMD) <bp@alien8.de>
Cc: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Cc: Dave Hansen <dave.hansen@linux.intel.com>
Cc: Dave Young <dyoung@redhat.com>
Cc: David Hildenbrand <david@redhat.com>
Cc: Eric W. Biederman <ebiederm@xmission.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Cc: Mimi Zohar <zohar@linux.ibm.com>
Cc: Naveen N. Rao <naveen.n.rao@linux.vnet.ibm.com>
Cc: Oscar Salvador <osalvador@suse.de>
Cc: "Rafael J. Wysocki" <rafael@kernel.org>
Cc: Sean Christopherson <seanjc@google.com>
Cc: Takashi Iwai <tiwai@suse.de>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Thomas Weißschuh <linux@weissschuh.net>
Cc: Valentin Schneider <vschneid@redhat.com>
Cc: Vivek Goyal <vgoyal@redhat.com>
Cc: Vlastimil Babka <vbabka@suse.cz>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
2023-08-14 21:44:42 +00:00
|
|
|
#ifdef CONFIG_CRASH_HOTPLUG
|
|
|
|
&dev_attr_crash_hotplug.attr,
|
|
|
|
#endif
|
2014-02-08 12:34:10 +00:00
|
|
|
#ifdef CONFIG_GENERIC_CPU_AUTOPROBE
|
2012-01-25 23:09:14 +00:00
|
|
|
&dev_attr_modalias.attr,
|
|
|
|
#endif
|
2011-12-21 22:29:42 +00:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2021-05-28 21:34:08 +00:00
|
|
|
static const struct attribute_group cpu_root_attr_group = {
|
2011-12-21 22:29:42 +00:00
|
|
|
.attrs = cpu_root_attrs,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct attribute_group *cpu_root_attr_groups[] = {
|
|
|
|
&cpu_root_attr_group,
|
|
|
|
NULL,
|
|
|
|
};
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2021-06-28 17:19:07 +00:00
|
|
|
bool cpu_is_hotpluggable(unsigned int cpu)
|
2011-12-03 21:06:50 +00:00
|
|
|
{
|
2012-01-07 20:03:30 +00:00
|
|
|
struct device *dev = get_cpu_device(cpu);
|
2023-01-24 17:31:26 +00:00
|
|
|
return dev && container_of(dev, struct cpu, dev)->hotpluggable
|
|
|
|
&& tick_nohz_cpu_hotpluggable(cpu);
|
2011-12-03 21:06:50 +00:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(cpu_is_hotpluggable);
|
|
|
|
|
2012-01-10 03:04:32 +00:00
|
|
|
#ifdef CONFIG_GENERIC_CPU_DEVICES
|
2023-11-21 13:44:25 +00:00
|
|
|
DEFINE_PER_CPU(struct cpu, cpu_devices);
|
|
|
|
|
2023-11-21 13:44:36 +00:00
|
|
|
bool __weak arch_cpu_is_hotpluggable(int cpu)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2023-11-21 13:44:25 +00:00
|
|
|
int __weak arch_register_cpu(int cpu)
|
|
|
|
{
|
2023-11-21 13:44:36 +00:00
|
|
|
struct cpu *c = &per_cpu(cpu_devices, cpu);
|
|
|
|
|
|
|
|
c->hotpluggable = arch_cpu_is_hotpluggable(cpu);
|
|
|
|
|
|
|
|
return register_cpu(c, cpu);
|
2023-11-21 13:44:25 +00:00
|
|
|
}
|
2023-11-21 13:44:31 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_HOTPLUG_CPU
|
|
|
|
void __weak arch_unregister_cpu(int num)
|
|
|
|
{
|
|
|
|
unregister_cpu(&per_cpu(cpu_devices, num));
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_HOTPLUG_CPU */
|
|
|
|
#endif /* CONFIG_GENERIC_CPU_DEVICES */
|
2012-01-10 03:04:32 +00:00
|
|
|
|
|
|
|
static void __init cpu_dev_register_generic(void)
|
|
|
|
{
|
2023-11-21 13:44:46 +00:00
|
|
|
int i, ret;
|
2012-01-10 03:04:32 +00:00
|
|
|
|
2023-11-21 13:44:25 +00:00
|
|
|
if (!IS_ENABLED(CONFIG_GENERIC_CPU_DEVICES))
|
|
|
|
return;
|
|
|
|
|
drivers: base: Use present CPUs in GENERIC_CPU_DEVICES
Three of the five ACPI architectures create sysfs entries using
register_cpu() for present CPUs, whereas arm64, riscv and all
GENERIC_CPU_DEVICES do this for possible CPUs.
Registering a CPU is what causes them to show up in sysfs.
It makes very little sense to register all possible CPUs. Registering
a CPU is what triggers the udev notifications allowing user-space to
react to newly added CPUs.
To allow all five ACPI architectures to use GENERIC_CPU_DEVICES, change
it to use for_each_present_cpu().
Making the ACPI architectures use GENERIC_CPU_DEVICES is a pre-requisite
step to centralise their register_cpu() logic, before moving it into the
ACPI processor driver. When we add support for register CPUs from ACPI
in a later patch, we will avoid registering CPUs in this path.
Of the ACPI architectures that register possible CPUs, arm64 and riscv
do not support making possible CPUs present as they use the weak 'always
fails' version of arch_register_cpu().
Only two of the eight architectures that use GENERIC_CPU_DEVICES have a
distinction between present and possible CPUs.
The following architectures use GENERIC_CPU_DEVICES but are not SMP,
so possible == present:
* m68k
* microblaze
* nios2
The following architectures use GENERIC_CPU_DEVICES and consider
possible == present:
* csky: setup_smp()
* processor_probe() sets possible for all CPUs and present for all CPUs
except the boot cpu, which will have been done by
init/main.c::start_kernel().
um appears to be a subarchitecture of x86.
The remaining architecture using GENERIC_CPU_DEVICES are:
* openrisc and hexagon:
where smp_init_cpus() makes all CPUs < NR_CPUS possible,
whereas smp_prepare_cpus() only makes CPUs < setup_max_cpus present.
After this change, openrisc and hexagon systems that use the max_cpus
command line argument would not see the other CPUs present in sysfs.
This should not be a problem as these CPUs can't be brought online as
_cpu_up() checks cpu_present().
After this change, only CPUs which are present appear in sysfs.
Signed-off-by: James Morse <james.morse@arm.com>
Reviewed-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Reviewed-by: Gavin Shan <gshan@redhat.com>
Signed-off-by: "Russell King (Oracle)" <rmk+kernel@armlinux.org.uk>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lore.kernel.org/r/E1r5R36-00Csz0-Px@rmk-PC.armlinux.org.uk
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2023-11-21 13:44:20 +00:00
|
|
|
for_each_present_cpu(i) {
|
2023-11-21 13:44:46 +00:00
|
|
|
ret = arch_register_cpu(i);
|
|
|
|
if (ret)
|
|
|
|
pr_warn("register_cpu %d failed (%d)\n", i, ret);
|
2012-01-10 03:04:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-07 21:48:00 +00:00
|
|
|
#ifdef CONFIG_GENERIC_CPU_VULNERABILITIES
|
2023-08-10 11:22:29 +00:00
|
|
|
static ssize_t cpu_show_not_affected(struct device *dev,
|
2020-04-16 15:54:04 +00:00
|
|
|
struct device_attribute *attr, char *buf)
|
|
|
|
{
|
drivers core: Use sysfs_emit and sysfs_emit_at for show(device *...) functions
Convert the various sprintf fmaily calls in sysfs device show functions
to sysfs_emit and sysfs_emit_at for PAGE_SIZE buffer safety.
Done with:
$ spatch -sp-file sysfs_emit_dev.cocci --in-place --max-width=80 .
And cocci script:
$ cat sysfs_emit_dev.cocci
@@
identifier d_show;
identifier dev, attr, buf;
@@
ssize_t d_show(struct device *dev, struct device_attribute *attr, char *buf)
{
<...
return
- sprintf(buf,
+ sysfs_emit(buf,
...);
...>
}
@@
identifier d_show;
identifier dev, attr, buf;
@@
ssize_t d_show(struct device *dev, struct device_attribute *attr, char *buf)
{
<...
return
- snprintf(buf, PAGE_SIZE,
+ sysfs_emit(buf,
...);
...>
}
@@
identifier d_show;
identifier dev, attr, buf;
@@
ssize_t d_show(struct device *dev, struct device_attribute *attr, char *buf)
{
<...
return
- scnprintf(buf, PAGE_SIZE,
+ sysfs_emit(buf,
...);
...>
}
@@
identifier d_show;
identifier dev, attr, buf;
expression chr;
@@
ssize_t d_show(struct device *dev, struct device_attribute *attr, char *buf)
{
<...
return
- strcpy(buf, chr);
+ sysfs_emit(buf, chr);
...>
}
@@
identifier d_show;
identifier dev, attr, buf;
identifier len;
@@
ssize_t d_show(struct device *dev, struct device_attribute *attr, char *buf)
{
<...
len =
- sprintf(buf,
+ sysfs_emit(buf,
...);
...>
return len;
}
@@
identifier d_show;
identifier dev, attr, buf;
identifier len;
@@
ssize_t d_show(struct device *dev, struct device_attribute *attr, char *buf)
{
<...
len =
- snprintf(buf, PAGE_SIZE,
+ sysfs_emit(buf,
...);
...>
return len;
}
@@
identifier d_show;
identifier dev, attr, buf;
identifier len;
@@
ssize_t d_show(struct device *dev, struct device_attribute *attr, char *buf)
{
<...
len =
- scnprintf(buf, PAGE_SIZE,
+ sysfs_emit(buf,
...);
...>
return len;
}
@@
identifier d_show;
identifier dev, attr, buf;
identifier len;
@@
ssize_t d_show(struct device *dev, struct device_attribute *attr, char *buf)
{
<...
- len += scnprintf(buf + len, PAGE_SIZE - len,
+ len += sysfs_emit_at(buf, len,
...);
...>
return len;
}
@@
identifier d_show;
identifier dev, attr, buf;
expression chr;
@@
ssize_t d_show(struct device *dev, struct device_attribute *attr, char *buf)
{
...
- strcpy(buf, chr);
- return strlen(buf);
+ return sysfs_emit(buf, chr);
}
Signed-off-by: Joe Perches <joe@perches.com>
Link: https://lore.kernel.org/r/3d033c33056d88bbe34d4ddb62afd05ee166ab9a.1600285923.git.joe@perches.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2020-09-16 20:40:39 +00:00
|
|
|
return sysfs_emit(buf, "Not affected\n");
|
2020-04-16 15:54:04 +00:00
|
|
|
}
|
|
|
|
|
2023-07-29 15:20:33 +00:00
|
|
|
#define CPU_SHOW_VULN_FALLBACK(func) \
|
|
|
|
ssize_t cpu_show_##func(struct device *, \
|
|
|
|
struct device_attribute *, char *) \
|
|
|
|
__attribute__((weak, alias("cpu_show_not_affected")))
|
|
|
|
|
|
|
|
CPU_SHOW_VULN_FALLBACK(meltdown);
|
|
|
|
CPU_SHOW_VULN_FALLBACK(spectre_v1);
|
|
|
|
CPU_SHOW_VULN_FALLBACK(spectre_v2);
|
|
|
|
CPU_SHOW_VULN_FALLBACK(spec_store_bypass);
|
|
|
|
CPU_SHOW_VULN_FALLBACK(l1tf);
|
|
|
|
CPU_SHOW_VULN_FALLBACK(mds);
|
|
|
|
CPU_SHOW_VULN_FALLBACK(tsx_async_abort);
|
|
|
|
CPU_SHOW_VULN_FALLBACK(itlb_multihit);
|
|
|
|
CPU_SHOW_VULN_FALLBACK(srbds);
|
|
|
|
CPU_SHOW_VULN_FALLBACK(mmio_stale_data);
|
|
|
|
CPU_SHOW_VULN_FALLBACK(retbleed);
|
|
|
|
CPU_SHOW_VULN_FALLBACK(spec_rstack_overflow);
|
2023-08-11 09:32:09 +00:00
|
|
|
CPU_SHOW_VULN_FALLBACK(gds);
|
2023-06-28 09:02:39 +00:00
|
|
|
|
2018-01-07 21:48:00 +00:00
|
|
|
static DEVICE_ATTR(meltdown, 0444, cpu_show_meltdown, NULL);
|
|
|
|
static DEVICE_ATTR(spectre_v1, 0444, cpu_show_spectre_v1, NULL);
|
|
|
|
static DEVICE_ATTR(spectre_v2, 0444, cpu_show_spectre_v2, NULL);
|
2018-04-26 02:04:20 +00:00
|
|
|
static DEVICE_ATTR(spec_store_bypass, 0444, cpu_show_spec_store_bypass, NULL);
|
2018-06-13 22:48:26 +00:00
|
|
|
static DEVICE_ATTR(l1tf, 0444, cpu_show_l1tf, NULL);
|
2019-02-18 21:51:43 +00:00
|
|
|
static DEVICE_ATTR(mds, 0444, cpu_show_mds, NULL);
|
2019-10-23 10:19:51 +00:00
|
|
|
static DEVICE_ATTR(tsx_async_abort, 0444, cpu_show_tsx_async_abort, NULL);
|
2019-11-04 11:22:01 +00:00
|
|
|
static DEVICE_ATTR(itlb_multihit, 0444, cpu_show_itlb_multihit, NULL);
|
2020-04-16 15:54:04 +00:00
|
|
|
static DEVICE_ATTR(srbds, 0444, cpu_show_srbds, NULL);
|
2022-05-20 03:32:13 +00:00
|
|
|
static DEVICE_ATTR(mmio_stale_data, 0444, cpu_show_mmio_stale_data, NULL);
|
2022-06-14 21:15:49 +00:00
|
|
|
static DEVICE_ATTR(retbleed, 0444, cpu_show_retbleed, NULL);
|
2023-06-28 09:02:39 +00:00
|
|
|
static DEVICE_ATTR(spec_rstack_overflow, 0444, cpu_show_spec_rstack_overflow, NULL);
|
2023-08-11 09:32:09 +00:00
|
|
|
static DEVICE_ATTR(gather_data_sampling, 0444, cpu_show_gds, NULL);
|
2018-01-07 21:48:00 +00:00
|
|
|
|
|
|
|
static struct attribute *cpu_root_vulnerabilities_attrs[] = {
|
|
|
|
&dev_attr_meltdown.attr,
|
|
|
|
&dev_attr_spectre_v1.attr,
|
|
|
|
&dev_attr_spectre_v2.attr,
|
2018-04-26 02:04:20 +00:00
|
|
|
&dev_attr_spec_store_bypass.attr,
|
2018-06-13 22:48:26 +00:00
|
|
|
&dev_attr_l1tf.attr,
|
2019-02-18 21:51:43 +00:00
|
|
|
&dev_attr_mds.attr,
|
2019-10-23 10:19:51 +00:00
|
|
|
&dev_attr_tsx_async_abort.attr,
|
2019-11-04 11:22:01 +00:00
|
|
|
&dev_attr_itlb_multihit.attr,
|
2020-04-16 15:54:04 +00:00
|
|
|
&dev_attr_srbds.attr,
|
2022-05-20 03:32:13 +00:00
|
|
|
&dev_attr_mmio_stale_data.attr,
|
2022-06-14 21:15:49 +00:00
|
|
|
&dev_attr_retbleed.attr,
|
2023-06-28 09:02:39 +00:00
|
|
|
&dev_attr_spec_rstack_overflow.attr,
|
2023-07-13 02:43:11 +00:00
|
|
|
&dev_attr_gather_data_sampling.attr,
|
2018-01-07 21:48:00 +00:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct attribute_group cpu_root_vulnerabilities_group = {
|
|
|
|
.name = "vulnerabilities",
|
|
|
|
.attrs = cpu_root_vulnerabilities_attrs,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void __init cpu_register_vulnerabilities(void)
|
|
|
|
{
|
2023-02-09 09:35:56 +00:00
|
|
|
struct device *dev = bus_get_dev_root(&cpu_subsys);
|
|
|
|
|
|
|
|
if (dev) {
|
|
|
|
if (sysfs_create_group(&dev->kobj, &cpu_root_vulnerabilities_group))
|
|
|
|
pr_err("Unable to register CPU vulnerabilities\n");
|
|
|
|
put_device(dev);
|
|
|
|
}
|
2018-01-07 21:48:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
static inline void cpu_register_vulnerabilities(void) { }
|
|
|
|
#endif
|
|
|
|
|
2012-01-10 02:59:49 +00:00
|
|
|
void __init cpu_dev_init(void)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2012-01-10 02:59:49 +00:00
|
|
|
if (subsys_system_register(&cpu_subsys, cpu_root_attr_groups))
|
|
|
|
panic("Failed to register CPU subsystem");
|
2011-12-21 22:29:42 +00:00
|
|
|
|
2012-01-10 03:04:32 +00:00
|
|
|
cpu_dev_register_generic();
|
2018-01-07 21:48:00 +00:00
|
|
|
cpu_register_vulnerabilities();
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|