aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2021-06-04 17:24:57 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2021-06-04 17:49:34 +0200
commitfd7a4621a598c63708285a8c36c5b0835173f896 (patch)
treed89d0032cbeae32eb425fd17d77bb543f952889d
parentallowedips: free empty intermediate nodes when removing single node (diff)
downloadwireguard-linux-compat-fd7a4621a598c63708285a8c36c5b0835173f896.tar.xz
wireguard-linux-compat-fd7a4621a598c63708285a8c36c5b0835173f896.zip
allowedips: add missing __rcu annotation to satisfy sparse
A __rcu annotation got lost during refactoring, which caused sparse to become enraged. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
-rw-r--r--src/allowedips.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/allowedips.c b/src/allowedips.c
index b7197e8..9a4c8ff 100644
--- a/src/allowedips.c
+++ b/src/allowedips.c
@@ -163,7 +163,7 @@ static bool node_placement(struct allowedips_node __rcu *trie, const u8 *key,
return exact;
}
-static inline void connect_node(struct allowedips_node **parent, u8 bit, struct allowedips_node *node)
+static inline void connect_node(struct allowedips_node __rcu **parent, u8 bit, struct allowedips_node *node)
{
node->parent_bit_packed = (unsigned long)parent | bit;
rcu_assign_pointer(*parent, node);