hlist_for_each_entry_rcu already does not do any tracing. This series removes the notrace variant of it, so let us just use the regular API.
In a future patch, we can also remove the hash_for_each_possible_rcu_notrace API that this patch touches. Signed-off-by: Joel Fernandes (Google) <j...@joelfernandes.org> --- include/linux/hashtable.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/hashtable.h b/include/linux/hashtable.h index 417d2c4bc60d..47fa7b673c1b 100644 --- a/include/linux/hashtable.h +++ b/include/linux/hashtable.h @@ -189,7 +189,7 @@ static inline void hash_del_rcu(struct hlist_node *node) * not do any RCU debugging or tracing. */ #define hash_for_each_possible_rcu_notrace(name, obj, member, key) \ - hlist_for_each_entry_rcu_notrace(obj, \ + hlist_for_each_entry_rcu(obj, \ &name[hash_min(key, HASH_BITS(name))], member) /** -- 2.22.0.rc1.257.g3120a18244-goog