All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH RESEND] ipvs: ip_vs_conn_expire_now: Rename del_timer in comment
@ 2025-07-04  8:35 WangYuli
  2025-07-04  9:52 ` Julian Anastasov
  2025-07-22  3:25 ` Pablo Neira Ayuso
  0 siblings, 2 replies; 4+ messages in thread
From: WangYuli @ 2025-07-04  8:35 UTC (permalink / raw)
  To: horms, ja, pablo, kadlec, davem, edumazet, kuba, pabeni
  Cc: netdev, lvs-devel, netfilter-devel, coreteam, linux-kernel,
	zhanjun, niecheng1, guanwentao, wangyuli, WangYuli

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>
---
 net/netfilter/ipvs/ip_vs_conn.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net/netfilter/ipvs/ip_vs_conn.c b/net/netfilter/ipvs/ip_vs_conn.c
index 44b2ad695c15..965f3c8e5089 100644
--- a/net/netfilter/ipvs/ip_vs_conn.c
+++ b/net/netfilter/ipvs/ip_vs_conn.c
@@ -926,7 +926,7 @@ static void ip_vs_conn_expire(struct timer_list *t)
 void ip_vs_conn_expire_now(struct ip_vs_conn *cp)
 {
 	/* Using mod_timer_pending will ensure the timer is not
-	 * modified after the final del_timer in ip_vs_conn_expire.
+	 * modified after the final timer_delete in ip_vs_conn_expire.
 	 */
 	if (timer_pending(&cp->timer) &&
 	    time_after(cp->timer.expires, jiffies))
-- 
2.50.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2025-07-22  8:06 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-04  8:35 [PATCH RESEND] ipvs: ip_vs_conn_expire_now: Rename del_timer in comment WangYuli
2025-07-04  9:52 ` Julian Anastasov
2025-07-22  3:25 ` Pablo Neira Ayuso
2025-07-22  8:05   ` WangYuli

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.