netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net] bgmac: fix *initial* chip reset to support BCM5358
@ 2023-02-27  9:11 Rafał Miłecki
  2023-02-27  9:54 ` Leon Romanovsky
                   ` (3 more replies)
  0 siblings, 4 replies; 11+ messages in thread
From: Rafał Miłecki @ 2023-02-27  9:11 UTC (permalink / raw)
  To: David S . Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni
  Cc: Arnd Bergmann, Florian Fainelli, Jon Mason, netdev,
	bcm-kernel-feedback-list, Rafał Miłecki, Jon Mason

From: Rafał Miłecki <rafal@milecki.pl>

While bringing hardware up we should perform a full reset including the
switch bit (BGMAC_BCMA_IOCTL_SW_RESET aka SICF_SWRST). It's what
specification says and what reference driver does.

This seems to be critical for the BCM5358. Without this hardware doesn't
get initialized properly and doesn't seem to transmit or receive any
packets.

Originally bgmac was calling bgmac_chip_reset() before setting
"has_robosw" property which resulted in expected behaviour. That has
changed as a side effect of adding platform device support which
regressed BCM5358 support.

Fixes: f6a95a24957a ("net: ethernet: bgmac: Add platform device support")
Cc: Jon Mason <jdmason@kudzu.us>
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
---
 drivers/net/ethernet/broadcom/bgmac.c | 8 ++++++--
 drivers/net/ethernet/broadcom/bgmac.h | 2 ++
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/drivers/net/ethernet/broadcom/bgmac.c b/drivers/net/ethernet/broadcom/bgmac.c
index 3038386a5afd..1761df8fb7f9 100644
--- a/drivers/net/ethernet/broadcom/bgmac.c
+++ b/drivers/net/ethernet/broadcom/bgmac.c
@@ -890,13 +890,13 @@ static void bgmac_chip_reset_idm_config(struct bgmac *bgmac)
 
 		if (iost & BGMAC_BCMA_IOST_ATTACHED) {
 			flags = BGMAC_BCMA_IOCTL_SW_CLKEN;
-			if (!bgmac->has_robosw)
+			if (bgmac->in_init || !bgmac->has_robosw)
 				flags |= BGMAC_BCMA_IOCTL_SW_RESET;
 		}
 		bgmac_clk_enable(bgmac, flags);
 	}
 
-	if (iost & BGMAC_BCMA_IOST_ATTACHED && !bgmac->has_robosw)
+	if (iost & BGMAC_BCMA_IOST_ATTACHED && (bgmac->in_init || !bgmac->has_robosw))
 		bgmac_idm_write(bgmac, BCMA_IOCTL,
 				bgmac_idm_read(bgmac, BCMA_IOCTL) &
 				~BGMAC_BCMA_IOCTL_SW_RESET);
@@ -1490,6 +1490,8 @@ int bgmac_enet_probe(struct bgmac *bgmac)
 	struct net_device *net_dev = bgmac->net_dev;
 	int err;
 
+	bgmac->in_init = true;
+
 	bgmac_chip_intrs_off(bgmac);
 
 	net_dev->irq = bgmac->irq;
@@ -1542,6 +1544,8 @@ int bgmac_enet_probe(struct bgmac *bgmac)
 	/* Omit FCS from max MTU size */
 	net_dev->max_mtu = BGMAC_RX_MAX_FRAME_SIZE - ETH_FCS_LEN;
 
