aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/device.c
diff options
context:
space:
mode:
authorAntonio Quartulli <a@unstable.cc>2020-12-10 09:55:05 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2020-12-21 12:35:43 +0100
commit27300724823f7ecce3fcbcee8e567a80d16f2b4c (patch)
treef53650c4fab9117807467d2ce41f78965ec51ef2 /src/device.c
parentsimd: detect -rt kernels >= 5.4 (diff)
downloadwireguard-linux-compat-27300724823f7ecce3fcbcee8e567a80d16f2b4c.tar.xz
wireguard-linux-compat-27300724823f7ecce3fcbcee8e567a80d16f2b4c.zip
global: avoid double unlikely() notation when using IS_ERR()
The definition of IS_ERR() already applies the unlikely() notation when checking the error status of the passed pointer. For this reason there is no need to have the same notation outside of IS_ERR() itself. Clean up code by removing redundant notation. Signed-off-by: Antonio Quartulli <a@unstable.cc> Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'src/device.c')
-rw-r--r--src/device.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/device.c b/src/device.c
index 1155783..c673446 100644
--- a/src/device.c
+++ b/src/device.c
@@ -165,7 +165,7 @@ static netdev_tx_t wg_xmit(struct sk_buff *skb, struct net_device *dev)
} else {
struct sk_buff *segs = skb_gso_segment(skb, 0);
- if (unlikely(IS_ERR(segs))) {
+ if (IS_ERR(segs)) {
ret = PTR_ERR(segs);
goto err_peer;
}