All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH net] plip: avoid rcu debug splat
@ 2022-08-07 11:53 Florian Westphal
  2022-08-09 19:30 ` patchwork-bot+netdevbpf
  0 siblings, 1 reply; 2+ messages in thread
From: Florian Westphal @ 2022-08-07 11:53 UTC (permalink / raw)
  To: netdev; +Cc: edumazet, kuba, pabeni, davem, Florian Westphal, kernel test robot

WARNING: suspicious RCU usage
5.2.0-rc2-00605-g2638eb8b50cfc #1 Not tainted
drivers/net/plip/plip.c:1110 suspicious rcu_dereference_check() usage!

plip_open is called with RTNL held, switch to the correct helper.

Fixes: 2638eb8b50cf ("net: ipv4: provide __rcu annotation for ifa_list")
Reported-by: kernel test robot <oliver.sang@intel.com>
Signed-off-by: Florian Westphal <fw@strlen.de>
---
 drivers/net/plip/plip.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/plip/plip.c b/drivers/net/plip/plip.c
index dafd3e9ebbf8..c8791e9b451d 100644
--- a/drivers/net/plip/plip.c
+++ b/drivers/net/plip/plip.c
@@ -1111,7 +1111,7 @@ plip_open(struct net_device *dev)
 		/* Any address will do - we take the first. We already
 		   have the first two bytes filled with 0xfc, from
 		   plip_init_dev(). */
-		const struct in_ifaddr *ifa = rcu_dereference(in_dev->ifa_list);
+		const struct in_ifaddr *ifa = rtnl_dereference(in_dev->ifa_list);
 		if (ifa != NULL) {
 			dev_addr_mod(dev, 2, &ifa->ifa_local, 4);
 		}
-- 
2.37.1


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

* Re: [PATCH net] plip: avoid rcu debug splat
  2022-08-07 11:53 [PATCH net] plip: avoid rcu debug splat Florian Westphal
@ 2022-08-09 19:30 ` patchwork-bot+netdevbpf
  0 siblings, 0 replies; 2+ messages in thread
From: patchwork-bot+netdevbpf @ 2022-08-09 19:30 UTC (permalink / raw)
  To: Florian Westphal; +Cc: netdev, edumazet, kuba, pabeni, davem, oliver.sang

Hello:

This patch was applied to netdev/net.git (master)
by Jakub Kicinski <kuba@kernel.org>:

On Sun,  7 Aug 2022 13:53:04 +0200 you wrote:
> WARNING: suspicious RCU usage
> 5.2.0-rc2-00605-g2638eb8b50cfc #1 Not tainted
> drivers/net/plip/plip.c:1110 suspicious rcu_dereference_check() usage!
> 
> plip_open is called with RTNL held, switch to the correct helper.
> 
> Fixes: 2638eb8b50cf ("net: ipv4: provide __rcu annotation for ifa_list")
> Reported-by: kernel test robot <oliver.sang@intel.com>
> Signed-off-by: Florian Westphal <fw@strlen.de>
> 
> [...]

Here is the summary with links:
  - [net] plip: avoid rcu debug splat
    https://git.kernel.org/netdev/net/c/bc3c8fe3c79b

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] 2+ messages in thread

end of thread, other threads:[~2022-08-09 19:30 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-07 11:53 [PATCH net] plip: avoid rcu debug splat Florian Westphal
2022-08-09 19:30 ` patchwork-bot+netdevbpf

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.