1 /* SPDX-License-Identifier: GPL-2.0 */
7 #include <linux/types.h>
8 #include <linux/stddef.h>
9 #include <linux/perf_event.h>
10 #include "util/target.h"
24 bool sample_phys_addr
;
25 bool sample_data_page_size
;
34 bool auxtrace_snapshot_mode
;
35 bool auxtrace_snapshot_on_exit
;
36 bool auxtrace_sample_mode
;
37 bool record_namespaces
;
39 bool record_switch_events
;
40 bool record_switch_events_set
;
43 bool kernel_callchains
;
47 bool ignore_missing_thread
;
54 unsigned int mmap_pages
;
55 unsigned int auxtrace_mmap_pages
;
56 unsigned int user_freq
;
62 size_t auxtrace_snapshot_size
;
63 const char *auxtrace_snapshot_opts
;
64 const char *auxtrace_sample_opts
;
65 bool sample_transaction
;
73 unsigned int comp_level
;
74 unsigned int nr_threads_synthesize
;
80 extern const char * const *record_usage
;
81 extern struct option
*record_options
;
83 int record__parse_freq(const struct option
*opt
, const char *str
, int unset
);
85 static inline bool record_opts__no_switch_events(const struct record_opts
*opts
)
87 return opts
->record_switch_events_set
&& !opts
->record_switch_events
;
90 #endif // _PERF_RECORD_H