public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] checkpatch: add "Reported-and-tested-by:" tag
@ 2024-04-19 22:28 Nam Cao
  2024-04-20 16:22 ` Joe Perches
  0 siblings, 1 reply; 6+ messages in thread
From: Nam Cao @ 2024-04-19 22:28 UTC (permalink / raw)
  To: apw, joe, dwaipayanray1, lukas.bulwahn, linux-kernel; +Cc: Nam Cao

The tag "Reported-and-tested-by:" is used all the time. Add this tag.

Signed-off-by: Nam Cao <namcao@linutronix.de>
---
v2: add missing colon

 scripts/checkpatch.pl | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index 9c4c4a61bc83..e2034da2aeb0 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -618,6 +618,7 @@ our $signature_tags = qr{(?xi:
 	Tested-by:|
 	Reviewed-by:|
 	Reported-by:|
+	Reported-and-tested-by:|
 	Suggested-by:|
 	To:|
 	Cc:
@@ -712,7 +713,7 @@ sub find_standard_signature {
 	my ($sign_off) = @_;
 	my @standard_signature_tags = (
 		'Signed-off-by:', 'Co-developed-by:', 'Acked-by:', 'Tested-by:',
-		'Reviewed-by:', 'Reported-by:', 'Suggested-by:'
+		'Reviewed-by:', 'Reported-by:', 'Suggested-by:', 'Reported-and-tested-by:'
 	);
 	foreach my $signature (@standard_signature_tags) {
 		return $signature if (get_edit_distance($sign_off, $signature) <= 2);
-- 
2.39.2


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH v2] checkpatch: add "Reported-and-tested-by:" tag
  2024-04-19 22:28 [PATCH v2] checkpatch: add "Reported-and-tested-by:" tag Nam Cao
@ 2024-04-20 16:22 ` Joe Perches
  2024-07-16  5:24   ` Carlos Llamas
  0 siblings, 1 reply; 6+ messages in thread
From: Joe Perches @ 2024-04-20 16:22 UTC (permalink / raw)
  To: Nam Cao, apw, dwaipayanray1, lukas.bulwahn, linux-kernel

On Sat, 2024-04-20 at 00:28 +0200, Nam Cao wrote:
> The tag "Reported-and-tested-by:" is used all the time. Add this tag.

General nack:

I think that combined tags should be avoided

see:

Documentation/process/maintainer-tip.rst:Please do not use combined tags, e.g. ``Reported-and-tested-by``, as
Documentation/process/maintainer-tip.rst-they just complicate automated extraction of tags.


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v2] checkpatch: add "Reported-and-tested-by:" tag
  2024-04-20 16:22 ` Joe Perches
@ 2024-07-16  5:24   ` Carlos Llamas
  2024-07-16  7:11     ` Dmitry Vyukov
  0 siblings, 1 reply; 6+ messages in thread
From: Carlos Llamas @ 2024-07-16  5:24 UTC (permalink / raw)
  To: Joe Perches
  Cc: Nam Cao, apw, dwaipayanray1, lukas.bulwahn, linux-kernel,
	Dmitry Vyukov, Thomas Gleixner

On Sat, Apr 20, 2024 at 09:22:45AM -0700, Joe Perches wrote:
> On Sat, 2024-04-20 at 00:28 +0200, Nam Cao wrote:
> > The tag "Reported-and-tested-by:" is used all the time. Add this tag.
> 
> General nack:
> 
> I think that combined tags should be avoided
> 
> see:
> 
> Documentation/process/maintainer-tip.rst:Please do not use combined tags, e.g. ``Reported-and-tested-by``, as
> Documentation/process/maintainer-tip.rst-they just complicate automated extraction of tags.
> 

If combined tags are discouraged then syzbot should perhaps stop
suggesting the `Reported-and-tested-by:` tag? I would imagine this not
only applies to the tip tree and that other maintainers agree with not
using combined tags.

FWIW, this tag in particular though is quite popular:
$ git log --grep '^Reported-and-tested-by: ' origin/master |wc -l
82056

