]> git.baikalelectronics.ru Git - kernel.git/commit
ipvlan: do not use cond_resched_rcu() in ipvlan_process_multicast()
authorEric Dumazet <edumazet@google.com>
Tue, 10 Mar 2020 01:22:58 +0000 (18:22 -0700)
committerDavid S. Miller <davem@davemloft.net>
Tue, 10 Mar 2020 01:32:03 +0000 (18:32 -0700)
commit302e40c0f4a87598c0102d49a36f89af4d68ea2b
tree357419b398e0a28517032150280eb488c6278ac0
parentfe76dffbcfd202c88830e3ae4f2c84ddffdda118
ipvlan: do not use cond_resched_rcu() in ipvlan_process_multicast()

Commit b47ecf1107dd ("ipvlan: add cond_resched_rcu() while
processing muticast backlog") added a cond_resched_rcu() in a loop
using rcu protection to iterate over slaves.

This is breaking rcu rules, so lets instead use cond_resched()
at a point we can reschedule

Fixes: b47ecf1107dd ("ipvlan: add cond_resched_rcu() while processing muticast backlog")
Signed-off-by: Eric Dumazet <edumazet@google.com>
Cc: Mahesh Bandewar <maheshb@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ipvlan/ipvlan_core.c