From e0ee7f49e208e6ad929830f37a8f04d7d7331144 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=96=E7=95=8C?= Date: Sat, 18 May 2024 13:20:31 +0800 Subject: [PATCH] Remove disallowed linkname usages --- common/control/tcp_keep_alive_linux.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/common/control/tcp_keep_alive_linux.go b/common/control/tcp_keep_alive_linux.go index 7c84a67..bede11a 100644 --- a/common/control/tcp_keep_alive_linux.go +++ b/common/control/tcp_keep_alive_linux.go @@ -25,5 +25,6 @@ func SetKeepAlivePeriod(idle time.Duration, interval time.Duration) Func { } } -//go:linkname roundDurationUp net.roundDurationUp -func roundDurationUp(d time.Duration, to time.Duration) time.Duration +func roundDurationUp(d time.Duration, to time.Duration) time.Duration { + return (d + to - 1) / to +}