diff options
-rw-r--r-- | tools/perf/builtin-record.c | 52 | ||||
-rw-r--r-- | tools/perf/builtin-top.c | 38 |
2 files changed, 45 insertions, 45 deletions
diff --git a/tools/perf/builtin-record.c b/tools/perf/builtin-record.c index 3eeef339c787..494f8c7d7521 100644 --- a/tools/perf/builtin-record.c +++ b/tools/perf/builtin-record.c | |||
@@ -29,43 +29,43 @@ static int fd[MAX_NR_CPUS][MAX_COUNTERS]; | |||
29 | 29 | ||
30 | static long default_interval = 100000; | 30 | static long default_interval = 100000; |
31 | 31 | ||
32 | static int nr_cpus = 0; | 32 | static int nr_cpus = 0; |
33 | static unsigned int page_size; | 33 | static unsigned int page_size; |
34 | static unsigned int mmap_pages = 128; | 34 | static unsigned int mmap_pages = 128; |
35 | static int freq = 0; | 35 | static int freq = 1000; |
36 | static int output; | 36 | static int output; |
37 | static const char *output_name = "perf.data"; | 37 | static const char *output_name = "perf.data"; |
38 | static int group = 0; | 38 | static int group = 0; |
39 | static unsigned int realtime_prio = 0; | 39 | static unsigned int realtime_prio = 0; |
40 | static int raw_samples = 0; | 40 | static int raw_samples = 0; |
41 | static int system_wide = 0; | 41 | static int system_wide = 0; |
42 | static int profile_cpu = -1; | 42 | static int profile_cpu = -1; |
43 | static pid_t target_pid = -1; | 43 | static pid_t target_pid = -1; |
44 | static pid_t child_pid = -1; | 44 | static pid_t child_pid = -1; |
45 | static int inherit = 1; | 45 | static int inherit = 1; |
46 | static int force = 0; | 46 | static int force = 0; |
47 | static int append_file = 0; | 47 | static int append_file = 0; |
48 | static int call_graph = 0; | 48 | static int call_graph = 0; |
49 | static int inherit_stat = 0; | 49 | static int inherit_stat = 0; |
50 | static int no_samples = 0; | 50 | static int no_samples = 0; |
51 | static int sample_address = 0; | 51 | static int sample_address = 0; |
52 | static int multiplex = 0; | 52 | static int multiplex = 0; |
53 | static int multiplex_fd = -1; | 53 | static int multiplex_fd = -1; |
54 | 54 | ||
55 | static long samples; | 55 | static long samples = 0; |
56 | static struct timeval last_read; | 56 | static struct timeval last_read; |
57 | static struct timeval this_read; | 57 | static struct timeval this_read; |
58 | 58 | ||
59 | static u64 bytes_written; | 59 | static u64 bytes_written = 0; |
60 | 60 | ||
61 | static struct pollfd event_array[MAX_NR_CPUS * MAX_COUNTERS]; | 61 | static struct pollfd event_array[MAX_NR_CPUS * MAX_COUNTERS]; |
62 | 62 | ||
63 | static int nr_poll; | 63 | static int nr_poll = 0; |
64 | static int nr_cpu; | 64 | static int nr_cpu = 0; |
65 | 65 | ||
66 | static int file_new = 1; | 66 | static int file_new = 1; |
67 | 67 | ||
68 | struct perf_header *header; | 68 | struct perf_header *header = NULL; |
69 | 69 | ||
70 | struct mmap_data { | 70 | struct mmap_data { |
71 | int counter; | 71 | int counter; |
diff --git a/tools/perf/builtin-top.c b/tools/perf/builtin-top.c index c574c5b3d0e6..d978dc99236c 100644 --- a/tools/perf/builtin-top.c +++ b/tools/perf/builtin-top.c | |||
@@ -55,26 +55,26 @@ | |||
55 | 55 | ||
56 | static int fd[MAX_NR_CPUS][MAX_COUNTERS]; | 56 | static int fd[MAX_NR_CPUS][MAX_COUNTERS]; |
57 | 57 | ||
58 | static int system_wide = 0; | 58 | static int system_wide = 0; |
59 | 59 | ||
60 | static int default_interval = 100000; | 60 | static int default_interval = 100000; |
61 | 61 | ||
62 | static int count_filter = 5; | 62 | static int count_filter = 5; |
63 | static int print_entries = 15; | 63 | static int print_entries = 15; |
64 | 64 | ||
65 | static int target_pid = -1; | 65 | static int target_pid = -1; |
66 | static int inherit = 0; | 66 | static int inherit = 0; |
67 | static int profile_cpu = -1; | 67 | static int profile_cpu = -1; |
68 | static int nr_cpus = 0; | 68 | static int nr_cpus = 0; |
69 | static unsigned int realtime_prio = 0; | 69 | static unsigned int realtime_prio = 0; |
70 | static int group = 0; | 70 | static int group = 0; |
71 | static unsigned int page_size; | 71 | static unsigned int page_size; |
72 | static unsigned int mmap_pages = 16; | 72 | static unsigned int mmap_pages = 16; |
73 | static int freq = 0; | 73 | static int freq = 1000; /* 1 KHz */ |
74 | 74 | ||
75 | static int delay_secs = 2; | 75 | static int delay_secs = 2; |
76 | static int zero; | 76 | static int zero = 0; |
77 | static int dump_symtab; | 77 | static int dump_symtab = 0; |
78 | 78 | ||
79 | /* | 79 | /* |
80 | * Source | 80 | * Source |
@@ -87,11 +87,11 @@ struct source_line { | |||
87 | struct source_line *next; | 87 | struct source_line *next; |
88 | }; | 88 | }; |
89 | 89 | ||
90 | static char *sym_filter = NULL; | 90 | static char *sym_filter = NULL; |
91 | struct sym_entry *sym_filter_entry = NULL; | 91 | struct sym_entry *sym_filter_entry = NULL; |
92 | static int sym_pcnt_filter = 5; | 92 | static int sym_pcnt_filter = 5; |
93 | static int sym_counter = 0; | 93 | static int sym_counter = 0; |
94 | static int display_weighted = -1; | 94 | static int display_weighted = -1; |
95 | 95 | ||
96 | /* | 96 | /* |
97 | * Symbols | 97 | * Symbols |