Skip to content

Commit af8a6d2

Browse files
spandruvadajwrdegoede
authored andcommitted
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>
1 parent 5a66d59 commit af8a6d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/platform/x86/intel/speed_select_if/isst_if_common.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -335,8 +335,8 @@ static struct pci_dev *_isst_if_get_pci_dev(int cpu, int bus_no, int dev, int fn
335335

336336
node = dev_to_node(&_pci_dev->dev);
337337
if (node == NUMA_NO_NODE) {
338-
pr_info("Fail to get numa node for CPU:%d bus:%d dev:%d fn:%d\n",
339-
cpu, bus_no, dev, fn);
338+
pr_info_once("Fail to get numa node for CPU:%d bus:%d dev:%d fn:%d\n",
339+
cpu, bus_no, dev, fn);
340340
continue;
341341
}
342342

0 commit comments

Comments
 (0)