mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-26 13:50:53 +07:00
cpumask: update pci_bus_show_cpuaffinity to use new cpumask API
Impact: use new cpumask API to reduce stack usage Replace the local cpumask_t variable with a pointer to the const cpumask that needs to be printed. Signed-off-by: Mike Travis <travis@sgi.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
parent
3be83050d0
commit
588235bb53
@ -51,12 +51,12 @@ static ssize_t pci_bus_show_cpuaffinity(struct device *dev,
|
|||||||
char *buf)
|
char *buf)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
cpumask_t cpumask;
|
const struct cpumask *cpumask;
|
||||||
|
|
||||||
cpumask = pcibus_to_cpumask(to_pci_bus(dev));
|
cpumask = cpumask_of_pcibus(to_pci_bus(dev));
|
||||||
ret = type?
|
ret = type?
|
||||||
cpulist_scnprintf(buf, PAGE_SIZE-2, &cpumask) :
|
cpulist_scnprintf(buf, PAGE_SIZE-2, cpumask) :
|
||||||
cpumask_scnprintf(buf, PAGE_SIZE-2, &cpumask);
|
cpumask_scnprintf(buf, PAGE_SIZE-2, cpumask);
|
||||||
buf[ret++] = '\n';
|
buf[ret++] = '\n';
|
||||||
buf[ret] = '\0';
|
buf[ret] = '\0';
|
||||||
return ret;
|
return ret;
|
||||||
|
Loading…
Reference in New Issue
Block a user