linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] get_maintainer: Gracefully handle files with authors but no signers
@ 2022-09-22 23:01 David Matlack
  2022-09-22 23:43 ` Joe Perches
  0 siblings, 1 reply; 3+ messages in thread
From: David Matlack @ 2022-09-22 23:01 UTC (permalink / raw)
  To: Joe Perches; +Cc: linux-kernel, David Matlack

Gracefully handle the case where a file has no signers (e.g. has not
been modified within the last year) but does have authors (e.g. because
there are local commits that modifies the file without Signed-off-by
tags). This scenario could happen for developers whose workflow is to
add Signed-off-by tags as part of git-format-patch rather than as part
of git-commit.

Today this scenario results in the following non-sensical output from
get_maintainer.pl:

  Bad divisor in main::vcs_assign: 0
  "GitAuthor: David Matlack" <dmatlack@google.com> (authored:1/1=100%,added_lines:9/9=100%,removed_lines:3/3=100%)

There are two issues with this output: the "Bad divisor" error and the
garbled author name. Both stem from this line in vcs_find_signers():

  return (0, \@signatures, \@authors, \@stats) if !@signatures;

Returning 0 for the number of commits and a non-empty list for the
authors results in the "Bad divisor". The garbled author name comes from
the fact that @authors is the raw, unparsed, output line from git-log.
Code later in vcs_find_signers() actually parses out the name and drops
the "GitAuthor: " prefix.

Fix this by returning an empty list instead of @authors and @stats to
make them coherent with the fact that commits is 0.

Signed-off-by: David Matlack <dmatlack@google.com>
---
 scripts/get_maintainer.pl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/get_maintainer.pl b/scripts/get_maintainer.pl
index ab123b498fd9..69f0e1ac9f90 100755
--- a/scripts/get_maintainer.pl
+++ b/scripts/get_maintainer.pl
@@ -1605,7 +1605,7 @@ sub vcs_find_signers {
 
 #    print("stats: <@stats>\n");
 
-    return (0, \@signatures, \@authors, \@stats) if !@signatures;
+    return (0, (), (), ()) if !@signatures;
 
     save_commits_by_author(@lines) if ($interactive);
     save_commits_by_signer(@lines) if ($interactive);

base-commit: bf682942cd26ce9cd5e87f73ae099b383041e782
-- 
2.37.3.998.g577e59143f-goog


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

* Re: [PATCH] get_maintainer: Gracefully handle files with authors but no signers
  2022-09-22 23:01 [PATCH] get_maintainer: Gracefully handle files with authors but no signers David Matlack
@ 2022-09-22 23:43 ` Joe Perches
  2022-09-27 16:57   ` David Matlack
  0 siblings, 1 reply; 3+ messages in thread
From: Joe Perches @ 2022-09-22 23:43 UTC (permalink / raw)
  To: David Matlack; +Cc: linux-kernel

On Thu, 2022-09-22 at 16:01 -0700, David Matlack wrote:
> Gracefully handle the case where a file has no signers (e.g. has not
> been modified within the last year) but does have authors (e.g. because
> there are local commits that modifies the file without Signed-off-by
> tags). This scenario could happen for developers whose workflow is to
> add Signed-off-by tags as part of git-format-patch rather than as part
> of git-commit.

I think that's a poor process.

> Today this scenario results in the following non-sensical output from
> get_maintainer.pl:
> 
>   Bad divisor in main::vcs_assign: 0
>   "GitAuthor: David Matlack" <dmatlack@google.com> (authored:1/1=100%,added_lines:9/9=100%,removed_lines:3/3=100%)

Interesting...

> There are two issues with this output: the "Bad divisor" error and the
> garbled author name. Both stem from this line in vcs_find_signers():
> 
>   return (0, \@signatures, \@authors, \@stats) if !@signatures;
[]
> Returning 0 for the number of commits and a non-empty list for the
> authors results in the "Bad divisor". The garbled author name comes from
> the fact that @authors is the raw, unparsed, output line from git-log.
> Code later in vcs_find_signers() actually parses out the name and drops
> the "GitAuthor: " prefix.
> 
> Fix this by returning an empty list instead of @authors and @stats to
> make them coherent with the fact that commits is 0.
[]
> diff --git a/scripts/get_maintainer.pl b/scripts/get_maintainer.pl
[]
> @@ -1605,7 +1605,7 @@ sub vcs_find_signers {
>  
>  #    print("stats: <@stats>\n");
>  
> -    return (0, \@signatures, \@authors, \@stats) if !@signatures;
> +    return (0, (), (), ()) if !@signatures;

There's probably some better mechanism, not sure what it is though
as I don't have equivalent commits in the actual tree.

And I think you need \() and not () as what's returned is a reference
to an array and not an array or maybe use undef.

>      save_commits_by_author(@lines) if ($interactive);
>      save_commits_by_signer(@lines) if ($interactive);


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

* Re: [PATCH] get_maintainer: Gracefully handle files with authors but no signers
  2022-09-22 23:43 ` Joe Perches
