aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/peer.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/peer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/peer.c b/src/peer.c
index e1bd99c..6e6ccda 100644
--- a/src/peer.c
+++ b/src/peer.c
@@ -44,9 +44,9 @@ struct wireguard_peer *peer_create(struct wireguard_device *wg, const u8 public_
struct wireguard_peer *peer_get(struct wireguard_peer *peer)
{
RCU_LOCKDEP_WARN(!rcu_read_lock_held(), "Calling peer_get without holding the RCU read lock.");
- if (!peer)
+ if (unlikely(!peer))
return NULL;
- if (!kref_get_unless_zero(&peer->refcount))
+ if (unlikely(!kref_get_unless_zero(&peer->refcount)))
return NULL;
return peer;
}