Re: [PATCH 4/4] PCI: Descope pci_printk() to aer_printk()

2025-02-14 Thread Bjorn Helgaas
On Fri, Feb 14, 2025 at 01:56:47PM +0200, Ilpo Järvinen wrote: > On Thu, 13 Feb 2025, Bjorn Helgaas wrote: > > On Mon, Dec 16, 2024 at 06:10:12PM +0200, Ilpo Järvinen wrote: > > > include/linux/pci.h provides low-level pci_printk() interface that is > > > only used by AER because it needs to print

Re: [PATCH 4/4] PCI: Descope pci_printk() to aer_printk()

2025-02-14 Thread Ilpo Järvinen
On Thu, 13 Feb 2025, Bjorn Helgaas wrote: > On Mon, Dec 16, 2024 at 06:10:12PM +0200, Ilpo Järvinen wrote: > > include/linux/pci.h provides low-level pci_printk() interface that is > > only used by AER because it needs to print the same message with > > different levels depending on the error seve

Re: [PATCH 4/4] PCI: Descope pci_printk() to aer_printk()

2025-02-13 Thread Bjorn Helgaas
On Mon, Dec 16, 2024 at 06:10:12PM +0200, Ilpo Järvinen wrote: > include/linux/pci.h provides low-level pci_printk() interface that is > only used by AER because it needs to print the same message with > different levels depending on the error severity. No other PCI code > uses that functionality a

[PATCH 4/4] PCI: Descope pci_printk() to aer_printk()

2024-12-16 Thread Ilpo Järvinen
include/linux/pci.h provides low-level pci_printk() interface that is only used by AER because it needs to print the same message with different levels depending on the error severity. No other PCI code uses that functionality and calls pci_() logging functions directly with the appropriate level.