* [PATCH] checkpatch: fix uninitialized var when run with --no-tree
@ 2016-10-29 2:26 Brian Norris
2016-10-29 2:36 ` Brian Norris
0 siblings, 1 reply; 4+ messages in thread
From: Brian Norris @ 2016-10-29 2:26 UTC (permalink / raw)
To: Andy Whitcroft, Joe Perches
Cc: linux-kernel, Brian Norris, Linus Torvalds, Andrew Morton,
SF Markus Elfring
From: Brian Norris <computersforpeace@gmail.com>
If checkpatch.pl gets copied out of the tree, --no-tree shouldn't start
complaining:
Use of uninitialized value $root in concatenation (.) or string at
/path/to/checkpatch.pl line 764.
Let's just give the safe answer instead -- don't warn about "obsolete"
files.
Fixes: 85b0ee18bbf8 ("checkpatch: see if modified files are marked obsolete in MAINTAINERS")
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
---
This is a 4.9-rc1 regression
scripts/checkpatch.pl | 2 ++
1 file changed, 2 insertions(+)
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index a8368d1c4348..c8cd643dbc6f 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -761,6 +761,8 @@ sub seed_camelcase_file {
sub is_maintained_obsolete {
my ($filename) = @_;
+ return 0 if (!$tree);
+
return 0 if (!(-e "$root/scripts/get_maintainer.pl"));
my $status = `perl $root/scripts/get_maintainer.pl --status --nom --nol --nogit --nogit-fallback -f $filename 2>&1`;
--
2.8.0.rc3.226.g39d4020
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] checkpatch: fix uninitialized var when run with --no-tree
2016-10-29 2:26 [PATCH] checkpatch: fix uninitialized var when run with --no-tree Brian Norris
@ 2016-10-29 2:36 ` Brian Norris
2016-11-08 23:10 ` Andrew Morton
0 siblings, 1 reply; 4+ messages in thread
From: Brian Norris @ 2016-10-29 2:36 UTC (permalink / raw)
To: Andy Whitcroft, Joe Perches
Cc: linux-kernel, Linus Torvalds, Andrew Morton, SF Markus Elfring
On Fri, Oct 28, 2016 at 07:26:31PM -0700, Brian Norris wrote:
> From: Brian Norris <computersforpeace@gmail.com>
>
> If checkpatch.pl gets copied out of the tree, --no-tree shouldn't start
> complaining:
>
> Use of uninitialized value $root in concatenation (.) or string at
> /path/to/checkpatch.pl line 764.
>
> Let's just give the safe answer instead -- don't warn about "obsolete"
> files.
>
> Fixes: 85b0ee18bbf8 ("checkpatch: see if modified files are marked obsolete in MAINTAINERS")
> Signed-off-by: Brian Norris <computersforpeace@gmail.com>
> ---
> This is a 4.9-rc1 regression
>
> scripts/checkpatch.pl | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
> index a8368d1c4348..c8cd643dbc6f 100755
> --- a/scripts/checkpatch.pl
> +++ b/scripts/checkpatch.pl
> @@ -761,6 +761,8 @@ sub seed_camelcase_file {
> sub is_maintained_obsolete {
> my ($filename) = @_;
>
> + return 0 if (!$tree);
Actually, I'm torn on this. It looks really odd to check for !$tree
here, but it's the only supported case where $root shouldn't be defined.
Maybe (!defined $root) is a better test? (Sorry, I did a double-take on
this after I sent it.)
Both would be equally correct, but I suppose the latter would be
clearer. I'll send v2.
Brian
> +
> return 0 if (!(-e "$root/scripts/get_maintainer.pl"));
>
> my $status = `perl $root/scripts/get_maintainer.pl --status --nom --nol --nogit --nogit-fallback -f $filename 2>&1`;
> --
> 2.8.0.rc3.226.g39d4020
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] checkpatch: fix uninitialized var when run with --no-tree
2016-10-29 2:36 ` Brian Norris
@ 2016-11-08 23:10 ` Andrew Morton
2016-11-09 0:00 ` Brian Norris
0 siblings, 1 reply; 4+ messages in thread
From: Andrew Morton @ 2016-11-08 23:10 UTC (permalink / raw)
To: Brian Norris
Cc: Andy Whitcroft, Joe Perches, linux-kernel, Linus Torvalds,
SF Markus Elfring, Jerome Forissier
On Fri, 28 Oct 2016 19:36:09 -0700 Brian Norris <computersforpeace@gmail.com> wrote:
> On Fri, Oct 28, 2016 at 07:26:31PM -0700, Brian Norris wrote:
> > From: Brian Norris <computersforpeace@gmail.com>
> >
> > If checkpatch.pl gets copied out of the tree, --no-tree shouldn't start
> > complaining:
> >
> > Use of uninitialized value $root in concatenation (.) or string at
> > /path/to/checkpatch.pl line 764.
> >
> > Let's just give the safe answer instead -- don't warn about "obsolete"
> > files.
> >
> > Fixes: 85b0ee18bbf8 ("checkpatch: see if modified files are marked obsolete in MAINTAINERS")
> > Signed-off-by: Brian Norris <computersforpeace@gmail.com>
> > ---
> > This is a 4.9-rc1 regression
> >
> > scripts/checkpatch.pl | 2 ++
> > 1 file changed, 2 insertions(+)
> >
> > diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
> > index a8368d1c4348..c8cd643dbc6f 100755
> > --- a/scripts/checkpatch.pl
> > +++ b/scripts/checkpatch.pl
> > @@ -761,6 +761,8 @@ sub seed_camelcase_file {
> > sub is_maintained_obsolete {
> > my ($filename) = @_;
> >
> > + return 0 if (!$tree);
>
> Actually, I'm torn on this. It looks really odd to check for !$tree
> here, but it's the only supported case where $root shouldn't be defined.
> Maybe (!defined $root) is a better test? (Sorry, I did a double-take on
> this after I sent it.)
>
> Both would be equally correct, but I suppose the latter would be
> clearer. I'll send v2.
I already have the below. Good enough?
From: Jerome Forissier <jerome.forissier@linaro.org>
Subject: checkpatch: don't try to get maintained status when --no-tree is given
Fixes the following warning:
Use of uninitialized value $root in concatenation (.) or string at /path/to/checkpatch.pl line 764.
Link: http://lkml.kernel.org/r/1476719709-16668-1-git-send-email-jerome.forissier@linaro.org
Signed-off-by: Jerome Forissier <jerome.forissier@linaro.org>
Acked-by: Joe Perches <joe@perches.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
scripts/checkpatch.pl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff -puN scripts/checkpatch.pl~checkpatch-dont-try-to-get-maintained-status-when-no-tree-is-given scripts/checkpatch.pl
--- a/scripts/checkpatch.pl~checkpatch-dont-try-to-get-maintained-status-when-no-tree-is-given
+++ a/scripts/checkpatch.pl
@@ -761,7 +761,7 @@ sub seed_camelcase_file {
sub is_maintained_obsolete {
my ($filename) = @_;
- return 0 if (!(-e "$root/scripts/get_maintainer.pl"));
+ return 0 if (!$tree || !(-e "$root/scripts/get_maintainer.pl"));
my $status = `perl $root/scripts/get_maintainer.pl --status --nom --nol --nogit --nogit-fallback -f $filename 2>&1`;
_
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] checkpatch: fix uninitialized var when run with --no-tree
2016-11-08 23:10 ` Andrew Morton
@ 2016-11-09 0:00 ` Brian Norris
0 siblings, 0 replies; 4+ messages in thread
From: Brian Norris @ 2016-11-09 0:00 UTC (permalink / raw)
To: Andrew Morton
Cc: Andy Whitcroft, Joe Perches, linux-kernel, Linus Torvalds,
SF Markus Elfring, Jerome Forissier
On Tue, Nov 08, 2016 at 03:10:40PM -0800, Andrew Morton wrote:
> I already have the below. Good enough?
Sure, good enough. Though it does have the same tiny awkwardness as my
v1.
> From: Jerome Forissier <jerome.forissier@linaro.org>
> Subject: checkpatch: don't try to get maintained status when --no-tree is given
>
> Fixes the following warning:
> Use of uninitialized value $root in concatenation (.) or string at /path/to/checkpatch.pl line 764.
>
> Link: http://lkml.kernel.org/r/1476719709-16668-1-git-send-email-jerome.forissier@linaro.org
> Signed-off-by: Jerome Forissier <jerome.forissier@linaro.org>
> Acked-by: Joe Perches <joe@perches.com>
> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
> ---
>
> scripts/checkpatch.pl | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff -puN scripts/checkpatch.pl~checkpatch-dont-try-to-get-maintained-status-when-no-tree-is-given scripts/checkpatch.pl
> --- a/scripts/checkpatch.pl~checkpatch-dont-try-to-get-maintained-status-when-no-tree-is-given
> +++ a/scripts/checkpatch.pl
> @@ -761,7 +761,7 @@ sub seed_camelcase_file {
> sub is_maintained_obsolete {
> my ($filename) = @_;
>
> - return 0 if (!(-e "$root/scripts/get_maintainer.pl"));
> + return 0 if (!$tree || !(-e "$root/scripts/get_maintainer.pl"));
>
> my $status = `perl $root/scripts/get_maintainer.pl --status --nom --nol --nogit --nogit-fallback -f $filename 2>&1`;
>
> _
>
FWIW:
Reviewed-by: Brian Norris <computersforpeace@gmail.com>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-11-09 0:00 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-10-29 2:26 [PATCH] checkpatch: fix uninitialized var when run with --no-tree Brian Norris
2016-10-29 2:36 ` Brian Norris
2016-11-08 23:10 ` Andrew Morton
2016-11-09 0:00 ` Brian Norris
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).