Home
last modified time | relevance | path

Searched refs:sysctl_perf_event_max_stack (Results 1 – 12 of 12) sorted by relevance

/kernel/linux/linux-5.10/kernel/events/
Dcallchain.c22 int sysctl_perf_event_max_stack __read_mostly = PERF_MAX_STACK_DEPTH;
28 sizeof(__u64) * (sysctl_perf_event_max_stack + in perf_callchain_entry__sizeof()
128 if (event_max_stack > sysctl_perf_event_max_stack) { in get_callchain_buffers()
Dcore.c11573 attr->sample_max_stack = sysctl_perf_event_max_stack; in perf_copy_attr()
/kernel/linux/linux-5.10/tools/perf/util/
Dutil.c42 int sysctl_perf_event_max_stack = PERF_MAX_STACK_DEPTH; variable
50 sysctl_perf_event_max_stack = value; in sysctl__max_stack()
55 return sysctl_perf_event_max_stack; in sysctl__max_stack()
Devent.h407 extern int sysctl_perf_event_max_stack;
/kernel/linux/linux-5.10/kernel/bpf/
Dstackmap.c113 > sysctl_perf_event_max_stack) in stack_map_alloc()
115 } else if (value_size / 8 > sysctl_perf_event_max_stack) in stack_map_alloc()
139 err = get_callchain_buffers(sysctl_perf_event_max_stack); in stack_map_alloc()
481 if (max_depth > sysctl_perf_event_max_stack) in BPF_CALL_3()
482 max_depth = sysctl_perf_event_max_stack; in BPF_CALL_3()
602 if (sysctl_perf_event_max_stack < max_depth) in __bpf_get_stack()
603 max_depth = sysctl_perf_event_max_stack; in __bpf_get_stack()
Dverifier.c5638 err = get_callchain_buffers(sysctl_perf_event_max_stack); in check_helper_call()
/kernel/linux/linux-5.10/tools/perf/tests/
Dhists_filter.c86 sysctl_perf_event_max_stack, NULL) < 0) { in add_hist_entries()
Dhists_cumulate.c108 if (hist_entry_iter__add(&iter, &al, sysctl_perf_event_max_stack, in add_hist_entries()
Dhists_output.c74 if (hist_entry_iter__add(&iter, &al, sysctl_perf_event_max_stack, in add_hist_entries()
/kernel/linux/linux-5.10/include/linux/
Dperf_event.h1266 extern int sysctl_perf_event_max_stack;
/kernel/linux/linux-5.10/kernel/
Dsysctl.c2668 .data = &sysctl_perf_event_max_stack,
2669 .maxlen = sizeof(sysctl_perf_event_max_stack),
/kernel/linux/linux-5.10/tools/perf/
Dbuiltin-c2c.c281 evsel, &al, sysctl_perf_event_max_stack); in process_sample_event()