From: "Glen Choo via GitGitGadget" <gitgitgadget@gmail.com>
To: git@vger.kernel.org
Cc: "Taylor Blau" <me@ttaylorr.com>,
"Ævar Arnfjörð Bjarmason" <avarab@gmail.com>,
"Elijah Newren" <newren@gmail.com>,
"SZEDER Gábor" <szeder.dev@gmail.com>,
"Glen Choo" <chooglen@google.com>
Subject: [PATCH v2 0/2] cocci: codify authoring and reviewing practices
Date: Thu, 27 Apr 2023 22:22:21 +0000 [thread overview]
Message-ID: <pull.1495.v2.git.git.1682634143.gitgitgadget@gmail.com> (raw)
In-Reply-To: <pull.1495.git.git.1681329955.gitgitgadget@gmail.com>
Thanks for the input on v1, all :)
I've tried to capture all of the discussion in some form. AFAICT, the result
is quite similar to what we are already doing, so it might not be very
helpful to folks who have already worked with Coccinelle, but it should
hopefully be useful to newcomers.
I suspect that we won't converge on any new practices during this
discussion, but as we develop practices in the future, we can just update
this doc.
Glen Choo (2):
cocci: add headings to and reword README
cocci: codify authoring and reviewing practices
contrib/coccinelle/README | 40 +++++++++++++++++++++++++++++++++++----
1 file changed, 36 insertions(+), 4 deletions(-)
base-commit: f285f68a132109c234d93490671c00218066ace9
Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-git-1495%2Fchooglen%2Fpush-lsxuouxyokwo-v2
Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-git-1495/chooglen/push-lsxuouxyokwo-v2
Pull-Request: https://github.com/git/git/pull/1495
Range-diff vs v1:
1: 4a8b8a2a674 = 1: 4a8b8a2a674 cocci: add headings to and reword README
2: 75feb18dfd8 ! 2: acee642531a cocci: codify authoring and reviewing practices
@@ Metadata
## Commit message ##
cocci: codify authoring and reviewing practices
- This isn't set in stone; we expect this to be updated as the project
- evolves.
+ These practices largely reflect what we are already doing on the mailing
+ list, which should help new Coccinelle authors and reviewers get up to
+ speed.
Signed-off-by: Glen Choo <chooglen@google.com>
@@ contrib/coccinelle/README: that might be useful to developers.
+
+== Authoring and reviewing coccinelle changes
+
-+* When introducing and applying a new .cocci file, both the Git changes and
-+ .cocci file should be reviewed.
++* When a .cocci is made, both the Git changes and .cocci file should be
++ reviewed. When reviewing such a change, do your best to understand the .cocci
++ changes (e.g. by asking the author to explain the change) and be explicit
++ about your understanding of the changes. This helps us decide whether input
++ from coccinelle experts is needed or not. If you aren't sure of the cocci
++ changes, indicate what changes you actively endorse and leave an Acked-by
++ (instead of Reviewed-by).
+
-+* Reviewers do not need to be coccinelle experts. To give a Reviewed-By, it is
-+ enough for the reviewer to get a rough understanding of the proposed rules by
-+ comparing the .cocci and Git changes, then checking that understanding
-+ with the author.
-+
-+* Conversely, authors should consider that reviewers may not be coccinelle
-+ experts. The primary aim should be to make .cocci files easy to understand,
-+ e.g. by adding comments or by using rules that are easier to understand even
-+ if they are less elegant.
++* Authors should consider that reviewers may not be coccinelle experts, thus the
++ the .cocci changes may not be self-evident. A plain text description of the
++ changes is strongly encouraged, especially when using more esoteric features
++ of the language.
+
+* .cocci rules should target only the problem it is trying to solve; "collateral
-+ damage" is not allowed.
++ damage" is not allowed. Reviewers should look out and flag overly-broad rules.
++
++* Consider the cost-benefit ratio of .cocci changes. In particular, consider the
++ effect on the runtime of "make coccicheck", and how often your .cocci check
++ will catch something valuable. As a rule of thumb, rules that can bail early
++ if a file doesn't have a particular token will have a small impact on runtime,
++ and vice-versa.
+
+* .cocci files used for refactoring should be temporarily kept in-tree to aid
-+ the refactoring of out-of-tree code (e.g. in-flight topics). They should be
-+ removed when enough time has been given for others to refactor their code,
-+ i.e. ~1 release cycle.
++ the refactoring of out-of-tree code (e.g. in-flight topics). Periodically
++ evaluate the cost-benefit ratio to determine when the file should be removed.
++ For example, consider how many out-of-tree users are left and how much this
++ slows down "make coccicheck".
--
gitgitgadget
next prev parent reply other threads:[~2023-04-27 22:22 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-04-12 20:05 [PATCH 0/2] cocci: codify authoring and reviewing practices Glen Choo via GitGitGadget
2023-04-12 20:05 ` [PATCH 1/2] cocci: add headings to and reword README Glen Choo via GitGitGadget
2023-04-12 21:18 ` Junio C Hamano
2023-04-13 18:37 ` Glen Choo
2023-04-13 18:51 ` Junio C Hamano
2023-04-12 20:05 ` [PATCH 2/2] cocci: codify authoring and reviewing practices Glen Choo via GitGitGadget
2023-04-16 7:42 ` SZEDER Gábor
2023-04-19 19:29 ` Glen Choo
2023-04-20 20:53 ` [PATCH] cocci: remove 'unused.cocci' SZEDER Gábor
2023-04-21 2:43 ` Junio C Hamano
2023-05-01 13:27 ` Ævar Arnfjörð Bjarmason
2023-05-01 15:55 ` Junio C Hamano
2023-05-01 17:28 ` Ævar Arnfjörð Bjarmason
2023-05-10 22:45 ` Junio C Hamano
2023-04-16 13:37 ` [PATCH 2/2] cocci: codify authoring and reviewing practices Ævar Arnfjörð Bjarmason
2023-04-19 22:30 ` Glen Choo
2023-04-15 1:27 ` [PATCH 0/2] " Elijah Newren
2023-04-17 16:21 ` Junio C Hamano
2023-04-27 22:22 ` Glen Choo via GitGitGadget [this message]
2023-04-27 22:22 ` [PATCH v2 1/2] cocci: add headings to and reword README Glen Choo via GitGitGadget
2023-05-01 10:53 ` Ævar Arnfjörð Bjarmason
2023-05-01 15:06 ` Junio C Hamano
2023-05-02 19:29 ` Felipe Contreras
2023-05-02 19:30 ` Felipe Contreras
2023-05-09 17:54 ` Glen Choo
2023-04-27 22:22 ` [PATCH v2 2/2] cocci: codify authoring and reviewing practices Glen Choo via GitGitGadget
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=pull.1495.v2.git.git.1682634143.gitgitgadget@gmail.com \
--to=gitgitgadget@gmail.com \
--cc=avarab@gmail.com \
--cc=chooglen@google.com \
--cc=git@vger.kernel.org \
--cc=me@ttaylorr.com \
--cc=newren@gmail.com \
--cc=szeder.dev@gmail.com \
/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 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).