lkml.org 
[lkml]   [2009]   [Apr]   [17]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH] pci: derive nearby CPUs from device's instead of bus' NUMA information

* Andreas Herrmann <andreas.herrmann3@amd.com> wrote:

> diff --git a/drivers/pci/pci-sysfs.c b/drivers/pci/pci-sysfs.c
> index a7eb1b4..9360f3d 100644
> --- a/drivers/pci/pci-sysfs.c
> +++ b/drivers/pci/pci-sysfs.c
> @@ -74,7 +74,11 @@ static ssize_t local_cpus_show(struct device *dev,
> const struct cpumask *mask;
> int len;
>
> +#ifdef CONFIG_NUMA
> + mask = cpumask_of_node(dev_to_node(dev));
> +#else
> mask = cpumask_of_pcibus(to_pci_dev(dev)->bus);
> +#endif
> len = cpumask_scnprintf(buf, PAGE_SIZE-2, mask);
> buf[len++] = '\n';
> buf[len] = '\0';
> @@ -88,7 +92,11 @@ static ssize_t local_cpulist_show(struct device *dev,
> const struct cpumask *mask;
> int len;
>
> +#ifdef CONFIG_NUMA
> + mask = cpumask_of_node(dev_to_node(dev));
> +#else
> mask = cpumask_of_pcibus(to_pci_dev(dev)->bus);
> +#endif

No objections against the change (at all), but this pattern cries
out for a different, cleaner solution.

Shouldnt there be a cpumask_of_pcidev(dev) helper instead, which
[recognizing that most PCI devices dont get their node info
initialized in practice] would do something like:

const struct cpumask * cpumask_of_pcidev(struct pci_dev *dev)
{
if (dev->numa_node == -1)
return cpumask_of_pcibus(to_pci_dev(dev)->bus);

return cpumask_of_node(dev_to_node(dev));
}

? This would work fine in all cases.

Which you could thus use in both cases above, cleanly.

Ingo


\
 
 \ /
  Last update: 2009-04-17 18:23    [W:0.450 / U:0.536 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site