2023-10-24 11:17:47

by Michael Ellerman

[permalink] [raw]
Subject: [PATCH] checkpatch: Recognise "Debugged-by" tags

Currently checkpatch complains about "Debugged-by:" tags:

WARNING: Non-standard signature: Debugged-by:
#33:
Debugged-by: Jane Doe <[email protected]>

There are over 150 Debugged-by tags already in the history, so
checkpatch should allow them.

Additionally checkpatch will now catch small typos, eg:

WARNING: Non-standard signature: 'Debuged-by:' - perhaps 'Debugged-by:'?
#17:
Debuged-by: Jane Doe <[email protected]>

Signed-off-by: Michael Ellerman <[email protected]>
---
scripts/checkpatch.pl | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index 7d16f863edf1..31774351bae1 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -618,6 +618,7 @@ our $signature_tags = qr{(?xi:
Reviewed-by:|
Reported-by:|
Suggested-by:|
+ Debugged-by:|
To:|
Cc:
)};
@@ -711,7 +712,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:', 'Debugged-by:'
);
foreach my $signature (@standard_signature_tags) {
return $signature if (get_edit_distance($sign_off, $signature) <= 2);
--
2.41.0


2023-10-24 14:15:03

by Joe Perches

[permalink] [raw]
Subject: Re: [PATCH] checkpatch: Recognise "Debugged-by" tags

On Tue, 2023-10-24 at 22:17 +1100, Michael Ellerman wrote:
> Currently checkpatch complains about "Debugged-by:" tags:
>
> WARNING: Non-standard signature: Debugged-by:
> #33:
> Debugged-by: Jane Doe <[email protected]>
>
> There are over 150 Debugged-by tags already in the history, so
> checkpatch should allow them.

nack.

Please do not use checkpatch to change process.
Update the process docs then update checkpatch.