* [PATCH net-next v2 0/2] Converge on using secs_to_jiffies() part two
@ 2025-07-07 22:03 Easwar Hariharan
2025-07-07 22:03 ` [PATCH net-next v2 1/2] net/smc: convert timeouts to secs_to_jiffies() Easwar Hariharan
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Easwar Hariharan @ 2025-07-07 22:03 UTC (permalink / raw)
To: D. Wythe, Dust Li, Sidraya Jayagond, Wenjia Zhang,
Mahanta Jambigi, Tony Lu, Wen Gu, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Simon Horman, David Ahern
Cc: Andrew Morton, linux-rdma, linux-s390, netdev, linux-kernel,
Easwar Hariharan
This is the second series (part 1*) that converts users of msecs_to_jiffies() that
either use the multiply pattern of either of:
- msecs_to_jiffies(N*1000) or
- msecs_to_jiffies(N*MSEC_PER_SEC)
where N is a constant or an expression, to avoid the multiplication.
The conversion is made with Coccinelle with the secs_to_jiffies() script
in scripts/coccinelle/misc. Attention is paid to what the best change
can be rather than restricting to what the tool provides.
This series is based on net-next.
Signed-off-by: Easwar Hariharan <eahariha@linux.microsoft.com>
* https://lore.kernel.org/all/20241212-netdev-converge-secs-to-jiffies-v4-0-6dac97a6d6ab@linux.microsoft.com/
---
Changes in v2:
- Implemented report mode for the secs_to_jiffies coccicheck script (Jakub), patch has been queued by Andrew Morton in mm-nonmm-unstable
- Link: https://web.git.kernel.org/pub/scm/linux/kernel/git/akpm/mm.git/commit/?h=mm-nonmm-unstable&id=a01189aaf16e8d8d619067939ea21ea97a279864
- Drop change to netfilter already merged upstream: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=f4293c2baf6faa5f1a1638bcce698ed88d0d396e
- Link to v1: https://lore.kernel.org/r/20250219-netdev-secs-to-jiffies-part-2-v1-0-c484cc63611b@linux.microsoft.com
---
Easwar Hariharan (2):
net/smc: convert timeouts to secs_to_jiffies()
net: ipconfig: convert timeouts to secs_to_jiffies()
net/ipv4/ipconfig.c | 6 +++---
net/smc/af_smc.c | 3 +--
2 files changed, 4 insertions(+), 5 deletions(-)
---
base-commit: 6b9fd8857b9fc4dd62e7cd300327f0e48dd76642
change-id: 20250128-netdev-secs-to-jiffies-part-2-8f0d2535096a
Best regards,
--
Easwar Hariharan <eahariha@linux.microsoft.com>
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH net-next v2 1/2] net/smc: convert timeouts to secs_to_jiffies()
2025-07-07 22:03 [PATCH net-next v2 0/2] Converge on using secs_to_jiffies() part two Easwar Hariharan
@ 2025-07-07 22:03 ` Easwar Hariharan
2025-07-08 2:01 ` Dust Li
` (2 more replies)
2025-07-07 22:03 ` [PATCH net-next v2 2/2] net: ipconfig: " Easwar Hariharan
2025-07-10 2:40 ` [PATCH net-next v2 0/2] Converge on using secs_to_jiffies() part two patchwork-bot+netdevbpf
2 siblings, 3 replies; 7+ messages in thread
From: Easwar Hariharan @ 2025-07-07 22:03 UTC (permalink / raw)
To: D. Wythe, Dust Li, Sidraya Jayagond, Wenjia Zhang,
Mahanta Jambigi, Tony Lu, Wen Gu, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Simon Horman, David Ahern
Cc: Andrew Morton, linux-rdma, linux-s390, netdev, linux-kernel,
Easwar Hariharan
Commit b35108a51cf7 ("jiffies: Define secs_to_jiffies()") introduced
secs_to_jiffies(). As the value here is a multiple of 1000, use
secs_to_jiffies() instead of msecs_to_jiffies to avoid the multiplication.
This is converted using scripts/coccinelle/misc/secs_to_jiffies.cocci with
the following Coccinelle rules:
@depends on patch@
expression E;
@@
-msecs_to_jiffies(E * 1000)
+secs_to_jiffies(E)
-msecs_to_jiffies(E * MSEC_PER_SEC)
+secs_to_jiffies(E)
Signed-off-by: Easwar Hariharan <eahariha@linux.microsoft.com>
---
net/smc/af_smc.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/net/smc/af_smc.c b/net/smc/af_smc.c
index 8d56e4db63e041724f156aa3ab30bab745a15bad..bdbaad17f98012c10d0bbc721c80d4c5ae4fb220 100644
--- a/net/smc/af_smc.c
+++ b/net/smc/af_smc.c
@@ -2735,8 +2735,7 @@ int smc_accept(struct socket *sock, struct socket *new_sock,
if (lsmc->sockopt_defer_accept && !(arg->flags & O_NONBLOCK)) {
/* wait till data arrives on the socket */
- timeo = msecs_to_jiffies(lsmc->sockopt_defer_accept *
- MSEC_PER_SEC);
+ timeo = secs_to_jiffies(lsmc->sockopt_defer_accept);
if (smc_sk(nsk)->use_fallback) {
struct sock *clcsk = smc_sk(nsk)->clcsock->sk;
--
2.43.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH net-next v2 2/2] net: ipconfig: convert timeouts to secs_to_jiffies()
2025-07-07 22:03 [PATCH net-next v2 0/2] Converge on using secs_to_jiffies() part two Easwar Hariharan
2025-07-07 22:03 ` [PATCH net-next v2 1/2] net/smc: convert timeouts to secs_to_jiffies() Easwar Hariharan
@ 2025-07-07 22:03 ` Easwar Hariharan
2025-07-10 2:40 ` [PATCH net-next v2 0/2] Converge on using secs_to_jiffies() part two patchwork-bot+netdevbpf
2 siblings, 0 replies; 7+ messages in thread
From: Easwar Hariharan @ 2025-07-07 22:03 UTC (permalink / raw)
To: D. Wythe, Dust Li, Sidraya Jayagond, Wenjia Zhang,
Mahanta Jambigi, Tony Lu, Wen Gu, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Simon Horman, David Ahern
Cc: Andrew Morton, linux-rdma, linux-s390, netdev, linux-kernel,
Easwar Hariharan
Commit b35108a51cf7 ("jiffies: Define secs_to_jiffies()") introduced
secs_to_jiffies(). As the value here is a multiple of 1000, use
secs_to_jiffies() instead of msecs_to_jiffies to avoid the multiplication.
This is converted using scripts/coccinelle/misc/secs_to_jiffies.cocci with
the following Coccinelle rules:
@depends on patch@
expression E;
@@
-msecs_to_jiffies(E * 1000)
+secs_to_jiffies(E)
-msecs_to_jiffies(E * MSEC_PER_SEC)
+secs_to_jiffies(E)
While here, manually convert a couple timeouts denominated in seconds
Signed-off-by: Easwar Hariharan <eahariha@linux.microsoft.com>
---
net/ipv4/ipconfig.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/net/ipv4/ipconfig.c b/net/ipv4/ipconfig.c
index c56b6fe6f0d771e9275bb66c159d9abb330bdf4c..22a7889876c1cf7d5233fe8a0ee12e134b20c1cd 100644
--- a/net/ipv4/ipconfig.c
+++ b/net/ipv4/ipconfig.c
@@ -274,9 +274,9 @@ static int __init ic_open_devs(void)
/* wait for a carrier on at least one device */
start = jiffies;
- next_msg = start + msecs_to_jiffies(20000);
+ next_msg = start + secs_to_jiffies(20);
while (time_before(jiffies, start +
- msecs_to_jiffies(carrier_timeout * 1000))) {
+ secs_to_jiffies(carrier_timeout))) {
int wait, elapsed;
rtnl_lock();
@@ -295,7 +295,7 @@ static int __init ic_open_devs(void)
elapsed = jiffies_to_msecs(jiffies - start);
wait = (carrier_timeout * 1000 - elapsed + 500) / 1000;
pr_info("Waiting up to %d more seconds for network.\n", wait);
- next_msg = jiffies + msecs_to_jiffies(20000);
+ next_msg = jiffies + secs_to_jiffies(20);
}
have_carrier:
--
2.43.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH net-next v2 1/2] net/smc: convert timeouts to secs_to_jiffies()
2025-07-07 22:03 ` [PATCH net-next v2 1/2] net/smc: convert timeouts to secs_to_jiffies() Easwar Hariharan
@ 2025-07-08 2:01 ` Dust Li
2025-07-08 6:19 ` Sidraya Jayagond
2025-07-08 6:19 ` Guangguan Wang
2 siblings, 0 replies; 7+ messages in thread
From: Dust Li @ 2025-07-08 2:01 UTC (permalink / raw)
To: Easwar Hariharan, D. Wythe, Sidraya Jayagond, Wenjia Zhang,
Mahanta Jambigi, Tony Lu, Wen Gu, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Simon Horman, David Ahern
Cc: Andrew Morton, linux-rdma, linux-s390, netdev, linux-kernel
On 2025-07-07 15:03:32, Easwar Hariharan wrote:
>Commit b35108a51cf7 ("jiffies: Define secs_to_jiffies()") introduced
>secs_to_jiffies(). As the value here is a multiple of 1000, use
>secs_to_jiffies() instead of msecs_to_jiffies to avoid the multiplication.
>
>This is converted using scripts/coccinelle/misc/secs_to_jiffies.cocci with
>the following Coccinelle rules:
>
>@depends on patch@
>expression E;
>@@
>
>-msecs_to_jiffies(E * 1000)
>+secs_to_jiffies(E)
>
>-msecs_to_jiffies(E * MSEC_PER_SEC)
>+secs_to_jiffies(E)
>
>Signed-off-by: Easwar Hariharan <eahariha@linux.microsoft.com>
Reviewed-by: Dust Li <dust.li@linux.alibaba.com>
Best regards,
Dust
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH net-next v2 1/2] net/smc: convert timeouts to secs_to_jiffies()
2025-07-07 22:03 ` [PATCH net-next v2 1/2] net/smc: convert timeouts to secs_to_jiffies() Easwar Hariharan
2025-07-08 2:01 ` Dust Li
@ 2025-07-08 6:19 ` Sidraya Jayagond
2025-07-08 6:19 ` Guangguan Wang
2 siblings, 0 replies; 7+ messages in thread
From: Sidraya Jayagond @ 2025-07-08 6:19 UTC (permalink / raw)
To: Easwar Hariharan, D. Wythe, Dust Li, Wenjia Zhang,
Mahanta Jambigi, Tony Lu, Wen Gu, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Simon Horman, David Ahern
Cc: Andrew Morton, linux-rdma, linux-s390, netdev, linux-kernel
On 08/07/25 3:33 am, Easwar Hariharan wrote:
> Commit b35108a51cf7 ("jiffies: Define secs_to_jiffies()") introduced
> secs_to_jiffies(). As the value here is a multiple of 1000, use
> secs_to_jiffies() instead of msecs_to_jiffies to avoid the multiplication.
>
> This is converted using scripts/coccinelle/misc/secs_to_jiffies.cocci with
> the following Coccinelle rules:
>
> @depends on patch@
> expression E;
> @@
>
> -msecs_to_jiffies(E * 1000)
> +secs_to_jiffies(E)
>
> -msecs_to_jiffies(E * MSEC_PER_SEC)
> +secs_to_jiffies(E)
>
> Signed-off-by: Easwar Hariharan <eahariha@linux.microsoft.com>
> ---
> net/smc/af_smc.c | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/net/smc/af_smc.c b/net/smc/af_smc.c
> index 8d56e4db63e041724f156aa3ab30bab745a15bad..bdbaad17f98012c10d0bbc721c80d4c5ae4fb220 100644
> --- a/net/smc/af_smc.c
> +++ b/net/smc/af_smc.c
> @@ -2735,8 +2735,7 @@ int smc_accept(struct socket *sock, struct socket *new_sock,
>
> if (lsmc->sockopt_defer_accept && !(arg->flags & O_NONBLOCK)) {
> /* wait till data arrives on the socket */
> - timeo = msecs_to_jiffies(lsmc->sockopt_defer_accept *
> - MSEC_PER_SEC);
> + timeo = secs_to_jiffies(lsmc->sockopt_defer_accept);
> if (smc_sk(nsk)->use_fallback) {
> struct sock *clcsk = smc_sk(nsk)->clcsock->sk;
>
>
Reviewed-by: Sidraya Jayagond <sidraya@linux.ibm.com>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH net-next v2 1/2] net/smc: convert timeouts to secs_to_jiffies()
2025-07-07 22:03 ` [PATCH net-next v2 1/2] net/smc: convert timeouts to secs_to_jiffies() Easwar Hariharan
2025-07-08 2:01 ` Dust Li
2025-07-08 6:19 ` Sidraya Jayagond
@ 2025-07-08 6:19 ` Guangguan Wang
2 siblings, 0 replies; 7+ messages in thread
From: Guangguan Wang @ 2025-07-08 6:19 UTC (permalink / raw)
To: Easwar Hariharan, D. Wythe, Dust Li, Sidraya Jayagond,
Wenjia Zhang, Mahanta Jambigi, Tony Lu, Wen Gu, David S. Miller,
Eric Dumazet, Jakub Kicinski, Paolo Abeni, Simon Horman,
David Ahern
Cc: Andrew Morton, linux-rdma, linux-s390, netdev, linux-kernel
在 2025/7/8 06:03, Easwar Hariharan 写道:
> Commit b35108a51cf7 ("jiffies: Define secs_to_jiffies()") introduced
> secs_to_jiffies(). As the value here is a multiple of 1000, use
> secs_to_jiffies() instead of msecs_to_jiffies to avoid the multiplication.
>
> This is converted using scripts/coccinelle/misc/secs_to_jiffies.cocci with
> the following Coccinelle rules:
>
> @depends on patch@
> expression E;
> @@
>
> -msecs_to_jiffies(E * 1000)
> +secs_to_jiffies(E)
>
> -msecs_to_jiffies(E * MSEC_PER_SEC)
> +secs_to_jiffies(E)
>
> Signed-off-by: Easwar Hariharan <eahariha@linux.microsoft.com>
> ---
> net/smc/af_smc.c | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/net/smc/af_smc.c b/net/smc/af_smc.c
> index 8d56e4db63e041724f156aa3ab30bab745a15bad..bdbaad17f98012c10d0bbc721c80d4c5ae4fb220 100644
> --- a/net/smc/af_smc.c
> +++ b/net/smc/af_smc.c
> @@ -2735,8 +2735,7 @@ int smc_accept(struct socket *sock, struct socket *new_sock,
>
> if (lsmc->sockopt_defer_accept && !(arg->flags & O_NONBLOCK)) {
> /* wait till data arrives on the socket */
> - timeo = msecs_to_jiffies(lsmc->sockopt_defer_accept *
> - MSEC_PER_SEC);
> + timeo = secs_to_jiffies(lsmc->sockopt_defer_accept);
> if (smc_sk(nsk)->use_fallback) {
> struct sock *clcsk = smc_sk(nsk)->clcsock->sk;
>
>
LGTM.
Reviewed-by: Guangguan Wang <guangguan.wang@linux.alibaba.com>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH net-next v2 0/2] Converge on using secs_to_jiffies() part two
2025-07-07 22:03 [PATCH net-next v2 0/2] Converge on using secs_to_jiffies() part two Easwar Hariharan
2025-07-07 22:03 ` [PATCH net-next v2 1/2] net/smc: convert timeouts to secs_to_jiffies() Easwar Hariharan
2025-07-07 22:03 ` [PATCH net-next v2 2/2] net: ipconfig: " Easwar Hariharan
@ 2025-07-10 2:40 ` patchwork-bot+netdevbpf
2 siblings, 0 replies; 7+ messages in thread
From: patchwork-bot+netdevbpf @ 2025-07-10 2:40 UTC (permalink / raw)
To: Easwar Hariharan
Cc: alibuda, dust.li, sidraya, wenjia, mjambigi, tonylu, guwen, davem,
edumazet, kuba, pabeni, horms, dsahern, akpm, linux-rdma,
linux-s390, netdev, linux-kernel
Hello:
This series was applied to netdev/net-next.git (main)
by Jakub Kicinski <kuba@kernel.org>:
On Mon, 07 Jul 2025 15:03:31 -0700 you wrote:
> This is the second series (part 1*) that converts users of msecs_to_jiffies() that
> either use the multiply pattern of either of:
> - msecs_to_jiffies(N*1000) or
> - msecs_to_jiffies(N*MSEC_PER_SEC)
>
> where N is a constant or an expression, to avoid the multiplication.
>
> [...]
Here is the summary with links:
- [net-next,v2,1/2] net/smc: convert timeouts to secs_to_jiffies()
https://git.kernel.org/netdev/net-next/c/4814f9110ec6
- [net-next,v2,2/2] net: ipconfig: convert timeouts to secs_to_jiffies()
https://git.kernel.org/netdev/net-next/c/31326d98416e
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2025-07-10 2:39 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-07 22:03 [PATCH net-next v2 0/2] Converge on using secs_to_jiffies() part two Easwar Hariharan
2025-07-07 22:03 ` [PATCH net-next v2 1/2] net/smc: convert timeouts to secs_to_jiffies() Easwar Hariharan
2025-07-08 2:01 ` Dust Li
2025-07-08 6:19 ` Sidraya Jayagond
2025-07-08 6:19 ` Guangguan Wang
2025-07-07 22:03 ` [PATCH net-next v2 2/2] net: ipconfig: " Easwar Hariharan
2025-07-10 2:40 ` [PATCH net-next v2 0/2] Converge on using secs_to_jiffies() part two patchwork-bot+netdevbpf
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).