[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 7/9] scripts/cleanup-trace-events: Emit files in alphabetical orde
From: |
Stefan Hajnoczi |
Subject: |
[PULL 7/9] scripts/cleanup-trace-events: Emit files in alphabetical order |
Date: |
Thu, 13 Aug 2020 06:22:55 +0100 |
From: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-id: 20200806141334.3646302-3-armbru@redhat.com
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
---
scripts/cleanup-trace-events.pl | 13 ++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/scripts/cleanup-trace-events.pl b/scripts/cleanup-trace-events.pl
index 6c3767bd6a..c40d2fcc50 100755
--- a/scripts/cleanup-trace-events.pl
+++ b/scripts/cleanup-trace-events.pl
@@ -15,12 +15,15 @@ use warnings;
use strict;
use File::Basename;
-my $buf = '';
+my @files = ();
+my $events = '';
my %seen = ();
sub out {
- print $buf;
- $buf = '';
+ print sort @files;
+ print $events;
+ @files = ();
+ $events = '';
%seen = ();
}
@@ -42,7 +45,7 @@ while (<IN>) {
chomp $fname;
next if $seen{$fname} || $fname eq 'trace-events';
$seen{$fname} = 1;
- $buf = "# $fname\n" . $buf;
+ push @files, "# $fname\n";
}
unless (close GREP) {
die "close git grep: $!"
@@ -55,7 +58,7 @@ while (<IN>) {
} elsif (!/^#|^$/) {
warn "unintelligible line";
}
- $buf .= $_;
+ $events .= $_;
}
out;
--
2.26.2
- [PULL 0/9] Tracing patches, Stefan Hajnoczi, 2020/08/13
- [PULL 1/9] scripts/tracetool: Fix dtrace generation for macOS, Stefan Hajnoczi, 2020/08/13
- [PULL 2/9] scripts/tracetool: Use void pointer for vcpu, Stefan Hajnoczi, 2020/08/13
- [PULL 4/9] net/colo: Match is-enabled probe to tracepoint, Stefan Hajnoczi, 2020/08/13
- [PULL 3/9] build: Don't make object files for dtrace on macOS, Stefan Hajnoczi, 2020/08/13
- [PULL 5/9] softmmu: Add missing trace-events file, Stefan Hajnoczi, 2020/08/13
- [PULL 6/9] scripts/cleanup-trace-events: Fix for vcpu property, Stefan Hajnoczi, 2020/08/13
- [PULL 7/9] scripts/cleanup-trace-events: Emit files in alphabetical order,
Stefan Hajnoczi <=
- [PULL 8/9] trace-events: Delete unused trace points, Stefan Hajnoczi, 2020/08/13
- [PULL 9/9] trace-events: Fix attribution of trace points to source, Stefan Hajnoczi, 2020/08/13
- Re: [PULL 0/9] Tracing patches, no-reply, 2020/08/13
- Re: [PULL 0/9] Tracing patches, no-reply, 2020/08/13
- Re: [PULL 0/9] Tracing patches, Peter Maydell, 2020/08/21