/linux-6.1.9/tools/perf/ |
D | builtin-stat.c | 205 enum aggr_mode aggr_mode; member 214 .aggr_mode = AGGR_GLOBAL, 967 if (stat_config.aggr_mode == AGGR_GLOBAL) in __run_perf_stat() 1206 OPT_SET_UINT('A', "no-aggr", &stat_config.aggr_mode, 1236 OPT_SET_UINT(0, "per-socket", &stat_config.aggr_mode, 1238 OPT_SET_UINT(0, "per-die", &stat_config.aggr_mode, 1240 OPT_SET_UINT(0, "per-core", &stat_config.aggr_mode, 1242 OPT_SET_UINT(0, "per-thread", &stat_config.aggr_mode, 1244 OPT_SET_UINT(0, "per-node", &stat_config.aggr_mode, 1382 static aggr_cpu_id_get_t aggr_mode__get_aggr(enum aggr_mode aggr_mode) in aggr_mode__get_aggr() argument [all …]
|
D | builtin-lock.c | 67 } aggr_mode = LOCK_AGGR_ADDR; variable 568 switch (aggr_mode) { in get_key_by_aggr_mode_simple() 577 pr_err("Invalid aggregation mode: %d\n", aggr_mode); in get_key_by_aggr_mode_simple() 588 if (aggr_mode == LOCK_AGGR_CALLER) { in get_key_by_aggr_mode() 1068 if (aggr_mode == LOCK_AGGR_CALLER && verbose) { in report_lock_contention_begin_event() 1608 aggr_mode = LOCK_AGGR_TASK; in __cmd_report() 1726 aggr_mode = LOCK_AGGR_TASK; in __cmd_contention() 1728 aggr_mode = LOCK_AGGR_CALLER; in __cmd_contention()
|
/linux-6.1.9/drivers/net/wireless/ath/ath10k/ |
D | debugfs_sta.c | 187 (arsta->aggr_mode == ATH10K_DBG_AGGR_MODE_AUTO) ? in ath10k_dbg_sta_read_aggr_mode() 201 u32 aggr_mode; in ath10k_dbg_sta_write_aggr_mode() local 204 if (kstrtouint_from_user(user_buf, count, 0, &aggr_mode)) in ath10k_dbg_sta_write_aggr_mode() 207 if (aggr_mode >= ATH10K_DBG_AGGR_MODE_MAX) in ath10k_dbg_sta_write_aggr_mode() 212 (aggr_mode == arsta->aggr_mode)) { in ath10k_dbg_sta_write_aggr_mode() 223 arsta->aggr_mode = aggr_mode; in ath10k_dbg_sta_write_aggr_mode() 263 (arsta->aggr_mode != ATH10K_DBG_AGGR_MODE_MANUAL)) { in ath10k_dbg_sta_write_addba() 314 (arsta->aggr_mode != ATH10K_DBG_AGGR_MODE_MANUAL)) { in ath10k_dbg_sta_write_addba_resp() 364 (arsta->aggr_mode != ATH10K_DBG_AGGR_MODE_MANUAL)) { in ath10k_dbg_sta_write_delba()
|
D | core.h | 545 bool aggr_mode; member
|
/linux-6.1.9/drivers/phy/intel/ |
D | phy-intel-lgm-combo.c | 100 enum aggregated_mode aggr_mode; member 151 if (cbphy->aggr_mode != PHY_DL_MODE) in intel_cbphy_iphy_cfg() 203 enum aggregated_mode aggr = cbphy->aggr_mode; in intel_cbphy_set_mode() 496 cbphy->aggr_mode = PHY_DL_MODE; in intel_cbphy_fwnode_parse() 498 cbphy->aggr_mode = PHY_SL_MODE; in intel_cbphy_fwnode_parse() 527 if (cbphy->aggr_mode == PHY_DL_MODE && iphy_id == PHY_1) { in intel_cbphy_xlate() 548 if (cbphy->aggr_mode == PHY_DL_MODE && iphy->id == PHY_1) in intel_cbphy_create()
|
/linux-6.1.9/tools/perf/util/ |
D | stat.h | 51 enum aggr_mode { enum 120 enum aggr_mode aggr_mode; member
|
D | stat.c | 376 switch (config->aggr_mode) { in process_counter_values() 386 if ((config->aggr_mode == AGGR_NONE) && (!evsel->percore)) { in process_counter_values() 391 if (config->aggr_mode == AGGR_THREAD) { in process_counter_values() 444 if (config->aggr_mode != AGGR_GLOBAL) in perf_stat_process_counter() 531 ret += fprintf(fp, "... aggr_mode %d\n", sc.aggr_mode); in perf_event__fprintf_stat_config()
|
D | stat-display.c | 94 switch (config->aggr_mode) { in aggr_printout() 237 if (config->aggr_mode == AGGR_NONE) in do_new_line_std() 452 if (config->aggr_mode == AGGR_NONE) in first_shadow_map_idx() 455 if (config->aggr_mode == AGGR_THREAD) in first_shadow_map_idx() 567 os.nfields = 3 + aggr_fields[config->aggr_mode] + (counter->cgrp ? 1 : 0); in printout() 1153 aggr_header_lens[config->aggr_mode], ""); in print_metric_headers() 1158 fputs(aggr_header_csv[config->aggr_mode], config->output); in print_metric_headers() 1206 switch (config->aggr_mode) { in print_interval() 1462 if (config->aggr_mode == AGGR_GLOBAL && prefix && !config->iostat_run) in evlist__print_counters() 1469 switch (config->aggr_mode) { in evlist__print_counters()
|
D | event.c | 138 CASE(AGGR_MODE, aggr_mode) in perf_event__read_stat_config()
|
D | synthetic-events.c | 1373 ADD(AGGR_MODE, config->aggr_mode) in perf_event__synthesize_stat_config()
|
/linux-6.1.9/tools/perf/tests/ |
D | stat.c | 44 TEST_ASSERT_VAL("wrong aggr_mode", stat_config.aggr_mode == AGGR_CORE); in process_stat_config_event() 54 .aggr_mode = AGGR_CORE, in test__synthesize_stat_config()
|
D | pmu-events.c | 333 if (!is_same(e1->aggr_mode, e2->aggr_mode)) { in compare_pmu_events() 335 e1->name, e1->aggr_mode, e2->aggr_mode); in compare_pmu_events()
|
/linux-6.1.9/drivers/net/wireless/ath/ath11k/ |
D | debugfs_sta.c | 504 arsta->aggr_mode != ATH11K_DBG_AGGR_MODE_MANUAL) { in ath11k_dbg_sta_write_delba() 555 arsta->aggr_mode != ATH11K_DBG_AGGR_MODE_MANUAL) { in ath11k_dbg_sta_write_addba_resp() 605 arsta->aggr_mode != ATH11K_DBG_AGGR_MODE_MANUAL) { in ath11k_dbg_sta_write_addba() 643 (arsta->aggr_mode == ATH11K_DBG_AGGR_MODE_AUTO) ? in ath11k_dbg_sta_read_aggr_mode() 657 u32 aggr_mode; in ath11k_dbg_sta_write_aggr_mode() local 660 if (kstrtouint_from_user(user_buf, count, 0, &aggr_mode)) in ath11k_dbg_sta_write_aggr_mode() 663 if (aggr_mode >= ATH11K_DBG_AGGR_MODE_MAX) in ath11k_dbg_sta_write_aggr_mode() 668 aggr_mode == arsta->aggr_mode) { in ath11k_dbg_sta_write_aggr_mode() 680 arsta->aggr_mode = aggr_mode; in ath11k_dbg_sta_write_aggr_mode()
|
D | core.h | 496 bool aggr_mode; member
|
/linux-6.1.9/tools/perf/arch/powerpc/util/ |
D | header.c | 48 atoi(pe->aggr_mode) == PerChip ? strcat(path, "sockets") : strcat(path, "coresperchip"); in arch_get_runtimeparam()
|
/linux-6.1.9/tools/perf/pmu-events/ |
D | pmu-events.h | 25 const char *aggr_mode; member
|
D | jevents.py | 176 def convert_aggr_mode(aggr_mode: str) -> Optional[str]: 178 if not aggr_mode: 184 return aggr_mode_to_enum[aggr_mode] 266 self.aggr_mode = convert_aggr_mode(jd.get('AggregationMode'))
|
/linux-6.1.9/tools/perf/arch/x86/util/ |
D | iostat.c | 346 config->aggr_mode = AGGR_GLOBAL; in iostat_prepare()
|
/linux-6.1.9/tools/perf/util/scripting-engines/ |
D | trace-event-python.c | 1656 if (config->aggr_mode == AGGR_GLOBAL) { in python_process_stat()
|