--
Carlos Llamas

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v2] checkpatch: add "Reported-and-tested-by:" tag
  2024-07-16  5:24   ` Carlos Llamas
@ 2024-07-16  7:11     ` Dmitry Vyukov
  2024-07-16 22:44       ` Carlos Llamas
  0 siblings, 1 reply; 6+ messages in thread
From: Dmitry Vyukov @ 2024-07-16  7:11 UTC (permalink / raw)
  To: Carlos Llamas
  Cc: Joe Perches, Nam Cao, apw, dwaipayanray1, lukas.bulwahn,
	linux-kernel, Thomas Gleixner, syzkaller

On Tue, 16 Jul 2024 at 07:24, Carlos Llamas <cmllamas@google.com> wrote:
>
> On Sat, Apr 20, 2024 at 09:22:45AM -0700, Joe Perches wrote:
> > On Sat, 2024-04-20 at 00:28 +0200, Nam Cao wrote:
> > > The tag "Reported-and-tested-by:" is used all the time. Add this tag.
> >
> > General nack:
> >
> > I think that combined tags should be avoided
> >
> > see:
> >
> > Documentation/process/maintainer-tip.rst:Please do not use combined tags, e.g. ``Reported-and-tested-by``, as
> > Documentation/process/maintainer-tip.rst-they just complicate automated extraction of tags.
> >
>
> If combined tags are discouraged then syzbot should perhaps stop
> suggesting the `Reported-and-tested-by:` tag? I would imagine this not
> only applies to the tip tree and that other maintainers agree with not
> using combined tags.
>
> FWIW, this tag in particular though is quite popular:
> $ git log --grep '^Reported-and-tested-by: ' origin/master |wc -l
> 82056

+syzkaller mailing list

We can add whatever text you will say. What is the official position?

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v2] checkpatch: add "Reported-and-tested-by:" tag
  2024-07-16  7:11     ` Dmitry Vyukov
@ 2024-07-16 22:44       ` Carlos Llamas
  2024-07-17 10:24         ` Dmitry Vyukov
  0 siblings, 1 reply; 6+ messages in thread
From: Carlos Llamas @ 2024-07-16 22:44 UTC (permalink / raw)
  To: Dmitry Vyukov
  Cc: Joe Perches, Nam Cao, apw, dwaipayanray1, lukas.bulwahn,
	linux-kernel, Thomas Gleixner, syzkaller

On Tue, Jul 16, 2024 at 09:11:08AM +0200, Dmitry Vyukov wrote:
> On Tue, 16 Jul 2024 at 07:24, Carlos Llamas <cmllamas@google.com> wrote:
> >
> > If combined tags are discouraged then syzbot should perhaps stop
> > suggesting the `Reported-and-tested-by:` tag? I would imagine this not
> > only applies to the tip tree and that other maintainers agree with not
> > using combined tags.
> >
> > FWIW, this tag in particular though is quite popular:
> > $ git log --grep '^Reported-and-tested-by: ' origin/master |wc -l
> > 82056

The number of patches with this tag is actually 2689. Sorry, I forgot to
add the --oneline option to my initial query.

> 
> +syzkaller mailing list
> 
> We can add whatever text you will say. What is the official position?

I don't know if there is an official position but IMO individual tags
are the safest option. This would even allow tools such as b4 to collect
the tags automatically. So splitting out 'Reported-and-tested-by:' seems
trivial enough?

  Reported-by: syzbot+<context>
  Tested-by: syzbot+<context>

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v2] checkpatch: add "Reported-and-tested-by:" tag
  2024-07-16 22:44       ` Carlos Llamas
@ 2024-07-17 10:24         ` Dmitry Vyukov
  0 siblings, 0 replies; 6+ messages in thread
From: Dmitry Vyukov @ 2024-07-17 10:24 UTC (permalink / raw)
  To: Carlos Llamas
  Cc: Joe Perches, Nam Cao, apw, dwaipayanray1, lukas.bulwahn,
	linux-kernel, Thomas Gleixner, syzkaller

On Wed, 17 Jul 2024 at 00:44, Carlos Llamas <cmllamas@google.com> wrote:
>
> On Tue, Jul 16, 2024 at 09:11:08AM +0200, Dmitry Vyukov wrote:
> > On Tue, 16 Jul 2024 at 07:24, Carlos Llamas <cmllamas@google.com> wrote:
> > >
> > > If combined tags are discouraged then syzbot should perhaps stop
> > > suggesting the `Reported-and-tested-by:` tag? I would imagine this not
> > > only applies to the tip tree and that other maintainers agree with not
> > > using combined tags.
> > >
> > > FWIW, this tag in particular though is quite popular:
> > > $ git log --grep '^Reported-and-tested-by: ' origin/master |wc -l
> > > 82056
>
> The number of patches with this tag is actually 2689. Sorry, I forgot to
> add the --oneline option to my initial query.
>
> >
> > +syzkaller mailing list
> >
> > We can add whatever text you will say. What is the official position?
>
> I don't know if there is an official position but IMO individual tags
> are the safest option. This would even allow tools such as b4 to collect
> the tags automatically. So splitting out 'Reported-and-tested-by:' seems
> trivial enough?
>
>   Reported-by: syzbot+<context>
>   Tested-by: syzbot+<context>

I've sent https://github.com/google/syzkaller/pull/5060/files
to split the tag into 2 in syzbot emails.

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2024-07-17 10:25 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-19 22:28 [PATCH v2] checkpatch: add "Reported-and-tested-by:" tag Nam Cao
2024-04-20 16:22 ` Joe Perches
2024-07-16  5:24   ` Carlos Llamas
2024-07-16  7:11     ` Dmitry Vyukov
2024-07-16 22:44       ` Carlos Llamas
2024-07-17 10:24         ` Dmitry Vyukov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox