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>] [day] [month] [year] [list]
Date:	Wed, 26 Sep 2012 19:41:23 +0800
From:	Yan Hong <clouds.yan@...il.com>
To:	apw@...onical.com
Cc:	linux-kernel@...r.kernel.org
Subject: [PATCH] scripts/checkpatch.pl: seperate mutiple results with black line

Before:
total: 0 errors, 0 warnings, 14 lines checked

XXXX.patch has no obvious style problems and is ready for submission.
total: 0 errors, 0 warnings, 7 lines checked

XXXX.patch has no obvious style problems and is ready for submission.
total: 0 errors, 0 warnings, 25 lines checked

XXXX.patch has no obvious style problems and is ready for submission.

After:
total: 0 errors, 0 warnings, 14 lines checked
XXXX.patch has no obvious style problems and is ready for submission.

total: 0 errors, 0 warnings, 7 lines checked
XXXX.patch has no obvious style problems and is ready for submission.

total: 0 errors, 0 warnings, 25 lines checked
XXXX.patch has no obvious style problems and is ready for submission.

Also leave two blank lines after the error message if check fails.

Signed-off-by: Yan Hong <clouds.yan@...il.com>
---
 scripts/checkpatch.pl |    6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index ca05ba2..15d9f08 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -3588,7 +3588,7 @@ sub process {
 		print "$filename " if ($summary_file);
 		print "total: $cnt_error errors, $cnt_warn warnings, " .
 			(($check)? "$cnt_chk checks, " : "") .
-			"$cnt_lines lines checked\n";
+			"$cnt_lines lines checked";
 		print "\n" if ($quiet == 0);
 	}
 
@@ -3617,7 +3617,7 @@ sub process {
 	}
 
 	if ($clean == 1 && $quiet == 0) {
-		print "$vname has no obvious style problems and is ready for submission.\n"
+		print "$vname has no obvious style problems and is ready for submission.\n\n"
 	}
 	if ($clean == 0 && $quiet == 0) {
 		print << "EOM";
@@ -3625,6 +3625,8 @@ $vname has style problems, please review.
 
 If any of these errors are false positives, please report
 them to the maintainer, see CHECKPATCH in MAINTAINERS.
+
+
 EOM
 	}
 
-- 
1.7.9.5

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