mirror of
https://kernel.googlesource.com/pub/scm/linux/kernel/git/torvalds/linux
synced 2025-09-28 19:57:53 +10:00
wireguard: timers: move to using timer_delete_sync
The documentation says that del_timer_sync is obsolete, and code should use the equivalent timer_delete_sync instead, so switch to it. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
f58d0a9b4c
commit
326534e837
@ -234,10 +234,10 @@ void wg_timers_init(struct wg_peer *peer)
|
||||
|
||||
void wg_timers_stop(struct wg_peer *peer)
|
||||
{
|
||||
del_timer_sync(&peer->timer_retransmit_handshake);
|
||||
del_timer_sync(&peer->timer_send_keepalive);
|
||||
del_timer_sync(&peer->timer_new_handshake);
|
||||
del_timer_sync(&peer->timer_zero_key_material);
|
||||
del_timer_sync(&peer->timer_persistent_keepalive);
|
||||
timer_delete_sync(&peer->timer_retransmit_handshake);
|
||||
timer_delete_sync(&peer->timer_send_keepalive);
|
||||
timer_delete_sync(&peer->timer_new_handshake);
|
||||
timer_delete_sync(&peer->timer_zero_key_material);
|
||||
timer_delete_sync(&peer->timer_persistent_keepalive);
|
||||
flush_work(&peer->clear_peer_work);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user