aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorMichael S. Tsirkin <mst@redhat.com>2016-01-04 03:00:10 -0500
committerMichael S. Tsirkin <mst@redhat.com>2016-01-12 13:47:08 -0500
commit43e361f23c49dbddf74f56ddf6cdd85c5dbff6da (patch)
treee4847979c0344827a22bceb56eeaf02e409eed83 /scripts
parentf4073b0f6e11a5436d1162c623401c8f2f7cf783 (diff)
checkpatch: add virt barriers
Add virt_ barriers to list of barriers to check for presence of a comment. Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Acked-by: Julian Calaby <julian.calaby@gmail.com> Acked-by: Joe Perches <joe@perches.com> Acked-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/checkpatch.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index 25476c29bb18..c7bf1aa2eeb3 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -5133,7 +5133,8 @@ sub process {
5133 }x; 5133 }x;
5134 my $all_barriers = qr{ 5134 my $all_barriers = qr{
5135 (?:$barriers)| 5135 (?:$barriers)|
5136 smp_(?:$barrier_stems) 5136 smp_(?:$barrier_stems)|
5137 virt_(?:$barrier_stems)
5137 }x; 5138 }x;
5138 5139
5139 if ($line =~ /\b(?:$all_barriers)\s*\(/) { 5140 if ($line =~ /\b(?:$all_barriers)\s*\(/) {