+	bgmac->in_init = false;
+
 	err = register_netdev(bgmac->net_dev);
 	if (err) {
 		dev_err(bgmac->dev, "Cannot register net device\n");
diff --git a/drivers/net/ethernet/broadcom/bgmac.h b/drivers/net/ethernet/broadcom/bgmac.h
index e05ac92c0650..d73ef262991d 100644
--- a/drivers/net/ethernet/broadcom/bgmac.h
+++ b/drivers/net/ethernet/broadcom/bgmac.h
@@ -472,6 +472,8 @@ struct bgmac {
 	int irq;
 	u32 int_mask;
 
+	bool in_init;
+
 	/* Current MAC state */
 	int mac_speed;
 	int mac_duplex;
-- 
2.34.1


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

* Re: [PATCH net] bgmac: fix *initial* chip reset to support BCM5358
  2023-02-27  9:11 [PATCH net] bgmac: fix *initial* chip reset to support BCM5358 Rafał Miłecki
@ 2023-02-27  9:54 ` Leon Romanovsky
  2023-02-27 18:23 ` Florian Fainelli
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 11+ messages in thread
From: Leon Romanovsky @ 2023-02-27  9:54 UTC (permalink / raw)
  To: Rafał Miłecki
  Cc: David S . Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
	Arnd Bergmann, Florian Fainelli, Jon Mason, netdev,
	bcm-kernel-feedback-list, Rafał Miłecki, Jon Mason

On Mon, Feb 27, 2023 at 10:11:56AM +0100, Rafał Miłecki wrote:
> From: Rafał Miłecki <rafal@milecki.pl>
> 
> While bringing hardware up we should perform a full reset including the
> switch bit (BGMAC_BCMA_IOCTL_SW_RESET aka SICF_SWRST). It's what
> specification says and what reference driver does.
> 
> This seems to be critical for the BCM5358. Without this hardware doesn't
> get initialized properly and doesn't seem to transmit or receive any
> packets.
> 
> Originally bgmac was calling bgmac_chip_reset() before setting
> "has_robosw" property which resulted in expected behaviour. That has
> changed as a side effect of adding platform device support which
> regressed BCM5358 support.
> 
> Fixes: f6a95a24957a ("net: ethernet: bgmac: Add platform device support")
> Cc: Jon Mason <jdmason@kudzu.us>
> Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
> ---
>  drivers/net/ethernet/broadcom/bgmac.c | 8 ++++++--
>  drivers/net/ethernet/broadcom/bgmac.h | 2 ++
>  2 files changed, 8 insertions(+), 2 deletions(-)
> 

Thanks,
Reviewed-by: Leon Romanovsky <leonro@nvidia.com>

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

* Re: [PATCH net] bgmac: fix *initial* chip reset to support BCM5358
  2023-02-27  9:11 [PATCH net] bgmac: fix *initial* chip reset to support BCM5358 Rafał Miłecki
  2023-02-27  9:54 ` Leon Romanovsky
@ 2023-02-27 18:23 ` Florian Fainelli
  2023-02-28 10:30 ` patchwork-bot+netdevbpf
  2023-04-04 13:46 ` Ricardo Cañuelo
  3 siblings, 0 replies; 11+ messages in thread
From: Florian Fainelli @ 2023-02-27 18:23 UTC (permalink / raw)
  To: Rafał Miłecki, David S . Miller, Eric Dumazet,
	Jakub Kicinski, Paolo Abeni
  Cc: Arnd Bergmann, Jon Mason, netdev, bcm-kernel-feedback-list,
	Rafał Miłecki, Jon Mason



On 2/27/2023 1:11 AM, Rafał Miłecki wrote:
> From: Rafał Miłecki <rafal@milecki.pl>
> 
> While bringing hardware up we should perform a full reset including the
> switch bit (BGMAC_BCMA_IOCTL_SW_RESET aka SICF_SWRST). It's what
> specification says and what reference driver does.
> 
> This seems to be critical for the BCM5358. Without this hardware doesn't
> get initialized properly and doesn't seem to transmit or receive any
> packets.
> 
> Originally bgmac was calling bgmac_chip_reset() before setting
> "has_robosw" property which resulted in expected behaviour. That has
> changed as a side effect of adding platform device support which
> regressed BCM5358 support.
> 
> Fixes: f6a95a24957a ("net: ethernet: bgmac: Add platform device support")
> Cc: Jon Mason <jdmason@kudzu.us>
> Signed-off-by: Rafał Miłecki <rafal@milecki.pl>

Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
-- 
Florian

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

* Re: [PATCH net] bgmac: fix *initial* chip reset to support BCM5358
  2023-02-27  9:11 [PATCH net] bgmac: fix *initial* chip reset to support BCM5358 Rafał Miłecki
  2023-02-27  9:54 ` Leon Romanovsky
  2023-02-27 18:23 ` Florian Fainelli
@ 2023-02-28 10:30 ` patchwork-bot+netdevbpf
  2023-04-04 13:46 ` Ricardo Cañuelo
  3 siblings, 0 replies; 11+ messages in thread
From: patchwork-bot+netdevbpf @ 2023-02-28 10:30 UTC (permalink / raw)
  To: =?utf-8?b?UmFmYcWCIE1pxYJlY2tpIDx6YWplYzVAZ21haWwuY29tPg==?=
  Cc: davem, edumazet, kuba, pabeni, arnd, f.fainelli, jon.mason,
	netdev, bcm-kernel-feedback-list, rafal, jdmason

Hello:

This patch was applied to netdev/net.git (main)
by Paolo Abeni <pabeni@redhat.com>:

On Mon, 27 Feb 2023 10:11:56 +0100 you wrote:
> From: Rafał Miłecki <rafal@milecki.pl>
> 
> While bringing hardware up we should perform a full reset including the
> switch bit (BGMAC_BCMA_IOCTL_SW_RESET aka SICF_SWRST). It's what
> specification says and what reference driver does.
> 
> This seems to be critical for the BCM5358. Without this hardware doesn't
> get initialized properly and doesn't seem to transmit or receive any
> packets.
> 
> [...]

Here is the summary with links:
  - [net] bgmac: fix *initial* chip reset to support BCM5358
    https://git.kernel.org/netdev/net/c/f99e6d7c4ed3

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



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

* Re: [PATCH net] bgmac: fix *initial* chip reset to support BCM5358
  2023-02-27  9:11 [PATCH net] bgmac: fix *initial* chip reset to support BCM5358 Rafał Miłecki
                   ` (2 preceding siblings ...)
  2023-02-28 10:30 ` patchwork-bot+netdevbpf
@ 2023-04-04 13:46 ` Ricardo Cañuelo
  2023-04-04 13:52   ` Rafał Miłecki
  2023-04-05 11:16   ` Linux regression tracking #update (Thorsten Leemhuis)
  3 siblings, 2 replies; 11+ messages in thread
From: Ricardo Cañuelo @ 2023-04-04 13:46 UTC (permalink / raw)
  To: Rafał Miłecki
  Cc: David S . Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
	Arnd Bergmann, Florian Fainelli, Jon Mason, netdev,
	bcm-kernel-feedback-list, Rafał Miłecki, Jon Mason

Hi Rafał,

On mar 07-02-2023 23:53:27, Rafał Miłecki wrote:
> While bringing hardware up we should perform a full reset including the
> switch bit (BGMAC_BCMA_IOCTL_SW_RESET aka SICF_SWRST). It's what
> specification says and what reference driver does.
> 
> This seems to be critical for the BCM5358. Without this hardware doesn't
> get initialized properly and doesn't seem to transmit or receive any
> packets.
> 
> Signed-off-by: Rafał Miłecki <rafal@milecki.pl>

KernelCI found this patch causes a regression in the
bootrr.deferred-probe-empty test [1] on sun8i-h3-libretech-all-h3-cc
[2], see the bisection report for more details [3]

Does it make sense to you?

Cheers,
Ricardo

[1] https://github.com/kernelci/bootrr/blob/3ae9fd5dffc667fa96012892ea08532bc6877276/helpers/bootrr-generic-tests#L3
[2] https://linux.kernelci.org/test/case/id/642a0f5c78c0feaf5d62f79c/
[3] https://groups.io/g/kernelci-results/message/40156

#regzbot introduced: f6a95a24957a

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

* Re: [PATCH net] bgmac: fix *initial* chip reset to support BCM5358
  2023-04-04 13:46 ` Ricardo Cañuelo
@ 2023-04-04 13:52   ` Rafał Miłecki
  2023-04-05 12:42     ` Florian Fainelli
  2023-04-05 11:16   ` Linux regression tracking #update (Thorsten Leemhuis)
  1 sibling, 1 reply; 11+ messages in thread
From: Rafał Miłecki @ 2023-04-04 13:52 UTC (permalink / raw)
  To: Ricardo Cañuelo, Rafał Miłecki
  Cc: David S . Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
	Arnd Bergmann, Florian Fainelli, Jon Mason, netdev,
	bcm-kernel-feedback-list, Jon Mason

Hi,

On 4.04.2023 15:46, Ricardo Cañuelo wrote:
> On mar 07-02-2023 23:53:27, Rafał Miłecki wrote:
>> While bringing hardware up we should perform a full reset including the
>> switch bit (BGMAC_BCMA_IOCTL_SW_RESET aka SICF_SWRST). It's what
>> specification says and what reference driver does.
>>
>> This seems to be critical for the BCM5358. Without this hardware doesn't
>> get initialized properly and doesn't seem to transmit or receive any
>> packets.
>>
>> Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
> 
> KernelCI found this patch causes a regression in the
> bootrr.deferred-probe-empty test [1] on sun8i-h3-libretech-all-h3-cc
> [2], see the bisection report for more details [3]
> 
> Does it make sense to you?

It doesn't seem to make any sense. I guess that on your platform
/sys/kernel/debug/devices_deferred
is not empty anymore?

Does your platform use Broadcom Ethernet controller at all?

It seems like some false positive at first sight.

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

* Re: [PATCH net] bgmac: fix *initial* chip reset to support BCM5358
  2023-04-04 13:46 ` Ricardo Cañuelo
  2023-04-04 13:52   ` Rafał Miłecki
@ 2023-04-05 11:16   ` Linux regression tracking #update (Thorsten Leemhuis)
  1 sibling, 0 replies; 11+ messages in thread
From: Linux regression tracking #update (Thorsten Leemhuis) @ 2023-04-05 11:16 UTC (permalink / raw)
  To: Ricardo Cañuelo, Rafał Miłecki
  Cc: David S . Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
	Arnd Bergmann, Florian Fainelli, Jon Mason, netdev,
	bcm-kernel-feedback-list, Rafał Miłecki, Jon Mason

On 04.04.23 15:46, Ricardo Cañuelo wrote:
>
> On mar 07-02-2023 23:53:27, Rafał Miłecki wrote:
>> While bringing hardware up we should perform a full reset including the
>> switch bit (BGMAC_BCMA_IOCTL_SW_RESET aka SICF_SWRST). It's what
>> specification says and what reference driver does.
>>
>> This seems to be critical for the BCM5358. Without this hardware doesn't
>> get initialized properly and doesn't seem to transmit or receive any
>> packets.
>>
>> Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
> 
> KernelCI found this patch causes a regression in the
> bootrr.deferred-probe-empty test [1] on sun8i-h3-libretech-all-h3-cc
> [2], see the bisection report for more details [3]
> 
> Does it make sense to you?
> 
> Cheers,
> Ricardo
> 
> [1] https://github.com/kernelci/bootrr/blob/3ae9fd5dffc667fa96012892ea08532bc6877276/helpers/bootrr-generic-tests#L3
> [2] https://linux.kernelci.org/test/case/id/642a0f5c78c0feaf5d62f79c/
> [3] https://groups.io/g/kernelci-results/message/40156
> 
> #regzbot introduced: f6a95a24957a

Thx for telling regzbot about this. It seems something went wrong here,
the patch this thread about is f99e6d7c4ed3 (which contains a Fixes: tag
for f6a95a24957a); copy and paste mistake maybe, whatever.

Fixing this and while at it giving this a better title:

#regzbot introduced: f99e6d7c4ed3
#regzbot title: net: bgmac: bootrr.deferred-probe-empty test fails in
KernelCi on sun8i-h3-libretech-all-h3-cc
#regzbot ignore-activity

Ciao, Thorsten (wearing his 'the Linux kernel's regression tracker' hat)
--
Everything you wanna know about Linux kernel regression tracking:
https://linux-regtracking.leemhuis.info/about/#tldr
That page also explains what to do if mails like this annoy you.


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

* Re: [PATCH net] bgmac: fix *initial* chip reset to support BCM5358
  2023-04-04 13:52   ` Rafał Miłecki
@ 2023-04-05 12:42     ` Florian Fainelli
  2023-04-14 14:04       ` Linux regression tracking (Thorsten Leemhuis)
  0 siblings, 1 reply; 11+ messages in thread
From: Florian Fainelli @ 2023-04-05 12:42 UTC (permalink / raw)
  To: Rafał Miłecki, Ricardo Cañuelo, Rafał Miłecki
  Cc: David S . Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
	Arnd Bergmann, Florian Fainelli, netdev,
	bcm-kernel-feedback-list, Jon Mason



On 4/4/2023 6:52 AM, Rafał Miłecki wrote:
> Hi,
> 
> On 4.04.2023 15:46, Ricardo Cañuelo wrote:
>> On mar 07-02-2023 23:53:27, Rafał Miłecki wrote:
>>> While bringing hardware up we should perform a full reset including the
>>> switch bit (BGMAC_BCMA_IOCTL_SW_RESET aka SICF_SWRST). It's what
>>> specification says and what reference driver does.
>>>
>>> This seems to be critical for the BCM5358. Without this hardware doesn't
>>> get initialized properly and doesn't seem to transmit or receive any
>>> packets.
>>>
>>> Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
>>
>> KernelCI found this patch causes a regression in the
>> bootrr.deferred-probe-empty test [1] on sun8i-h3-libretech-all-h3-cc
>> [2], see the bisection report for more details [3]
>>
>> Does it make sense to you?
> 
> It doesn't seem to make any sense. I guess that on your platform
> /sys/kernel/debug/devices_deferred
> is not empty anymore?
> 
> Does your platform use Broadcom Ethernet controller at all?

I do not believe it does, however according to the log, the driver is 
enabled:

<6>[    1.819466] bgmac_bcma: Broadcom 47xx GBit MAC driver loaded

but it should not be probing any device since you don't have any 
internal BCMA bus to match gigabit devices with. Later in the log we see:

1c22c00.codec	sun4i-codec: Failed to register our card

and most likely as you already wrote the deferred device list might not 
be empty.
-- 
Florian

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

* Re: [PATCH net] bgmac: fix *initial* chip reset to support BCM5358
  2023-04-05 12:42     ` Florian Fainelli
@ 2023-04-14 14:04       ` Linux regression tracking (Thorsten Leemhuis)
  2023-04-14 14:08         ` Ricardo Cañuelo
  0 siblings, 1 reply; 11+ messages in thread
From: Linux regression tracking (Thorsten Leemhuis) @ 2023-04-14 14:04 UTC (permalink / raw)
  To: Florian Fainelli, Rafał Miłecki, Ricardo Cañuelo,
	Rafał Miłecki
  Cc: David S . Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
	Arnd Bergmann, netdev, bcm-kernel-feedback-list, Jon Mason,
	Linux kernel regressions list

On 05.04.23 14:42, Florian Fainelli wrote:
> On 4/4/2023 6:52 AM, Rafał Miłecki wrote:

>> On 4.04.2023 15:46, Ricardo Cañuelo wrote:
>>> On mar 07-02-2023 23:53:27, Rafał Miłecki wrote:
>>>> While bringing hardware up we should perform a full reset including the
>>>> switch bit (BGMAC_BCMA_IOCTL_SW_RESET aka SICF_SWRST). It's what
>>>> specification says and what reference driver does.
>>>>
>>>> This seems to be critical for the BCM5358. Without this hardware
>>>> doesn't
>>>> get initialized properly and doesn't seem to transmit or receive any
>>>> packets.
>>>>
>>>> Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
>>>
>>> KernelCI found this patch causes a regression in the
>>> bootrr.deferred-probe-empty test [1] on sun8i-h3-libretech-all-h3-cc
>>> [2], see the bisection report for more details [3]
>>>
>>> Does it make sense to you?
>>
>> It doesn't seem to make any sense. I guess that on your platform
>> /sys/kernel/debug/devices_deferred
>> is not empty anymore?
>>
>> Does your platform use Broadcom Ethernet controller at all?
> 
> I do not believe it does, however according to the log, the driver is
> enabled:
> 
> <6>[    1.819466] bgmac_bcma: Broadcom 47xx GBit MAC driver loaded
> 
> but it should not be probing any device since you don't have any
> internal BCMA bus to match gigabit devices with. Later in the log we see:
> 
> 1c22c00.codec    sun4i-codec: Failed to register our card
> 
> and most likely as you already wrote the deferred device list might not
> be empty.

What happened to this? It seems there wasn't any progress since above
mail week. But well, seems to be a odd issue anyway (is that one of
those issues that CI systems find, but don't cause practical issues in
the field?). Hence: can somebody with more knowledge about this please
tell if it this is something I can likely drop from the list of tacked
regressions?

Ciao, Thorsten (wearing his 'the Linux kernel's regression tracker' hat)
--
Everything you wanna know about Linux kernel regression tracking:
https://linux-regtracking.leemhuis.info/about/#tldr
If I did something stupid, please tell me, as explained on that page.

#regzbot poke

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

* Re: [PATCH net] bgmac: fix *initial* chip reset to support BCM5358
  2023-04-14 14:04       ` Linux regression tracking (Thorsten Leemhuis)
@ 2023-04-14 14:08         ` Ricardo Cañuelo
  2023-04-14 14:12           ` Linux regression tracking #update (Thorsten Leemhuis)
  0 siblings, 1 reply; 11+ messages in thread
From: Ricardo Cañuelo @ 2023-04-14 14:08 UTC (permalink / raw)
  To: Linux regressions mailing list, Florian Fainelli,
	Rafał Miłecki, Rafał Miłecki
  Cc: David S . Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
	Arnd Bergmann, netdev, bcm-kernel-feedback-list, Jon Mason

Hi Thorsten,

On 14/4/23 16:04, Linux regression tracking (Thorsten Leemhuis) wrote:
> What happened to this? It seems there wasn't any progress since above
> mail week. But well, seems to be a odd issue anyway (is that one of
> those issues that CI systems find, but don't cause practical issues in
> the field?). Hence: can somebody with more knowledge about this please
> tell if it this is something I can likely drop from the list of tacked
> regressions?

 From Rafał's answer, I think we can consider this a false positive and move on.

Cheers,
Ricardo

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

* Re: [PATCH net] bgmac: fix *initial* chip reset to support BCM5358
  2023-04-14 14:08         ` Ricardo Cañuelo
@ 2023-04-14 14:12           ` Linux regression tracking #update (Thorsten Leemhuis)
  0 siblings, 0 replies; 11+ messages in thread
From: Linux regression tracking #update (Thorsten Leemhuis) @ 2023-04-14 14:12 UTC (permalink / raw)
  To: Ricardo Cañuelo, Linux regressions mailing list,
	Florian Fainelli, Rafał Miłecki,
	Rafał Miłecki
  Cc: David S . Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
	Arnd Bergmann, netdev, bcm-kernel-feedback-list, Jon Mason



On 14.04.23 16:08, Ricardo Cañuelo wrote:
> Hi Thorsten,
> 
> On 14/4/23 16:04, Linux regression tracking (Thorsten Leemhuis) wrote:
>> What happened to this? It seems there wasn't any progress since above
>> mail week. But well, seems to be a odd issue anyway (is that one of
>> those issues that CI systems find, but don't cause practical issues in
>> the field?). Hence: can somebody with more knowledge about this please
>> tell if it this is something I can likely drop from the list of tacked
>> regressions?
> 
> From Rafał's answer, I think we can consider this a false positive and
> move on.

great, thx for confirming!

#regzbot inconclusive: CI false positive
#regzbot ignore-activity

Ciao, Thorsten (wearing his 'the Linux kernel's regression tracker' hat)
--
Everything you wanna know about Linux kernel regression tracking:
https://linux-regtracking.leemhuis.info/about/#tldr
That page also explains what to do if mails like this annoy you.





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

end of thread, other threads:[~2023-04-14 14:13 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-27  9:11 [PATCH net] bgmac: fix *initial* chip reset to support BCM5358 Rafał Miłecki
2023-02-27  9:54 ` Leon Romanovsky
2023-02-27 18:23 ` Florian Fainelli
2023-02-28 10:30 ` patchwork-bot+netdevbpf
2023-04-04 13:46 ` Ricardo Cañuelo
2023-04-04 13:52   ` Rafał Miłecki
2023-04-05 12:42     ` Florian Fainelli
2023-04-14 14:04       ` Linux regression tracking (Thorsten Leemhuis)
2023-04-14 14:08         ` Ricardo Cañuelo
2023-04-14 14:12           ` Linux regression tracking #update (Thorsten Leemhuis)
2023-04-05 11:16   ` Linux regression tracking #update (Thorsten Leemhuis)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).