diff options
author | Johannes Berg <johannes.berg@intel.com> | 2024-03-25 18:39:08 +0100 |
---|---|---|
committer | Uladzislau Rezki (Sony) <urezki@gmail.com> | 2024-04-15 19:43:48 +0200 |
commit | 80cd613a9ae091dbf52e27a409d58da988ffc8f3 (patch) | |
tree | 7345fe442e147dea55e07efc77ef5efec0010fc1 /kernel/rcu/tree_stall.h | |
parent | rcu: Remove redundant CONFIG_PROVE_RCU #if condition (diff) | |
download | linux-80cd613a9ae091dbf52e27a409d58da988ffc8f3.tar.xz linux-80cd613a9ae091dbf52e27a409d58da988ffc8f3.zip |
rcu: Mollify sparse with RCU guard
When using "guard(rcu)();" sparse will complain, because even
though it now understands the cleanup attribute, it doesn't
evaluate the calls from it at function exit, and thus doesn't
count the context correctly.
Given that there's a conditional in the resulting code:
static inline void class_rcu_destructor(class_rcu_t *_T)
{
if (_T->lock) {
rcu_read_unlock();
}
}
it seems that even trying to teach sparse to evalulate the
cleanup attribute function it'd still be difficult to really
make it understand the full context here.
Suppress the sparse warning by just releasing the context in
the acquisition part of the function, after all we know it's
safe with the guard, that's the whole point of it.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Reviewed-by: Boqun Feng <boqun.feng@gmail.com>
Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
Signed-off-by: Uladzislau Rezki (Sony) <urezki@gmail.com>
Diffstat (limited to 'kernel/rcu/tree_stall.h')
0 files changed, 0 insertions, 0 deletions