From: Easwar Hariharan <eahariha@linux.microsoft.com>
To: Andrew Morton <akpm@linux-foundation.org>,
Ricardo Ribalda <ribalda@chromium.org>,
Jakub Kicinski <kuba@kernel.org>
Cc: eahariha@linux.microsoft.com,
Julia Lawall <Julia.Lawall@inria.fr>,
Nicolas Palix <nicolas.palix@imag.fr>,
"cocci@inria.fr" <cocci@inria.fr>,
LKML <linux-kernel@vger.kernel.org>
Subject: Re: [cocci] [PATCH] coccinelle: misc: secs_to_jiffies: Implement context and report modes
Date: Tue, 10 Jun 2025 10:49:21 -0700 [thread overview]
Message-ID: <00e40c21-4797-41df-b082-318f474f76ae@linux.microsoft.com> (raw)
In-Reply-To: <20250610174521.12294-1-eahariha@linux.microsoft.com>
On 6/10/2025 10:45 AM, Easwar Hariharan wrote:
> As requested by Ricardo and Jakub, implement report and context modes
> for the secs_to_jiffies Coccinelle script. While here, add the option to
> look for opportunities to use secs_to_jiffies() in headers.
>
> Cc: Andrew Morton <akpm@linux-foundation.org>
> Cc: Jakub Kicinski <kuba@kernel.org>
> Cc: Ricardo Ribalda <ribalda@chromium.org>
> Closes: https://lore.kernel.org/all/20250129-secs_to_jiffles-v1-1-35a5e16b9f03@chromium.org/
> Closes: https://lore.kernel.org/all/20250221162107.409ae333@kernel.org/
> Signed-off-by: Easwar Hariharan <eahariha@linux.microsoft.com>
> ---
> scripts/coccinelle/misc/secs_to_jiffies.cocci | 49 +++++++++++++++++--
> 1 file changed, 44 insertions(+), 5 deletions(-)
>
> diff --git a/scripts/coccinelle/misc/secs_to_jiffies.cocci b/scripts/coccinelle/misc/secs_to_jiffies.cocci
> index 416f348174ca..f3241ce75a7b 100644
> --- a/scripts/coccinelle/misc/secs_to_jiffies.cocci
> +++ b/scripts/coccinelle/misc/secs_to_jiffies.cocci
> @@ -7,26 +7,65 @@
> // Confidence: High
> // Copyright: (C) 2024 Easwar Hariharan, Microsoft
> // Keywords: secs, seconds, jiffies
> -//
> +// Options: --include-headers
>
> virtual patch
> +virtual report
> +virtual context
>
> -@depends on patch@ constant C; @@
> +@pconst depends on patch@ constant C; @@
>
> - msecs_to_jiffies(C * 1000)
> + secs_to_jiffies(C)
>
> -@depends on patch@ constant C; @@
> +@pconstms depends on patch@ constant C; @@
>
> - msecs_to_jiffies(C * MSEC_PER_SEC)
> + secs_to_jiffies(C)
>
> -@depends on patch@ expression E; @@
> +@pexpr depends on patch@ expression E; @@
>
> - msecs_to_jiffies(E * 1000)
> + secs_to_jiffies(E)
>
> -@depends on patch@ expression E; @@
> +@pexprms depends on patch@ expression E; @@
>
> - msecs_to_jiffies(E * MSEC_PER_SEC)
> + secs_to_jiffies(E)
> +
> +@r depends on report && !patch@
> +constant C;
> +expression E;
> +position p;
> +@@
> +
> +(
> + msecs_to_jiffies(C@p * 1000)
> +|
> + msecs_to_jiffies(C@p * MSEC_PER_SEC)
> +|
> + msecs_to_jiffies(E@p * 1000)
> +|
> + msecs_to_jiffies(E@p * MSEC_PER_SEC)
> +)
> +
> +@c depends on context && !patch@
> +constant C;
> +expression E;
> +@@
> +
> +(
> +* msecs_to_jiffies(C * 1000)
> +|
> +* msecs_to_jiffies(C * MSEC_PER_SEC)
> +|
> +* msecs_to_jiffies(E * 1000)
> +|
> +* msecs_to_jiffies(E * MSEC_PER_SEC)
> +)
> +
> +@script:python depends on report@
> +p << r.p;
> +@@
> +
> +coccilib.report.print_report(p[0], "WARNING opportunity for secs_to_jiffies()")
Sorry, I was testing sending this to myself before sending to the list, I've added the mailing lists now.
Thanks,
Easwar (he/him)
WARNING: multiple messages have this Message-ID (diff)
From: Easwar Hariharan <eahariha@linux.microsoft.com>
To: Andrew Morton <akpm@linux-foundation.org>,
Ricardo Ribalda <ribalda@chromium.org>,
Jakub Kicinski <kuba@kernel.org>
Cc: eahariha@linux.microsoft.com,
Julia Lawall <Julia.Lawall@inria.fr>,
Nicolas Palix <nicolas.palix@imag.fr>,
"cocci@inria.fr" <cocci@inria.fr>,
LKML <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] coccinelle: misc: secs_to_jiffies: Implement context and report modes
Date: Tue, 10 Jun 2025 10:49:21 -0700 [thread overview]
Message-ID: <00e40c21-4797-41df-b082-318f474f76ae@linux.microsoft.com> (raw)
In-Reply-To: <20250610174521.12294-1-eahariha@linux.microsoft.com>
On 6/10/2025 10:45 AM, Easwar Hariharan wrote:
> As requested by Ricardo and Jakub, implement report and context modes
> for the secs_to_jiffies Coccinelle script. While here, add the option to
> look for opportunities to use secs_to_jiffies() in headers.
>
> Cc: Andrew Morton <akpm@linux-foundation.org>
> Cc: Jakub Kicinski <kuba@kernel.org>
> Cc: Ricardo Ribalda <ribalda@chromium.org>
> Closes: https://lore.kernel.org/all/20250129-secs_to_jiffles-v1-1-35a5e16b9f03@chromium.org/
> Closes: https://lore.kernel.org/all/20250221162107.409ae333@kernel.org/
> Signed-off-by: Easwar Hariharan <eahariha@linux.microsoft.com>
> ---
> scripts/coccinelle/misc/secs_to_jiffies.cocci | 49 +++++++++++++++++--
> 1 file changed, 44 insertions(+), 5 deletions(-)
>
> diff --git a/scripts/coccinelle/misc/secs_to_jiffies.cocci b/scripts/coccinelle/misc/secs_to_jiffies.cocci
> index 416f348174ca..f3241ce75a7b 100644
> --- a/scripts/coccinelle/misc/secs_to_jiffies.cocci
> +++ b/scripts/coccinelle/misc/secs_to_jiffies.cocci
> @@ -7,26 +7,65 @@
> // Confidence: High
> // Copyright: (C) 2024 Easwar Hariharan, Microsoft
> // Keywords: secs, seconds, jiffies
> -//
> +// Options: --include-headers
>
> virtual patch
> +virtual report
> +virtual context
>
> -@depends on patch@ constant C; @@
> +@pconst depends on patch@ constant C; @@
>
> - msecs_to_jiffies(C * 1000)
> + secs_to_jiffies(C)
>
> -@depends on patch@ constant C; @@
> +@pconstms depends on patch@ constant C; @@
>
> - msecs_to_jiffies(C * MSEC_PER_SEC)
> + secs_to_jiffies(C)
>
> -@depends on patch@ expression E; @@
> +@pexpr depends on patch@ expression E; @@
>
> - msecs_to_jiffies(E * 1000)
> + secs_to_jiffies(E)
>
> -@depends on patch@ expression E; @@
> +@pexprms depends on patch@ expression E; @@
>
> - msecs_to_jiffies(E * MSEC_PER_SEC)
> + secs_to_jiffies(E)
> +
> +@r depends on report && !patch@
> +constant C;
> +expression E;
> +position p;
> +@@
> +
> +(
> + msecs_to_jiffies(C@p * 1000)
> +|
> + msecs_to_jiffies(C@p * MSEC_PER_SEC)
> +|
> + msecs_to_jiffies(E@p * 1000)
> +|
> + msecs_to_jiffies(E@p * MSEC_PER_SEC)
> +)
> +
> +@c depends on context && !patch@
> +constant C;
> +expression E;
> +@@
> +
> +(
> +* msecs_to_jiffies(C * 1000)
> +|
> +* msecs_to_jiffies(C * MSEC_PER_SEC)
> +|
> +* msecs_to_jiffies(E * 1000)
> +|
> +* msecs_to_jiffies(E * MSEC_PER_SEC)
> +)
> +
> +@script:python depends on report@
> +p << r.p;
> +@@
> +
> +coccilib.report.print_report(p[0], "WARNING opportunity for secs_to_jiffies()")
Sorry, I was testing sending this to myself before sending to the list, I've added the mailing lists now.
Thanks,
Easwar (he/him)
next parent reply other threads:[~2025-06-12 13:49 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20250610174521.12294-1-eahariha@linux.microsoft.com>
2025-06-10 17:49 ` Easwar Hariharan [this message]
2025-06-10 17:49 ` [PATCH] coccinelle: misc: secs_to_jiffies: Implement context and report modes Easwar Hariharan
2025-06-11 7:56 ` [cocci] " Ricardo Ribalda
2025-06-11 7:56 ` Ricardo Ribalda
2025-06-12 16:08 ` [cocci] [PATCH v?] " Markus Elfring
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=00e40c21-4797-41df-b082-318f474f76ae@linux.microsoft.com \
--to=eahariha@linux.microsoft.com \
--cc=Julia.Lawall@inria.fr \
--cc=akpm@linux-foundation.org \
--cc=cocci@inria.fr \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=nicolas.palix@imag.fr \
--cc=ribalda@chromium.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.