lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:	Tue, 31 Mar 2015 13:14:16 -0700
From:	Joe Perches <joe@...ches.com>
To:	Fabian Frederick <fabf@...net.be>
Cc:	linux-kernel@...r.kernel.org, Andy Whitcroft <apw@...onical.com>,
	Andrew Morton <akpm@...ux-foundation.org>
Subject: Re: [PATCH V3 linux-next] checkpatch: don't ask for asm/file.h to
 linux/file.h  unconditionally

On Tue, 2015-03-31 at 21:56 +0200, Fabian Frederick wrote:
> Currently checkpatch warns when asm/file.h is included and linux/file.h
> exists. That conversion can be made when linux/file.h includes asm/file.h
> which is not always the case.(See signal.h)

OK by me.

I would have done it directly in the if,
but no real worries either way.

Andrew Morton is the common path to get checkpatch
patches upstream, so I cc'd him on this reply.

If he doesn't pick it up within a couple/few weeks,
send it again.

cheers, Joe

> Signed-off-by: Fabian Frederick <fabf@...net.be>
> ---
> V3:
> 	Only grep when $root/$checkfile exists (suggested by Joe Perches)
> V2:
> 	Apply suggestions by Joe Perches:
> 	-Remove superfluous -i in grep
> 	-Use $root to make checkpatch callable from anywhere
> 	-Process all include cases.
> 
>  scripts/checkpatch.pl | 18 +++++++++++-------
>  1 file changed, 11 insertions(+), 7 deletions(-)
> 
> diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
> index d54a814..c72e7ee 100755
> --- a/scripts/checkpatch.pl
> +++ b/scripts/checkpatch.pl
> @@ -4242,7 +4242,8 @@ sub process {
>  			}
>  		}
>  
> -#warn if <asm/foo.h> is #included and <linux/foo.h> is available (uses RAW line)
> +# warn if <asm/foo.h> is #included and <linux/foo.h> is available and includes
> +# itself <asm/foo.h> (uses RAW line)
>  		if ($tree && $rawline =~ m{^.\s*\#\s*include\s*\<asm\/(.*)\.h\>}) {
>  			my $file = "$1.h";
>  			my $checkfile = "include/linux/$file";
> @@ -4250,12 +4251,15 @@ sub process {
>  			    $realfile ne $checkfile &&
>  			    $1 !~ /$allowed_asm_includes/)
>  			{
> -				if ($realfile =~ m{^arch/}) {
> -					CHK("ARCH_INCLUDE_LINUX",
> -					    "Consider using #include <linux/$file> instead of <asm/$file>\n" . $herecurr);
> -				} else {
> -					WARN("INCLUDE_LINUX",
> -					     "Use #include <linux/$file> instead of <asm/$file>\n" . $herecurr);
> +				my $asminclude = `grep -Ec "#include\\s+<asm/$file>" $root/$checkfile`;
> +				if ($asminclude > 0) {
> +					if ($realfile =~ m{^arch/}) {
> +						CHK("ARCH_INCLUDE_LINUX",
> +						    "Consider using #include <linux/$file> instead of <asm/$file>\n" . $herecurr);
> +					} else {
> +						WARN("INCLUDE_LINUX",
> +						     "Use #include <linux/$file> instead of <asm/$file>\n" . $herecurr);
> +					}
>  				}
>  			}
>  		}



--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