Commit 182ecfaf authored by Tony Luck's avatar Tony Luck Committed by Borislav Petkov

topology/sysfs: Add format parameter to macro defining "show" functions for proc

All the simple (non-mask and non-list files in
/sys/devices/system/cpu/cpu0/topology/ are currently printed as decimal
integers.

Refactor the macro that generates the "show" functions to take a format
parameter to allow future files to display in other formats.

No functional change.
Signed-off-by: default avatarTony Luck <tony.luck@intel.com>
Signed-off-by: default avatarBorislav Petkov <bp@suse.de>
Acked-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Link: https://lore.kernel.org/r/20220131230111.2004669-5-tony.luck@intel.com
parent 822ccfad
...@@ -14,11 +14,11 @@ ...@@ -14,11 +14,11 @@
#include <linux/hardirq.h> #include <linux/hardirq.h>
#include <linux/topology.h> #include <linux/topology.h>
#define define_id_show_func(name) \ #define define_id_show_func(name, fmt) \
static ssize_t name##_show(struct device *dev, \ static ssize_t name##_show(struct device *dev, \
struct device_attribute *attr, char *buf) \ struct device_attribute *attr, char *buf) \
{ \ { \
return sysfs_emit(buf, "%d\n", topology_##name(dev->id)); \ return sysfs_emit(buf, fmt "\n", topology_##name(dev->id)); \
} }
#define define_siblings_read_func(name, mask) \ #define define_siblings_read_func(name, mask) \
...@@ -42,20 +42,20 @@ static ssize_t name##_list_read(struct file *file, struct kobject *kobj, \ ...@@ -42,20 +42,20 @@ static ssize_t name##_list_read(struct file *file, struct kobject *kobj, \
off, count); \ off, count); \
} }
define_id_show_func(physical_package_id); define_id_show_func(physical_package_id, "%d");
static DEVICE_ATTR_RO(physical_package_id); static DEVICE_ATTR_RO(physical_package_id);
#ifdef TOPOLOGY_DIE_SYSFS #ifdef TOPOLOGY_DIE_SYSFS
define_id_show_func(die_id); define_id_show_func(die_id, "%d");
static DEVICE_ATTR_RO(die_id); static DEVICE_ATTR_RO(die_id);
#endif #endif
#ifdef TOPOLOGY_CLUSTER_SYSFS #ifdef TOPOLOGY_CLUSTER_SYSFS
define_id_show_func(cluster_id); define_id_show_func(cluster_id, "%d");
static DEVICE_ATTR_RO(cluster_id); static DEVICE_ATTR_RO(cluster_id);
#endif #endif
define_id_show_func(core_id); define_id_show_func(core_id, "%d");
static DEVICE_ATTR_RO(core_id); static DEVICE_ATTR_RO(core_id);
define_siblings_read_func(thread_siblings, sibling_cpumask); define_siblings_read_func(thread_siblings, sibling_cpumask);
...@@ -87,7 +87,7 @@ static BIN_ATTR_RO(package_cpus, 0); ...@@ -87,7 +87,7 @@ static BIN_ATTR_RO(package_cpus, 0);
static BIN_ATTR_RO(package_cpus_list, 0); static BIN_ATTR_RO(package_cpus_list, 0);
#ifdef TOPOLOGY_BOOK_SYSFS #ifdef TOPOLOGY_BOOK_SYSFS
define_id_show_func(book_id); define_id_show_func(book_id, "%d");
static DEVICE_ATTR_RO(book_id); static DEVICE_ATTR_RO(book_id);
define_siblings_read_func(book_siblings, book_cpumask); define_siblings_read_func(book_siblings, book_cpumask);
static BIN_ATTR_RO(book_siblings, 0); static BIN_ATTR_RO(book_siblings, 0);
...@@ -95,7 +95,7 @@ static BIN_ATTR_RO(book_siblings_list, 0); ...@@ -95,7 +95,7 @@ static BIN_ATTR_RO(book_siblings_list, 0);
#endif #endif
#ifdef TOPOLOGY_DRAWER_SYSFS #ifdef TOPOLOGY_DRAWER_SYSFS
define_id_show_func(drawer_id); define_id_show_func(drawer_id, "%d");
static DEVICE_ATTR_RO(drawer_id); static DEVICE_ATTR_RO(drawer_id);
define_siblings_read_func(drawer_siblings, drawer_cpumask); define_siblings_read_func(drawer_siblings, drawer_cpumask);
static BIN_ATTR_RO(drawer_siblings, 0); static BIN_ATTR_RO(drawer_siblings, 0);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment