public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] PCI/portdev: Disable AER for Titan Ridge 4C 2018
@ 2026-01-06 18:20 Atharva Tiwari
  2026-01-06 18:27 ` Dave Jiang
  2026-01-06 19:00 ` Kuppuswamy Sathyanarayanan
  0 siblings, 2 replies; 11+ messages in thread
From: Atharva Tiwari @ 2026-01-06 18:20 UTC (permalink / raw)
  Cc: Atharva Tiwari, Bjorn Helgaas, Lukas Wunner, Dave Jiang,
	Kuppuswamy Sathyanarayanan, Feng Tang, linux-pci, linux-kernel

Disable AER for Intel Titan Ridge 4C 2018
(used in T2 iMacs, where the warnings appear)
that generates continuous pcieport warnings. such as:

pcieport 0000:00:1c.4: AER: Correctable error message received from 0000:07:00.0
pcieport 0000:07:00.0: PCIe Bus Error: severity=Correctable, type=Data Link Layer, (Receiver ID)
pcieport 0000:07:00.0:   device [8086:15ea] error status/mask=00000080/00002000
pcieport 0000:07:00.0:    [ 7] BadDLLP

(see: https://bugzilla.kernel.org/show_bug.cgi?id=220651)

macOS also disables AER for Thunderbolt devices and controllers in their drivers.

Signed-off-by: Atharva Tiwari <atharvatiwarilinuxdev@gmail.com>
---
 drivers/pci/pcie/portdrv.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/drivers/pci/pcie/portdrv.c b/drivers/pci/pcie/portdrv.c
index 38a41ccf79b9..5330a679fcff 100644
--- a/drivers/pci/pcie/portdrv.c
+++ b/drivers/pci/pcie/portdrv.c
@@ -240,7 +240,9 @@ static int get_port_device_capability(struct pci_dev *dev)
 	if ((pci_pcie_type(dev) == PCI_EXP_TYPE_ROOT_PORT ||
              pci_pcie_type(dev) == PCI_EXP_TYPE_RC_EC) &&
 	    dev->aer_cap && pci_aer_available() &&
-	    (pcie_ports_native || host->native_aer))
+	    (pcie_ports_native || host->native_aer) &&
+	    !(dev->vendor == PCI_VENDOR_ID_INTEL &&
+		    (dev->device >= 0x15EA && dev->device <= 0x15EC)))
 		services |= PCIE_PORT_SERVICE_AER;
 #endif
 
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* Re: [PATCH] PCI/portdev: Disable AER for Titan Ridge 4C 2018
  2026-01-06 18:20 [PATCH] PCI/portdev: Disable AER for Titan Ridge 4C 2018 Atharva Tiwari
@ 2026-01-06 18:27 ` Dave Jiang
  2026-01-06 19:00 ` Kuppuswamy Sathyanarayanan
  1 sibling, 0 replies; 11+ messages in thread
From: Dave Jiang @ 2026-01-06 18:27 UTC (permalink / raw)
  To: Atharva Tiwari
  Cc: Bjorn Helgaas, Lukas Wunner, Kuppuswamy Sathyanarayanan,
	Feng Tang, linux-pci, linux-kernel



On 1/6/26 11:20 AM, Atharva Tiwari wrote:
> Disable AER for Intel Titan Ridge 4C 2018
> (used in T2 iMacs, where the warnings appear)
> that generates continuous pcieport warnings. such as:
> 
> pcieport 0000:00:1c.4: AER: Correctable error message received from 0000:07:00.0
> pcieport 0000:07:00.0: PCIe Bus Error: severity=Correctable, type=Data Link Layer, (Receiver ID)
> pcieport 0000:07:00.0:   device [8086:15ea] error status/mask=00000080/00002000
> pcieport 0000:07:00.0:    [ 7] BadDLLP
> 
> (see: https://bugzilla.kernel.org/show_bug.cgi?id=220651)
> 
> macOS also disables AER for Thunderbolt devices and controllers in their drivers.
> 
> Signed-off-by: Atharva Tiwari <atharvatiwarilinuxdev@gmail.com>
> ---
>  drivers/pci/pcie/portdrv.c | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/pci/pcie/portdrv.c b/drivers/pci/pcie/portdrv.c
> index 38a41ccf79b9..5330a679fcff 100644
> --- a/drivers/pci/pcie/portdrv.c
> +++ b/drivers/pci/pcie/portdrv.c
> @@ -240,7 +240,9 @@ static int get_port_device_capability(struct pci_dev *dev)
>  	if ((pci_pcie_type(dev) == PCI_EXP_TYPE_ROOT_PORT ||
>               pci_pcie_type(dev) == PCI_EXP_TYPE_RC_EC) &&
>  	    dev->aer_cap && pci_aer_available() &&
> -	    (pcie_ports_native || host->native_aer))
> +	    (pcie_ports_native || host->native_aer) &&
> +	    !(dev->vendor == PCI_VENDOR_ID_INTEL &&
> +		    (dev->device >= 0x15EA && dev->device <= 0x15EC)))

You probably want to do this as a PCI quirk rather than adding a vendor specific line in a generic function. See drivers/pci/quirks.c.

DJ
>  		services |= PCIE_PORT_SERVICE_AER;
>  #endif
>  


^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] PCI/portdev: Disable AER for Titan Ridge 4C 2018
  2026-01-06 18:20 [PATCH] PCI/portdev: Disable AER for Titan Ridge 4C 2018 Atharva Tiwari
  2026-01-06 18:27 ` Dave Jiang
@ 2026-01-06 19:00 ` Kuppuswamy Sathyanarayanan
  2026-01-06 19:33   ` Atharva Tiwari
                     ` (2 more replies)
  1 sibling, 3 replies; 11+ messages in thread
From: Kuppuswamy Sathyanarayanan @ 2026-01-06 19:00 UTC (permalink / raw)
  To: Atharva Tiwari
  Cc: Bjorn Helgaas, Lukas Wunner, Dave Jiang, Feng Tang, linux-pci,
	linux-kernel



On 1/6/2026 10:20 AM, Atharva Tiwari wrote:
> Disable AER for Intel Titan Ridge 4C 2018
> (used in T2 iMacs, where the warnings appear)
> that generates continuous pcieport warnings. such as:
> 
> pcieport 0000:00:1c.4: AER: Correctable error message received from 0000:07:00.0
> pcieport 0000:07:00.0: PCIe Bus Error: severity=Correctable, type=Data Link Layer, (Receiver ID)
> pcieport 0000:07:00.0:   device [8086:15ea] error status/mask=00000080/00002000
> pcieport 0000:07:00.0:    [ 7] BadDLLP
> 
> (see: https://bugzilla.kernel.org/show_bug.cgi?id=220651)
> 
> macOS also disables AER for Thunderbolt devices and controllers in their drivers.
> 

Why not disable it in BIOS or use noaer command line option?

> Signed-off-by: Atharva Tiwari <atharvatiwarilinuxdev@gmail.com>
> ---
>  drivers/pci/pcie/portdrv.c | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/pci/pcie/portdrv.c b/drivers/pci/pcie/portdrv.c
> index 38a41ccf79b9..5330a679fcff 100644
> --- a/drivers/pci/pcie/portdrv.c
> +++ b/drivers/pci/pcie/portdrv.c
> @@ -240,7 +240,9 @@ static int get_port_device_capability(struct pci_dev *dev)
>  	if ((pci_pcie_type(dev) == PCI_EXP_TYPE_ROOT_PORT ||
>               pci_pcie_type(dev) == PCI_EXP_TYPE_RC_EC) &&
>  	    dev->aer_cap && pci_aer_available() &&
> -	    (pcie_ports_native || host->native_aer))
> +	    (pcie_ports_native || host->native_aer) &&
> +	    !(dev->vendor == PCI_VENDOR_ID_INTEL &&
> +		    (dev->device >= 0x15EA && dev->device <= 0x15EC)))
>  		services |= PCIE_PORT_SERVICE_AER;
>  #endif
>  

-- 
Sathyanarayanan Kuppuswamy
Linux Kernel Developer


^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] PCI/portdev: Disable AER for Titan Ridge 4C 2018
  2026-01-06 19:00 ` Kuppuswamy Sathyanarayanan
@ 2026-01-06 19:33   ` Atharva Tiwari
  2026-01-06 19:54   ` Kuppuswamy Sathyanarayanan
  2026-01-06 20:48   ` Bjorn Helgaas
  2 siblings, 0 replies; 11+ messages in thread
From: Atharva Tiwari @ 2026-01-06 19:33 UTC (permalink / raw)
  To: sathyanarayanan.kuppuswamy
  Cc: atharvatiwarilinuxdev, bhelgaas, dave.jiang, feng.tang,
	linux-kernel, linux-pci, lukas

Macs dosent allow normal users to change settings in the bios, and i want
to use AER on different devices.

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] PCI/portdev: Disable AER for Titan Ridge 4C 2018
  2026-01-06 19:00 ` Kuppuswamy Sathyanarayanan
  2026-01-06 19:33   ` Atharva Tiwari
@ 2026-01-06 19:54   ` Kuppuswamy Sathyanarayanan
  2026-01-07  4:43     ` Atharva Tiwari
  2026-01-06 20:48   ` Bjorn Helgaas
  2 siblings, 1 reply; 11+ messages in thread
From: Kuppuswamy Sathyanarayanan @ 2026-01-06 19:54 UTC (permalink / raw)
  To: Atharva Tiwari
  Cc: Bjorn Helgaas, Lukas Wunner, Dave Jiang, Feng Tang, linux-pci,
	linux-kernel



On 1/6/2026 11:00 AM, Kuppuswamy Sathyanarayanan wrote:
> 
> 
> On 1/6/2026 10:20 AM, Atharva Tiwari wrote:
>> Disable AER for Intel Titan Ridge 4C 2018
>> (used in T2 iMacs, where the warnings appear)
>> that generates continuous pcieport warnings. such as:
>>
>> pcieport 0000:00:1c.4: AER: Correctable error message received from 0000:07:00.0
>> pcieport 0000:07:00.0: PCIe Bus Error: severity=Correctable, type=Data Link Layer, (Receiver ID)
>> pcieport 0000:07:00.0:   device [8086:15ea] error status/mask=00000080/00002000
>> pcieport 0000:07:00.0:    [ 7] BadDLLP
>>
>> (see: https://bugzilla.kernel.org/show_bug.cgi?id=220651)
>>
>> macOS also disables AER for Thunderbolt devices and controllers in their drivers.
>>
> 
> Why not disable it in BIOS or use noaer command line option?

As per the bugzilla report, this looks like a regression. Did you bisect
to find which commit introduced this warning?

Before disabling AER, please investigate the root cause:

Does this occur on all T2 iMacs or specific configurations?
Have you tested different PCIe link speeds?
Is this a cable/connection issue or firmware problem?

The device range (0x15EA-0x15EC) needs justification. Which specific
Titan Ridge variants have this issue?

Before fixing it, try to identify the root cause.

If it needs kernel fix, you need to use quirks (since BIOS
change does not work for you).

> 
>> Signed-off-by: Atharva Tiwari <atharvatiwarilinuxdev@gmail.com>
>> ---
>>  drivers/pci/pcie/portdrv.c | 4 +++-
>>  1 file changed, 3 insertions(+), 1 deletion(-)
>>
>> diff --git a/drivers/pci/pcie/portdrv.c b/drivers/pci/pcie/portdrv.c
>> index 38a41ccf79b9..5330a679fcff 100644
>> --- a/drivers/pci/pcie/portdrv.c
>> +++ b/drivers/pci/pcie/portdrv.c
>> @@ -240,7 +240,9 @@ static int get_port_device_capability(struct pci_dev *dev)
>>  	if ((pci_pcie_type(dev) == PCI_EXP_TYPE_ROOT_PORT ||
>>               pci_pcie_type(dev) == PCI_EXP_TYPE_RC_EC) &&
>>  	    dev->aer_cap && pci_aer_available() &&
>> -	    (pcie_ports_native || host->native_aer))
>> +	    (pcie_ports_native || host->native_aer) &&
>> +	    !(dev->vendor == PCI_VENDOR_ID_INTEL &&
>> +		    (dev->device >= 0x15EA && dev->device <= 0x15EC)))
>>  		services |= PCIE_PORT_SERVICE_AER;
>>  #endif
>>  
> 

-- 
Sathyanarayanan Kuppuswamy
Linux Kernel Developer


^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] PCI/portdev: Disable AER for Titan Ridge 4C 2018
  2026-01-06 19:00 ` Kuppuswamy Sathyanarayanan
  2026-01-06 19:33   ` Atharva Tiwari
  2026-01-06 19:54   ` Kuppuswamy Sathyanarayanan
@ 2026-01-06 20:48   ` Bjorn Helgaas
  2026-01-07  9:30     ` Mika Westerberg
  2 siblings, 1 reply; 11+ messages in thread
From: Bjorn Helgaas @ 2026-01-06 20:48 UTC (permalink / raw)
  To: Kuppuswamy Sathyanarayanan
  Cc: Atharva Tiwari, Bjorn Helgaas, Lukas Wunner, Dave Jiang,
	Feng Tang, linux-pci, linux-kernel, Andreas Noever,
	Mika Westerberg, Yehezkel Bernat, linux-usb

[+cc Thunderbolt folks]

On Tue, Jan 06, 2026 at 11:00:52AM -0800, Kuppuswamy Sathyanarayanan wrote:
> On 1/6/2026 10:20 AM, Atharva Tiwari wrote:
> > Disable AER for Intel Titan Ridge 4C 2018
> > (used in T2 iMacs, where the warnings appear)
> > that generates continuous pcieport warnings. such as:
> > 
> > pcieport 0000:00:1c.4: AER: Correctable error message received from 0000:07:00.0
> > pcieport 0000:07:00.0: PCIe Bus Error: severity=Correctable, type=Data Link Layer, (Receiver ID)
> > pcieport 0000:07:00.0:   device [8086:15ea] error status/mask=00000080/00002000
> > pcieport 0000:07:00.0:    [ 7] BadDLLP
> > 
> > (see: https://bugzilla.kernel.org/show_bug.cgi?id=220651)
> > 
> > macOS also disables AER for Thunderbolt devices and controllers in
> > their drivers.
> 
> Why not disable it in BIOS or use noaer command line option?

If the kernel can figure this out by itself, we should do that so
users don't have to debug issues and figure out how to disable in BIOS
or use a command line option.

But if this is really a hardware issue, I would expect to see some
reports on the web, and I can't find AER reports that mention these
devices except this problem report.

Adding Thunderbolt folks in case they know about any errata.

> > Signed-off-by: Atharva Tiwari <atharvatiwarilinuxdev@gmail.com>
> > ---
> >  drivers/pci/pcie/portdrv.c | 4 +++-
> >  1 file changed, 3 insertions(+), 1 deletion(-)
> > 
> > diff --git a/drivers/pci/pcie/portdrv.c b/drivers/pci/pcie/portdrv.c
> > index 38a41ccf79b9..5330a679fcff 100644
> > --- a/drivers/pci/pcie/portdrv.c
> > +++ b/drivers/pci/pcie/portdrv.c
> > @@ -240,7 +240,9 @@ static int get_port_device_capability(struct pci_dev *dev)
> >  	if ((pci_pcie_type(dev) == PCI_EXP_TYPE_ROOT_PORT ||
> >               pci_pcie_type(dev) == PCI_EXP_TYPE_RC_EC) &&
> >  	    dev->aer_cap && pci_aer_available() &&
> > -	    (pcie_ports_native || host->native_aer))
> > +	    (pcie_ports_native || host->native_aer) &&
> > +	    !(dev->vendor == PCI_VENDOR_ID_INTEL &&
> > +		    (dev->device >= 0x15EA && dev->device <= 0x15EC)))
> >  		services |= PCIE_PORT_SERVICE_AER;
> >  #endif
> >  
> 
> -- 
> Sathyanarayanan Kuppuswamy
> Linux Kernel Developer
> 

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] PCI/portdev: Disable AER for Titan Ridge 4C 2018
  2026-01-06 19:54   ` Kuppuswamy Sathyanarayanan
@ 2026-01-07  4:43     ` Atharva Tiwari
  0 siblings, 0 replies; 11+ messages in thread
From: Atharva Tiwari @ 2026-01-07  4:43 UTC (permalink / raw)
  To: sathyanarayanan.kuppuswamy
  Cc: atharvatiwarilinuxdev, bhelgaas, dave.jiang, feng.tang,
	linux-kernel, linux-pci, lukas

This is not a regression. By ‘happening since 6.1’, I meant that I have
been using Linux on my iMac since kernel 6.1, and the warnings have been
present for as long as I have been running Linux.

These warning occurs in all T2 iMac's. different link speeds dosent help.
and this is most likely a firmware problem, as connection problems
wouldnt occur on all T2 iMac's.

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] PCI/portdev: Disable AER for Titan Ridge 4C 2018
  2026-01-06 20:48   ` Bjorn Helgaas
@ 2026-01-07  9:30     ` Mika Westerberg
  2026-01-07  9:54       ` Atharva Tiwari
  0 siblings, 1 reply; 11+ messages in thread
From: Mika Westerberg @ 2026-01-07  9:30 UTC (permalink / raw)
  To: Bjorn Helgaas
  Cc: Kuppuswamy Sathyanarayanan, Atharva Tiwari, Bjorn Helgaas,
	Lukas Wunner, Dave Jiang, Feng Tang, linux-pci, linux-kernel,
	Andreas Noever, Mika Westerberg, Yehezkel Bernat, linux-usb

On Tue, Jan 06, 2026 at 02:48:01PM -0600, Bjorn Helgaas wrote:
> [+cc Thunderbolt folks]
> 
> On Tue, Jan 06, 2026 at 11:00:52AM -0800, Kuppuswamy Sathyanarayanan wrote:
> > On 1/6/2026 10:20 AM, Atharva Tiwari wrote:
> > > Disable AER for Intel Titan Ridge 4C 2018
> > > (used in T2 iMacs, where the warnings appear)
> > > that generates continuous pcieport warnings. such as:
> > > 
> > > pcieport 0000:00:1c.4: AER: Correctable error message received from 0000:07:00.0
> > > pcieport 0000:07:00.0: PCIe Bus Error: severity=Correctable, type=Data Link Layer, (Receiver ID)
> > > pcieport 0000:07:00.0:   device [8086:15ea] error status/mask=00000080/00002000
> > > pcieport 0000:07:00.0:    [ 7] BadDLLP
> > > 
> > > (see: https://bugzilla.kernel.org/show_bug.cgi?id=220651)
> > > 
> > > macOS also disables AER for Thunderbolt devices and controllers in
> > > their drivers.
> > 
> > Why not disable it in BIOS or use noaer command line option?
> 
> If the kernel can figure this out by itself, we should do that so
> users don't have to debug issues and figure out how to disable in BIOS
> or use a command line option.
> 
> But if this is really a hardware issue, I would expect to see some
> reports on the web, and I can't find AER reports that mention these
> devices except this problem report.
> 
> Adding Thunderbolt folks in case they know about any errata.

I wonder if these AER messages are caused by PTM too?

Can you try the latest mainline. It has this commit:

  044b9f1a7f4f ("PCI/PTM: Enable only if device advertises relevant role")

and see if that changes anything?

> 
> > > Signed-off-by: Atharva Tiwari <atharvatiwarilinuxdev@gmail.com>
> > > ---
> > >  drivers/pci/pcie/portdrv.c | 4 +++-
> > >  1 file changed, 3 insertions(+), 1 deletion(-)
> > > 
> > > diff --git a/drivers/pci/pcie/portdrv.c b/drivers/pci/pcie/portdrv.c
> > > index 38a41ccf79b9..5330a679fcff 100644
> > > --- a/drivers/pci/pcie/portdrv.c
> > > +++ b/drivers/pci/pcie/portdrv.c
> > > @@ -240,7 +240,9 @@ static int get_port_device_capability(struct pci_dev *dev)
> > >  	if ((pci_pcie_type(dev) == PCI_EXP_TYPE_ROOT_PORT ||
> > >               pci_pcie_type(dev) == PCI_EXP_TYPE_RC_EC) &&
> > >  	    dev->aer_cap && pci_aer_available() &&
> > > -	    (pcie_ports_native || host->native_aer))
> > > +	    (pcie_ports_native || host->native_aer) &&
> > > +	    !(dev->vendor == PCI_VENDOR_ID_INTEL &&
> > > +		    (dev->device >= 0x15EA && dev->device <= 0x15EC)))
> > >  		services |= PCIE_PORT_SERVICE_AER;
> > >  #endif
> > >  
> > 
> > -- 
> > Sathyanarayanan Kuppuswamy
> > Linux Kernel Developer
> > 

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] PCI/portdev: Disable AER for Titan Ridge 4C 2018
  2026-01-07  9:30     ` Mika Westerberg
@ 2026-01-07  9:54       ` Atharva Tiwari
  2026-01-07 10:01         ` Lukas Wunner
  2026-01-07 10:02         ` Mika Westerberg
  0 siblings, 2 replies; 11+ messages in thread
From: Atharva Tiwari @ 2026-01-07  9:54 UTC (permalink / raw)
  To: mika.westerberg
  Cc: YehezkelShB, andreas.noever, atharvatiwarilinuxdev, bhelgaas,
	dave.jiang, feng.tang, helgaas, linux-kernel, linux-pci,
	linux-usb, lukas, sathyanarayanan.kuppuswamy, westeri

I’ve been using the mainline kernel
(which I compiled about two weeks ago),
and the problem still isn’t fixed,
so PTM is most likely not the root cause.

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] PCI/portdev: Disable AER for Titan Ridge 4C 2018
  2026-01-07  9:54       ` Atharva Tiwari
@ 2026-01-07 10:01         ` Lukas Wunner
  2026-01-07 10:02         ` Mika Westerberg
  1 sibling, 0 replies; 11+ messages in thread
From: Lukas Wunner @ 2026-01-07 10:01 UTC (permalink / raw)
  To: Atharva Tiwari
  Cc: mika.westerberg, YehezkelShB, andreas.noever, bhelgaas,
	dave.jiang, feng.tang, helgaas, linux-kernel, linux-pci,
	linux-usb, sathyanarayanan.kuppuswamy, westeri

On Wed, Jan 07, 2026 at 09:54:33AM +0000, Atharva Tiwari wrote:
> I've been using the mainline kernel
> (which I compiled about two weeks ago),
> and the problem still isn't fixed,
> so PTM is most likely not the root cause.

The commit Mika called out went into v6.19-rc1, we're now at v6.19-rc4,
so unless you're closely tracking Linus' tree, I'm afraid you may not
have been using a recent enough kernel to verify Mika's suggestion.

Thanks,

Lukas

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] PCI/portdev: Disable AER for Titan Ridge 4C 2018
  2026-01-07  9:54       ` Atharva Tiwari
  2026-01-07 10:01         ` Lukas Wunner
@ 2026-01-07 10:02         ` Mika Westerberg
  1 sibling, 0 replies; 11+ messages in thread
From: Mika Westerberg @ 2026-01-07 10:02 UTC (permalink / raw)
  To: Atharva Tiwari
  Cc: YehezkelShB, andreas.noever, bhelgaas, dave.jiang, feng.tang,
	helgaas, linux-kernel, linux-pci, linux-usb, lukas,
	sathyanarayanan.kuppuswamy, westeri

On Wed, Jan 07, 2026 at 09:54:33AM +0000, Atharva Tiwari wrote:
> I’ve been using the mainline kernel
> (which I compiled about two weeks ago),
> and the problem still isn’t fixed,
> so PTM is most likely not the root cause.

Okay, what device you have connected there?

Can you provide full dmesg and output of 'sudo lspci -vv') when that device
is connected?

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2026-01-07 10:03 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-06 18:20 [PATCH] PCI/portdev: Disable AER for Titan Ridge 4C 2018 Atharva Tiwari
2026-01-06 18:27 ` Dave Jiang
2026-01-06 19:00 ` Kuppuswamy Sathyanarayanan
2026-01-06 19:33   ` Atharva Tiwari
2026-01-06 19:54   ` Kuppuswamy Sathyanarayanan
2026-01-07  4:43     ` Atharva Tiwari
2026-01-06 20:48   ` Bjorn Helgaas
2026-01-07  9:30     ` Mika Westerberg
2026-01-07  9:54       ` Atharva Tiwari
2026-01-07 10:01         ` Lukas Wunner
2026-01-07 10:02         ` Mika Westerberg

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox