Contributors: 22
Author Tokens Token Proportion Commits Commit Proportion
Arnaldo Carvalho de Melo 85 29.51% 17 24.29%
Ian Rogers 38 13.19% 6 8.57%
David Ahern 31 10.76% 4 5.71%
Namhyung Kim 23 7.99% 11 15.71%
Jin Yao 17 5.90% 6 8.57%
Yanmin Zhang 17 5.90% 1 1.43%
Dmitriy Vyukov 17 5.90% 2 2.86%
Andi Kleen 14 4.86% 5 7.14%
Stéphane Eranian 13 4.51% 2 2.86%
Jiri Olsa 6 2.08% 3 4.29%
Thomas Richter 4 1.39% 2 2.86%
Anton Blanchard 3 1.04% 1 1.43%
Chase Douglas 3 1.04% 1 1.43%
Changbin Du 3 1.04% 1 1.43%
Kan Liang 2 0.69% 1 1.43%
Avi Kivity 2 0.69% 1 1.43%
Willy Tarreau 2 0.69% 1 1.43%
Akihiro Nagai 2 0.69% 1 1.43%
Adrian Hunter 2 0.69% 1 1.43%
Jovi Zhang 2 0.69% 1 1.43%
Martin Liška 1 0.35% 1 1.43%
Greg Kroah-Hartman 1 0.35% 1 1.43%
Total 288 70


/* SPDX-License-Identifier: GPL-2.0 */
#ifndef __PERF_SYMBOL_CONF
#define __PERF_SYMBOL_CONF 1

#include <stdbool.h>
#include <linux/bitmap.h>
#include "perf.h"

struct strlist;
struct intlist;

enum a2l_style {
	A2L_STYLE_UNKNOWN = 0,
	A2L_STYLE_LIBDW,
	A2L_STYLE_LLVM,
	A2L_STYLE_LIBBFD,
	A2L_STYLE_CMD,
};
#define MAX_A2L_STYLE (A2L_STYLE_CMD + 1)

struct symbol_conf {
	bool		nanosecs;
	unsigned short	priv_size;
	bool		try_vmlinux_path,
			init_annotation,
			force,
			ignore_vmlinux,
			ignore_vmlinux_buildid,
			show_kernel_path,
			use_modules,
			allow_aliases,
			show_nr_samples,
			show_total_period,
			use_callchain,
			cumulate_callchain,
			show_branchflag_count,
			exclude_other,
			show_cpu_utilization,
			initialized,
			kptr_restrict,
			event_group,
			demangle,
			demangle_kernel,
			filter_relative,
			show_hist_headers,
			has_filter,
			show_ref_callgraph,
			hide_unresolved,
			raw_trace,
			report_hierarchy,
			report_block,
			report_individual_block,
			inline_name,
			addr2line_disable_warn,
			no_buildid_mmap2,
			guest_code,
			lazy_load_kernel_maps,
			keep_exited_threads,
			annotate_data_member,
			annotate_data_sample,
			skip_empty,
			enable_latency,
			prefer_latency;
	const char	*vmlinux_name,
			*kallsyms_name,
			*source_prefix,
			*field_sep,
			*graph_function;
	const char	*default_guest_vmlinux_name,
			*default_guest_kallsyms,
			*default_guest_modules;
	const char	*guestmount;
	const char	*dso_list_str,
			*comm_list_str,
			*pid_list_str,
			*tid_list_str,
			*sym_list_str,
			*parallelism_list_str,
			*col_width_list_str,
			*bt_stop_list_str;
	const char		*addr2line_path;
	enum a2l_style	addr2line_style[MAX_A2L_STYLE];
	int             addr2line_timeout_ms;
	unsigned long	time_quantum;
       struct strlist	*dso_list,
			*comm_list,
			*sym_list,
			*dso_from_list,
			*dso_to_list,
			*sym_from_list,
			*sym_to_list,
			*bt_stop_list;
	struct intlist	*pid_list,
			*tid_list,
			*addr_list;
	const char	*symfs;
	bool		symfs_layout_flat;
	int		res_sample;
	int		pad_output_len_dso;
	int		group_sort_idx;
	int		addr_range;
	DECLARE_BITMAP(parallelism_filter, MAX_NR_CPUS + 1);
};

extern struct symbol_conf symbol_conf;

#endif // __PERF_SYMBOL_CONF