platform/x86: ISST: Reduce noise for missing numa information in logs
On platforms with no numa support and with several CPUs, logs have lots of noise for message "Fail to get numa node for CPU:.." Change pr_info() to pr_info_once() as one print is enough to show the issue. Signed-off-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> Link: https://lore.kernel.org/r/20230808174359.50602-1-srinivas.pandruvada@linux.intel.com Reviewed-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Hans de Goede <hdegoede@redhat.com>
This commit is contained in:
parent
5a66d59b5f
commit
af8a6d281b
@ -335,8 +335,8 @@ static struct pci_dev *_isst_if_get_pci_dev(int cpu, int bus_no, int dev, int fn
|
||||
|
||||
node = dev_to_node(&_pci_dev->dev);
|
||||
if (node == NUMA_NO_NODE) {
|
||||
pr_info("Fail to get numa node for CPU:%d bus:%d dev:%d fn:%d\n",
|
||||
cpu, bus_no, dev, fn);
|
||||
pr_info_once("Fail to get numa node for CPU:%d bus:%d dev:%d fn:%d\n",
|
||||
cpu, bus_no, dev, fn);
|
||||
continue;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user