perf_counter tools: Rename output.perf to perf.data
authorIngo Molnar <mingo@elte.hu>
Wed, 27 May 2009 07:33:18 +0000 (09:33 +0200)
committerIngo Molnar <mingo@elte.hu>
Wed, 27 May 2009 07:33:18 +0000 (09:33 +0200)
output.perf is only output to perf-record - it's input to
perf-report. So change it to a more direction-neutral name.

Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com>
Cc: Marcelo Tosatti <mtosatti@redhat.com>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: John Kacur <jkacur@redhat.com>
LKML-Reference: <new-submission>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Documentation/perf_counter/Documentation/perf-record.txt
Documentation/perf_counter/Documentation/perf-report.txt
Documentation/perf_counter/builtin-record.c
Documentation/perf_counter/builtin-report.c

index d07700e35eb27bc463f80ac7e6aada49b31e135e..353db1bb98abfb0a663dc24f4c81596c2f38b142 100644 (file)
@@ -3,7 +3,7 @@ perf-record(1)
 
 NAME
 ----
-perf-record - Run a command and record its profile into output.perf
+perf-record - Run a command and record its profile into perf.data
 
 SYNOPSIS
 --------
@@ -13,7 +13,7 @@ SYNOPSIS
 DESCRIPTION
 -----------
 This command runs a command and gathers a performance counter profile
-from it, into output.perf - without displaying anything.
+from it, into perf.data - without displaying anything.
 
 This file can then be inspected later on, using 'perf report'.
 
index 64696a218105dd8ba11f4cb4a739dffacdde2eb4..49efe16c95882c85c30e53b34568068a04bf2905 100644 (file)
@@ -3,7 +3,7 @@ perf-report(1)
 
 NAME
 ----
-perf-report - Read output.perf (created by perf record) and display the profile
+perf-report - Read perf.data (created by perf record) and display the profile
 
 SYNOPSIS
 --------
@@ -19,7 +19,7 @@ OPTIONS
 -------
 -i::
 --input=::
-        Input file name. (default: output.perf)
+        Input file name. (default: perf.data)
 
 Configuration
 -------------
index 68abfdf71d39993d90c428ada2123f565c4baf8a..431077a6fb7724a92f8f7cc7e0f99dac106360a3 100644 (file)
@@ -19,7 +19,7 @@ static int                    nr_cpus                         =  0;
 static unsigned int            page_size;
 static unsigned int            mmap_pages                      = 16;
 static int                     output;
-static const char              *output_name                    = "output.perf";
+static const char              *output_name                    = "perf.data";
 static int                     group                           = 0;
 static unsigned int            realtime_prio                   = 0;
 static int                     system_wide                     = 0;
index 7f1255dcd2223910d379ae70dfdac4cef888fe59..e2712cd063107f8551bb6273446a295d9036e329 100644 (file)
@@ -18,7 +18,7 @@
 #define SHOW_USER      2
 #define SHOW_HV                4
 
-static char            const *input_name = "output.perf";
+static char            const *input_name = "perf.data";
 static int             input;
 static int             show_mask = SHOW_KERNEL | SHOW_USER | SHOW_HV;