diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2017-11-03 15:21:17 +0100 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2017-11-03 15:21:17 +0100 |
commit | 0d74fdc37a734eafc907c2c5a52d6aef2d588e9b (patch) | |
tree | bfb34d31caa91483a576e6db76b30d66a5027f1a /src/device.c | |
parent | 88ed7d0377418cf27681c34c18e7dc1dbef21296 (diff) |
device: please lockdep
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'src/device.c')
-rw-r--r-- | src/device.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/device.c b/src/device.c index 8195611..efd0340 100644 --- a/src/device.c +++ b/src/device.c @@ -204,10 +204,10 @@ static void destruct(struct net_device *dev) { struct wireguard_device *wg = netdev_priv(dev); - mutex_lock(&wg->device_update_lock); rtnl_lock(); list_del(&wg->device_list); rtnl_unlock(); + mutex_lock(&wg->device_update_lock); peer_remove_all(wg); /* The final references are cleared in the below calls to destroy_workqueue. */ wg->incoming_port = 0; destroy_workqueue(wg->handshake_receive_wq); |