mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] [CHECKPATCH] Check for p0-patches
@ 2008-09-20 21:59 Wolfram Sang
  0 siblings, 0 replies; only message in thread
From: Wolfram Sang @ 2008-09-20 21:59 UTC (permalink / raw)
  To: linux-kernel; +Cc: apw

[-- Attachment #1: Type: text/plain, Size: 1196 bytes --]

Check if the patch is most likely a p0-patch and give a warning if so.

Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
---
 scripts/checkpatch.pl |    8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

Index: playground/scripts/checkpatch.pl
===================================================================
--- playground.orig/scripts/checkpatch.pl
+++ playground/scripts/checkpatch.pl
@@ -986,6 +986,7 @@
 	my $in_comment = 0;
 	my $comment_edge = 0;
 	my $first_line = 0;
+	my $p1_prefix = '';
 
 	my $prev_values = 'E';
 
@@ -1123,7 +1124,12 @@
 		# extract the filename as it passes
 		if ($line=~/^\+\+\+\s+(\S+)/) {
 			$realfile = $1;
-			$realfile =~ s@^[^/]*/@@;
+			$realfile =~ s@^([^/]*)/@@;
+
+			$p1_prefix = $1;
+			if ($tree && -e "$root/$p1_prefix") {
+				WARN("Patch prefix '$p1_prefix' exists. Is it maybe a p0-patch?\n");
+			}
 
 			if ($realfile =~ m@include/asm/@) {
 				ERROR("do not modify files in include/asm, change architecture specific files in include/asm-<architecture>\n" . "$here$rawline\n");
-- 
  Dipl.-Ing. Wolfram Sang | http://www.pengutronix.de
 Pengutronix - Linux Solutions for Science and Industry

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 197 bytes --]

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2008-09-20 21:59 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-09-20 21:59 [PATCH] [CHECKPATCH] Check for p0-patches Wolfram Sang

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

all inboxes | Powered by JetHome®