The patch titled Subject: checkpatch: fix missing close parenthesis has been added to the -mm tree. Its filename is checkpatch-improve-patch-recognition-fix.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/checkpatch-improve-patch-recognition-fix.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/checkpatch-improve-patch-recognition-fix.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Joe Perches <joe@xxxxxxxxxxx> Subject: checkpatch: fix missing close parenthesis Latest -next has a missing close parenthesis in the patch that adds better recognition for rename only patches. Add it. Link: http://lkml.kernel.org/r/af44c893f6973393f2a5b11f1a8e5cd4c8bbbba5.camel@xxxxxxxxxxx Signed-off-by: Joe Perches <joe@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- scripts/checkpatch.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN scripts/checkpatch.pl~checkpatch-improve-patch-recognition-fix scripts/checkpatch.pl --- a/scripts/checkpatch.pl~checkpatch-improve-patch-recognition-fix +++ a/scripts/checkpatch.pl @@ -2379,7 +2379,7 @@ sub process { if (!$in_commit_log && ($line =~ /^ mode change [0-7]+ => [0-7]+ \S+\s*$/ || ($line =~ /^rename (?:from|to) \S+\s*$/ || - $line =~ /^diff --git a\/[\w\/\.\_\-]+ b\/\S+\s*$/)) { + $line =~ /^diff --git a\/[\w\/\.\_\-]+ b\/\S+\s*$/))) { $is_patch = 1; } _ Patches currently in -mm which might be from joe@xxxxxxxxxxx are get_maintainer-improve-patch-recognition.patch checkpatch-add-a-strict-test-for-structs-with-bool-member-definitions.patch checkpatch-improve-patch-recognition.patch checkpatch-improve-patch-recognition-fix.patch mm-use-octal-not-symbolic-permissions.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html