Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ipvs: Rename del_timer in comment in ip_vs_conn_expire_now()

Commit 8fa7292fee5c ("treewide: Switch/rename to timer_delete[_sync]()")
switched del_timer to timer_delete, but did not modify the comment for
ip_vs_conn_expire_now(). Now fix it.

Signed-off-by: WangYuli <wangyuli@uniontech.com>
Acked-by: Julian Anastasov <ja@ssi.bg>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>

authored by

WangYuli and committed by
Pablo Neira Ayuso
bfabc4f7 ba71a6e5

+1 -1
+1 -1
net/netfilter/ipvs/ip_vs_conn.c
··· 926 926 void ip_vs_conn_expire_now(struct ip_vs_conn *cp) 927 927 { 928 928 /* Using mod_timer_pending will ensure the timer is not 929 - * modified after the final del_timer in ip_vs_conn_expire. 929 + * modified after the final timer_delete in ip_vs_conn_expire. 930 930 */ 931 931 if (timer_pending(&cp->timer) && 932 932 time_after(cp->timer.expires, jiffies))