aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/noise.c
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2017-11-02 16:07:26 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2017-11-02 20:48:06 +0100
commita51e1960de4130e80b2d31769107434045ec78e7 (patch)
tree7e49ee85449d0582664849c6d548f1785a4a30d9 /src/noise.c
parentKconfig: remove trailing whitespace (diff)
downloadwireguard-monolithic-historical-a51e1960de4130e80b2d31769107434045ec78e7.tar.xz
wireguard-monolithic-historical-a51e1960de4130e80b2d31769107434045ec78e7.zip
global: revert checkpatch.pl changes
These changes were suggested by checkpatch.pl, but actually cause big problems depending on the options. Revert.
Diffstat (limited to 'src/noise.c')
-rw-r--r--src/noise.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/noise.c b/src/noise.c
index a0bea29..6ce9b78 100644
--- a/src/noise.c
+++ b/src/noise.c
@@ -118,7 +118,7 @@ void noise_keypair_put(struct noise_keypair *keypair)
struct noise_keypair *noise_keypair_get(struct noise_keypair *keypair)
{
- RCU_LOCKDEP_WARN(!rcu_read_lock_bh_held(), "Calling " __func__ " without holding the RCU BH read lock");
+ RCU_LOCKDEP_WARN(!rcu_read_lock_bh_held(), "Taking noise keypair reference without holding the RCU BH read lock");
if (unlikely(!keypair || !kref_get_unless_zero(&keypair->refcount)))
return NULL;
return keypair;