diff options
author | Joe Perches <joe@perches.com> | 2015-09-09 18:37:47 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-09-10 16:29:01 -0400 |
commit | 6e30075742316a1d72b7e8f794f6e0bd44d774e2 (patch) | |
tree | 33526451b4d8503ef8f6afcb6fd529eed0e613d2 /scripts/checkpatch.pl | |
parent | 7bd7e483c27d884c2f59e286e42623abba413f83 (diff) |
checkpatch: emit an error on formats with 0x%<decimal>
Using 0x%d is wrong. Emit a message when it happens.
Miscellanea:
Improve the %Lu warning to match formats like %16Lu.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'scripts/checkpatch.pl')
-rwxr-xr-x | scripts/checkpatch.pl | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index 41ecae81de99..d98ffdd2180f 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl | |||
@@ -4816,16 +4816,20 @@ sub process { | |||
4816 | "Consecutive strings are generally better as a single string\n" . $herecurr); | 4816 | "Consecutive strings are generally better as a single string\n" . $herecurr); |
4817 | } | 4817 | } |
4818 | 4818 | ||
4819 | # check for %L{u,d,i} in strings | 4819 | # check for %L{u,d,i} and 0x%[udi] in strings |
4820 | my $string; | 4820 | my $string; |
4821 | while ($line =~ /(?:^|")([X\t]*)(?:"|$)/g) { | 4821 | while ($line =~ /(?:^|")([X\t]*)(?:"|$)/g) { |
4822 | $string = substr($rawline, $-[1], $+[1] - $-[1]); | 4822 | $string = substr($rawline, $-[1], $+[1] - $-[1]); |
4823 | $string =~ s/%%/__/g; | 4823 | $string =~ s/%%/__/g; |
4824 | if ($string =~ /(?<!%)%L[udi]/) { | 4824 | if ($string =~ /(?<!%)%[\*\d\.\$]*L[udi]/) { |
4825 | WARN("PRINTF_L", | 4825 | WARN("PRINTF_L", |
4826 | "\%Ld/%Lu are not-standard C, use %lld/%llu\n" . $herecurr); | 4826 | "\%Ld/%Lu are not-standard C, use %lld/%llu\n" . $herecurr); |
4827 | last; | 4827 | last; |
4828 | } | 4828 | } |
4829 | if ($string =~ /0x%[\*\d\.\$\Llzth]*[udi]/) { | ||
4830 | ERROR("PRINTF_0xDECIMAL", | ||
4831 | "Prefixing 0x with decimal output is defective\n" . $herecurr); | ||
4832 | } | ||
4829 | } | 4833 | } |
4830 | 4834 | ||
4831 | # check for line continuations in quoted strings with odd counts of " | 4835 | # check for line continuations in quoted strings with odd counts of " |