Home
last modified time | relevance | path

Searched refs:cpu_list (Results 1 – 25 of 47) sorted by relevance

12

/linux/tools/perf/util/
H A Dtarget.c25 if (target->tid && target->cpu_list) { in target__validate()
26 target->cpu_list = NULL; in target__validate()
39 if (target->bpf_str && target->cpu_list) { in target__validate()
40 target->cpu_list = NULL; in target__validate()
60 if (target->per_thread && (target->system_wide || target->cpu_list)) { in target__validate()
H A Dtarget.h11 const char *cpu_list; member
59 return target->system_wide || target->cpu_list; in target__has_cpu()
H A Dbpf_kwork_top.c125 if (kwork->cpu_list) { in setup_filters()
136 map = perf_cpu_map__new(kwork->cpu_list); in setup_filters()
138 pr_debug("Invalid cpu_list\n"); in setup_filters()
194 if (kwork->cpu_list) in perf_kwork__top_prepare_bpf()
H A Dtop.c98 if (target->cpu_list) in perf_top__header_snprintf()
101 target->cpu_list); in perf_top__header_snprintf()
H A Dbpf_kwork.c150 if (kwork->cpu_list != NULL) { in setup_filters()
161 map = perf_cpu_map__new(kwork->cpu_list); in setup_filters()
163 pr_debug("Invalid cpu_list\n"); in setup_filters()
238 if (kwork->cpu_list != NULL) in perf_kwork__trace_prepare_bpf()
H A Dcputopo.c164 const char *cpu_list = topology->core_cpus_list[i]; in cpu_topology__smt_on() local
170 if (strchr(cpu_list, ',') || strchr(cpu_list, '-')) in cpu_topology__smt_on()
H A Dbpf_ftrace.c59 if (ftrace->target.cpu_list) { in perf_ftrace__latency_prepare_bpf()
81 if (ftrace->target.cpu_list) { in perf_ftrace__latency_prepare_bpf()
H A Dbpf_off_cpu.c167 if (target->cpu_list) { in off_cpu_prepare()
233 if (target->cpu_list) { in off_cpu_prepare()
H A Dsession.h183 const char *cpu_list, unsigned long *cpu_bitmap);
/linux/tools/lib/perf/
H A Dcpumap.c165 struct perf_cpu_map *perf_cpu_map__new(const char *cpu_list) in perf_cpu_map__new() argument
174 if (!cpu_list) in perf_cpu_map__new()
182 if (!isdigit(*cpu_list) && *cpu_list != '\0') in perf_cpu_map__new()
185 while (isdigit(*cpu_list)) { in perf_cpu_map__new()
187 start_cpu = strtoul(cpu_list, &p, 0); in perf_cpu_map__new()
193 cpu_list = ++p; in perf_cpu_map__new()
195 end_cpu = strtoul(cpu_list, &p, 0); in perf_cpu_map__new()
227 cpu_list = p; in perf_cpu_map__new()
232 } else if (*cpu_list ! in perf_cpu_map__new()
[all...]
/linux/scripts/gdb/linux/
H A Dcpus.py63 def cpu_list(mask_name): function
103 for cpu in cpu_list("__cpu_online_mask"):
108 for cpu in cpu_list("__cpu_present_mask"):
113 for cpu in cpu_list("__cpu_possible_mask"):
118 for cpu in cpu_list("__cpu_active_mask"):
/linux/tools/perf/
H A Dbuiltin-mem.c44 const char *cpu_list; member
104 if (mem->cpu_list) in __cmd_record()
155 if (mem->cpu_list) { in __cmd_record()
157 rec_argv[i++] = mem->cpu_list; in __cmd_record()
300 if (mem->cpu_list) { in report_raw_events()
301 ret = perf_session__cpu_bitmap(session, mem->cpu_list, in report_raw_events()
486 OPT_STRING('C', "cpu", &mem.cpu_list, "cpu", in cmd_mem()
H A Dbuiltin-annotate.c67 const char *cpu_list; member
302 if (ann->cpu_list && !test_bit(sample->cpu, ann->cpu_bitmap)) in process_sample_event()
557 if (ann->cpu_list) { in __cmd_annotate()
558 ret = perf_session__cpu_bitmap(session, ann->cpu_list, in __cmd_annotate()
745 OPT_STRING('C', "cpu", &annotate.cpu_list, "cpu", "list of cpus to profile"), in cmd_annotate()
H A Dbuiltin-kwork.c427 if ((kwork->cpu_list != NULL) && !test_bit(cpu, kwork->cpu_bitmap)) in profile_event_match()
1761 if (kwork->cpu_list != NULL) { in perf_kwork__check_config()
1763 kwork->cpu_list, in perf_kwork__check_config()
2333 .cpu_list = NULL, in cmd_kwork()
2367 OPT_STRING('C', "cpu", &kwork.cpu_list, "cpu", in cmd_kwork()
2386 OPT_STRING('C', "cpu", &kwork.cpu_list, "cpu", in cmd_kwork()
2413 OPT_STRING('C', "cpu", &kwork.cpu_list, "cpu", in cmd_kwork()
2424 OPT_STRING('C', "cpu", &kwork.cpu_list, "cpu", in cmd_kwork()
H A Dbuiltin-report.c105 const char *cpu_list; member
306 if (rep->cpu_list && !test_bit(sample->cpu, rep->cpu_bitmap)) in process_sample_event()
1064 if (rep->cpu_list) { in __cmd_report()
1065 ret = perf_session__cpu_bitmap(session, rep->cpu_list, in __cmd_report()
1416 OPT_STRING('C', "cpu", &report.cpu_list, "cpu", in cmd_report()
H A Dbuiltin-diff.c103 static const char *cpu_list; variable
421 if (cpu_list && !test_bit(sample->cpu, cpu_bitmap)) { in diff__process_sample_event()
1193 if (cpu_list) { in __cmd_diff()
1194 ret = perf_session__cpu_bitmap(d->session, cpu_list, in __cmd_diff()
1293 OPT_STRING(0, "cpu", &cpu_list, "cpu", "list of cpus to profile"),
/linux/tools/tracing/rtla/src/
H A Dutils.h26 int parse_cpu_list(char *cpu_list, char **monitored_cpus);
63 int parse_cpu_set(char *cpu_list, cpu_set_t *set);
H A Dutils.c95 * parse_cpu_set - parse a cpu_list filling cpu_set_t argument
102 int parse_cpu_set(char *cpu_list, cpu_set_t *set) in parse_cpu_set() argument
114 for (p = cpu_list; *p; ) { in parse_cpu_set()
147 debug_msg("Error parsing the cpu set %s\n", cpu_list); in parse_cpu_set()
/linux/tools/power/x86/amd_pstate_tracer/
H A Damd_pstate_trace.py255 cpu_list = "" variable
283 cpu_list = arg variable
294 if cpu_list:
295 for p in re.split("[,]", cpu_list):
/linux/tools/power/x86/intel_pstate_tracer/
H A Dintel_pstate_tracer.py503 cpu_list = "" variable
530 cpu_list = arg variable
541 if cpu_list:
542 for p in re.split("[,]", cpu_list):
/linux/tools/lib/perf/include/perf/
H A Dcpumap.h35 * perf_cpu_map__new - create a map from the given cpu_list such as "0-7". If no
36 * cpu_list argument is provided then
39 LIBPERF_API struct perf_cpu_map *perf_cpu_map__new(const char *cpu_list);
/linux/arch/sparc/kernel/
H A Dds.c635 u32 *cpu_list = (u32 *) (tag + 1); in dr_cpu_data() local
652 purge_dups(cpu_list, tag->num_records); in dr_cpu_data()
656 if (cpu_list[i] == CPU_SENTINEL) in dr_cpu_data()
659 if (cpu_list[i] < nr_cpu_ids) in dr_cpu_data()
660 cpumask_set_cpu(cpu_list[i], &mask); in dr_cpu_data()
/linux/drivers/block/mtip32xx/
H A Dmtip32xx.c3693 char cpu_list[256]; in mtip_pci_probe() local
3746 memset(cpu_list, 0, sizeof(cpu_list)); in mtip_pci_probe()
3752 snprintf(&cpu_list[j], 256 - j, "%d ", cpu); in mtip_pci_probe()
3753 j = strlen(cpu_list); in mtip_pci_probe()
3760 cpu_list); in mtip_pci_probe()
3780 memset(cpu_list, 0, sizeof(cpu_list)); in mtip_pci_probe()
3783 snprintf(&cpu_list[j], 256 - j, "%d ", i); in mtip_pci_probe()
3784 j = strlen(cpu_list); in mtip_pci_probe()
[all...]
/linux/arch/x86/kvm/vmx/
H A Dtdx.h65 struct list_head cpu_list; member
/linux/tools/perf/bench/
H A Devlist-open-close.c231 OPT_STRING('C', "cpu", &opts.target.cpu_list, "cpu", in bench_evlist_open_close()

12