[PATCH net-next v4 1/2] gve: Convert timeouts to secs_to_jiffies()
Praveen Kaligineedi
pkaligineedi at google.com
Thu Dec 12 09:38:03 PST 2024
On Thu, Dec 12, 2024 at 9:33 AM Easwar Hariharan
<eahariha at linux.microsoft.com> 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:
>
> @@ constant C; @@
>
> - msecs_to_jiffies(C * 1000)
> + secs_to_jiffies(C)
>
> @@ constant C; @@
>
> - msecs_to_jiffies(C * MSEC_PER_SEC)
> + secs_to_jiffies(C)
>
> Signed-off-by: Easwar Hariharan <eahariha at linux.microsoft.com>
Reviewed-by: Praveen Kaligineedi <pkaligineedi at google.com>
More information about the ath11k
mailing list