@ 2022-09-27 16:57   ` David Matlack
  0 siblings, 0 replies; 3+ messages in thread
From: David Matlack @ 2022-09-27 16:57 UTC (permalink / raw)
  To: Joe Perches; +Cc: LKML

On Thu, Sep 22, 2022 at 4:43 PM Joe Perches <joe@perches.com> wrote:
>
> On Thu, 2022-09-22 at 16:01 -0700, David Matlack wrote:
> > Gracefully handle the case where a file has no signers (e.g. has not
> > been modified within the last year) but does have authors (e.g. because
> > there are local commits that modifies the file without Signed-off-by
> > tags). This scenario could happen for developers whose workflow is to
> > add Signed-off-by tags as part of git-format-patch rather than as part
> > of git-commit.
>
> I think that's a poor process.

I don't disagree, and personally I have changed my own workflow to add
sign-offs at commit time.

>
> > Today this scenario results in the following non-sensical output from
> > get_maintainer.pl:
> >
> >   Bad divisor in main::vcs_assign: 0
> >   "GitAuthor: David Matlack" <dmatlack@google.com> (authored:1/1=100%,added_lines:9/9=100%,removed_lines:3/3=100%)
>
> Interesting...
>
> > There are two issues with this output: the "Bad divisor" error and the
> > garbled author name. Both stem from this line in vcs_find_signers():
> >
> >   return (0, \@signatures, \@authors, \@stats) if !@signatures;
> []
> > Returning 0 for the number of commits and a non-empty list for the
> > authors results in the "Bad divisor". The garbled author name comes from
> > the fact that @authors is the raw, unparsed, output line from git-log.
> > Code later in vcs_find_signers() actually parses out the name and drops
> > the "GitAuthor: " prefix.
> >
> > Fix this by returning an empty list instead of @authors and @stats to
> > make them coherent with the fact that commits is 0.
> []
> > diff --git a/scripts/get_maintainer.pl b/scripts/get_maintainer.pl
> []
> > @@ -1605,7 +1605,7 @@ sub vcs_find_signers {
> >
> >  #    print("stats: <@stats>\n");
> >
> > -    return (0, \@signatures, \@authors, \@stats) if !@signatures;
> > +    return (0, (), (), ()) if !@signatures;
>
> There's probably some better mechanism, not sure what it is though
> as I don't have equivalent commits in the actual tree.
>
> And I think you need \() and not () as what's returned is a reference
> to an array and not an array or maybe use undef.

Ack, will do in v2.

>
> >      save_commits_by_author(@lines) if ($interactive);
> >      save_commits_by_signer(@lines) if ($interactive);
>

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

end of thread, other threads:[~2022-09-27 16:58 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-22 23:01 [PATCH] get_maintainer: Gracefully handle files with authors but no signers David Matlack
2022-09-22 23:43 ` Joe Perches
2022-09-27 16:57   ` David Matlack

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).