Re: [PATCH 2/2] ipmr: Add lockdep expression to ipmr_for_each_table macro

From: David Miller
Date: Mon Feb 24 2020 - 16:18:04 EST


From: Amol Grover <frextrite@xxxxxxxxx>
Date: Sat, 22 Feb 2020 12:08:36 +0530

> ipmr_for_each_table() uses list_for_each_entry_rcu() for
> traversing outside of an RCU read-side critical section but
> under the protection of pernet_ops_rwsem. Hence add the
> corresponding lockdep expression to silence the following
> false-positive warning at boot:
>
> [ 0.645292] =============================
> [ 0.645294] WARNING: suspicious RCU usage
> [ 0.645296] 5.5.4-stable #17 Not tainted
> [ 0.645297] -----------------------------
> [ 0.645299] net/ipv4/ipmr.c:136 RCU-list traversed in non-reader section!!
>
> Signed-off-by: Amol Grover <frextrite@xxxxxxxxx>

This patch series causes build problems, please fix and resubmit the entire
series:

[davem@localhost net-next]$ make net/ipv4/ipmr.o
CALL scripts/checksyscalls.sh
CALL scripts/atomic/check-atomics.sh
DESCEND objtool
CC net/ipv4/ipmr.o
In file included from ./include/linux/rculist.h:11,
from ./include/linux/pid.h:5,
from ./include/linux/sched.h:14,
from ./include/linux/uaccess.h:5,
from net/ipv4/ipmr.c:24:
net/ipv4/ipmr.c: In function ʽipmr_get_tableʼ:
./include/linux/rculist.h:63:25: warning: suggest parentheses around ʽ&&ʼ within ʽ||ʼ [-Wparentheses]
RCU_LOCKDEP_WARN(!cond && !rcu_read_lock_any_held(), \
./include/linux/rcupdate.h:263:52: note: in definition of macro ʽRCU_LOCKDEP_WARNʼ
if (debug_lockdep_rcu_enabled() && !__warned && (c)) { \
^
./include/linux/rculist.h:381:7: note: in expansion of macro ʽ__list_check_rcuʼ
for (__list_check_rcu(dummy, ## cond, 0), \
^~~~~~~~~~~~~~~~
net/ipv4/ipmr.c:113:2: note: in expansion of macro ʽlist_for_each_entry_rcuʼ
list_for_each_entry_rcu(mrt, &net->ipv4.mr_tables, list, \
^~~~~~~~~~~~~~~~~~~~~~~
net/ipv4/ipmr.c:138:2: note: in expansion of macro ʽipmr_for_each_tableʼ
ipmr_for_each_table(mrt, net) {
^~~~~~~~~~~~~~~~~~~