aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/builtin-record.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/perf/builtin-record.c')
-rw-r--r--tools/perf/builtin-record.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/perf/builtin-record.c b/tools/perf/builtin-record.c
index 7b8b891d4d56..c643ed669ef9 100644
--- a/tools/perf/builtin-record.c
+++ b/tools/perf/builtin-record.c
@@ -92,8 +92,8 @@ static int write_output(struct perf_record *rec, void *buf, size_t size)
92 92
93static int process_synthesized_event(struct perf_tool *tool, 93static int process_synthesized_event(struct perf_tool *tool,
94 union perf_event *event, 94 union perf_event *event,
95 struct perf_sample *sample __used, 95 struct perf_sample *sample __maybe_unused,
96 struct machine *machine __used) 96 struct machine *machine __maybe_unused)
97{ 97{
98 struct perf_record *rec = container_of(tool, struct perf_record, tool); 98 struct perf_record *rec = container_of(tool, struct perf_record, tool);
99 if (write_output(rec, event, event->header.size) < 0) 99 if (write_output(rec, event, event->header.size) < 0)
@@ -159,7 +159,7 @@ static void sig_handler(int sig)
159 signr = sig; 159 signr = sig;
160} 160}
161 161
162static void perf_record__sig_exit(int exit_status __used, void *arg) 162static void perf_record__sig_exit(int exit_status __maybe_unused, void *arg)
163{ 163{
164 struct perf_record *rec = arg; 164 struct perf_record *rec = arg;
165 int status; 165 int status;
@@ -827,7 +827,7 @@ static int get_stack_size(char *str, unsigned long *_size)
827#endif /* !NO_LIBUNWIND_SUPPORT */ 827#endif /* !NO_LIBUNWIND_SUPPORT */
828 828
829static int 829static int
830parse_callchain_opt(const struct option *opt __used, const char *arg, 830parse_callchain_opt(const struct option *opt __maybe_unused, const char *arg,
831 int unset) 831 int unset)
832{ 832{
833 struct perf_record *rec = (struct perf_record *)opt->value; 833 struct perf_record *rec = (struct perf_record *)opt->value;
@@ -1003,7 +1003,7 @@ const struct option record_options[] = {
1003 OPT_END() 1003 OPT_END()
1004}; 1004};
1005 1005
1006int cmd_record(int argc, const char **argv, const char *prefix __used) 1006int cmd_record(int argc, const char **argv, const char *prefix __maybe_unused)
1007{ 1007{
1008 int err = -ENOMEM; 1008 int err = -ENOMEM;
1009 struct perf_evsel *pos; 1009 struct perf_evsel *pos;