OSDN Git Service

net: core: devlink.c: Use built-in RCU list checking
authorMadhuparna Bhowmik <madhuparnabhowmik10@gmail.com>
Tue, 25 Feb 2020 12:27:45 +0000 (17:57 +0530)
committerDavid S. Miller <davem@davemloft.net>
Thu, 27 Feb 2020 00:59:18 +0000 (16:59 -0800)
commit2eb51c75dcb354f8aef03d7648318b24630632e1
treea8215309b5994be1239a270d11da6459b2d4b302
parent98c5f7d44fef309e692c24c6d71131ee0f0871fb
net: core: devlink.c: Use built-in RCU list checking

list_for_each_entry_rcu() has built-in RCU and lock checking.

Pass cond argument to list_for_each_entry_rcu() to silence
false lockdep warning when CONFIG_PROVE_RCU_LIST is enabled.

The devlink->lock is held when devlink_dpipe_table_find()
is called in non RCU read side section. Therefore, pass struct devlink
to devlink_dpipe_table_find() for lockdep checking.

Signed-off-by: Madhuparna Bhowmik <madhuparnabhowmik10@gmail.com>
Reviewed-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/core/devlink.c