Home
last modified time | relevance | path

Searched refs:stats (Results 1 – 25 of 1567) sorted by relevance

12345678910>>...63

/Linux-v4.19/drivers/infiniband/hw/bnxt_re/
Dhw_counters.c113 struct rdma_hw_stats *stats, in bnxt_re_ib_get_hw_stats() argument
117 struct ctx_hw_stats *bnxt_re_stats = rdev->qplib_ctx.stats.dma; in bnxt_re_ib_get_hw_stats()
120 if (!port || !stats) in bnxt_re_ib_get_hw_stats()
123 stats->value[BNXT_RE_ACTIVE_QP] = atomic_read(&rdev->qp_count); in bnxt_re_ib_get_hw_stats()
124 stats->value[BNXT_RE_ACTIVE_SRQ] = atomic_read(&rdev->srq_count); in bnxt_re_ib_get_hw_stats()
125 stats->value[BNXT_RE_ACTIVE_CQ] = atomic_read(&rdev->cq_count); in bnxt_re_ib_get_hw_stats()
126 stats->value[BNXT_RE_ACTIVE_MR] = atomic_read(&rdev->mr_count); in bnxt_re_ib_get_hw_stats()
127 stats->value[BNXT_RE_ACTIVE_MW] = atomic_read(&rdev->mw_count); in bnxt_re_ib_get_hw_stats()
129 stats->value[BNXT_RE_RECOVERABLE_ERRORS] = in bnxt_re_ib_get_hw_stats()
131 stats->value[BNXT_RE_RX_PKTS] = in bnxt_re_ib_get_hw_stats()
[all …]
/Linux-v4.19/drivers/cpufreq/
Dcpufreq_stats.c30 static void cpufreq_stats_update(struct cpufreq_stats *stats) in cpufreq_stats_update() argument
35 stats->time_in_state[stats->last_index] += cur_time - stats->last_time; in cpufreq_stats_update()
36 stats->last_time = cur_time; in cpufreq_stats_update()
40 static void cpufreq_stats_clear_table(struct cpufreq_stats *stats) in cpufreq_stats_clear_table() argument
42 unsigned int count = stats->max_state; in cpufreq_stats_clear_table()
44 memset(stats->time_in_state, 0, count * sizeof(u64)); in cpufreq_stats_clear_table()
45 memset(stats->trans_table, 0, count * count * sizeof(int)); in cpufreq_stats_clear_table()
46 stats->last_time = get_jiffies_64(); in cpufreq_stats_clear_table()
47 stats->total_trans = 0; in cpufreq_stats_clear_table()
52 return sprintf(buf, "%d\n", policy->stats->total_trans); in show_total_trans()
[all …]
/Linux-v4.19/drivers/infiniband/hw/ocrdma/
Docrdma_stats.c104 char *stats = dev->stats_mem.debugfs_mem, *pcur; in ocrdma_resource_stats() local
109 memset(stats, 0, (OCRDMA_MAX_DBGFS_MEM)); in ocrdma_resource_stats()
111 pcur = stats; in ocrdma_resource_stats()
112 pcur += ocrdma_add_stat(stats, pcur, "active_dpp_pds", in ocrdma_resource_stats()
114 pcur += ocrdma_add_stat(stats, pcur, "active_non_dpp_pds", in ocrdma_resource_stats()
116 pcur += ocrdma_add_stat(stats, pcur, "active_rc_dpp_qps", in ocrdma_resource_stats()
118 pcur += ocrdma_add_stat(stats, pcur, "active_uc_dpp_qps", in ocrdma_resource_stats()
120 pcur += ocrdma_add_stat(stats, pcur, "active_ud_dpp_qps", in ocrdma_resource_stats()
122 pcur += ocrdma_add_stat(stats, pcur, "active_rc_non_dpp_qps", in ocrdma_resource_stats()
124 pcur += ocrdma_add_stat(stats, pcur, "active_uc_non_dpp_qps", in ocrdma_resource_stats()
[all …]
/Linux-v4.19/drivers/net/wireless/broadcom/brcm80211/brcmsmac/
Ddebug.c112 struct macstat stats; in brcms_debugfs_macstat_read() local
116 stats = *(drvr->wlc->core->macstat_snapshot); in brcms_debugfs_macstat_read()
119 seq_printf(s, "txallfrm: %d\n", stats.txallfrm); in brcms_debugfs_macstat_read()
120 seq_printf(s, "txrtsfrm: %d\n", stats.txrtsfrm); in brcms_debugfs_macstat_read()
121 seq_printf(s, "txctsfrm: %d\n", stats.txctsfrm); in brcms_debugfs_macstat_read()
122 seq_printf(s, "txackfrm: %d\n", stats.txackfrm); in brcms_debugfs_macstat_read()
123 seq_printf(s, "txdnlfrm: %d\n", stats.txdnlfrm); in brcms_debugfs_macstat_read()
124 seq_printf(s, "txbcnfrm: %d\n", stats.txbcnfrm); in brcms_debugfs_macstat_read()
126 for (i = 0; i < ARRAY_SIZE(stats.txfunfl); i++) in brcms_debugfs_macstat_read()
127 seq_printf(s, " %d", stats.txfunfl[i]); in brcms_debugfs_macstat_read()
[all …]
/Linux-v4.19/drivers/staging/rtlwifi/
Dstats.c87 rtlpriv->stats.pwdb_all_cnt += pstatus->rx_pwdb_all; in rtl_process_ui_rssi()
88 rtlpriv->stats.rssi_calculate_cnt++; in rtl_process_ui_rssi()
90 if (rtlpriv->stats.ui_rssi.total_num++ >= PHY_RSSI_SLID_WIN_MAX) { in rtl_process_ui_rssi()
91 rtlpriv->stats.ui_rssi.total_num = PHY_RSSI_SLID_WIN_MAX; in rtl_process_ui_rssi()
92 last_rssi = rtlpriv->stats.ui_rssi.elements[ in rtl_process_ui_rssi()
93 rtlpriv->stats.ui_rssi.index]; in rtl_process_ui_rssi()
94 rtlpriv->stats.ui_rssi.total_val -= last_rssi; in rtl_process_ui_rssi()
96 rtlpriv->stats.ui_rssi.total_val += pstatus->signalstrength; in rtl_process_ui_rssi()
97 rtlpriv->stats.ui_rssi.elements[rtlpriv->stats.ui_rssi.index++] = in rtl_process_ui_rssi()
99 if (rtlpriv->stats.ui_rssi.index >= PHY_RSSI_SLID_WIN_MAX) in rtl_process_ui_rssi()
[all …]
/Linux-v4.19/drivers/net/wireless/realtek/rtlwifi/
Dstats.c101 rtlpriv->stats.pwdb_all_cnt += pstatus->rx_pwdb_all; in rtl_process_ui_rssi()
102 rtlpriv->stats.rssi_calculate_cnt++; in rtl_process_ui_rssi()
104 if (rtlpriv->stats.ui_rssi.total_num++ >= PHY_RSSI_SLID_WIN_MAX) { in rtl_process_ui_rssi()
105 rtlpriv->stats.ui_rssi.total_num = PHY_RSSI_SLID_WIN_MAX; in rtl_process_ui_rssi()
106 last_rssi = rtlpriv->stats.ui_rssi.elements[ in rtl_process_ui_rssi()
107 rtlpriv->stats.ui_rssi.index]; in rtl_process_ui_rssi()
108 rtlpriv->stats.ui_rssi.total_val -= last_rssi; in rtl_process_ui_rssi()
110 rtlpriv->stats.ui_rssi.total_val += pstatus->signalstrength; in rtl_process_ui_rssi()
111 rtlpriv->stats.ui_rssi.elements[rtlpriv->stats.ui_rssi.index++] = in rtl_process_ui_rssi()
113 if (rtlpriv->stats.ui_rssi.index >= PHY_RSSI_SLID_WIN_MAX) in rtl_process_ui_rssi()
[all …]
/Linux-v4.19/kernel/
Dtsacct.c33 struct taskstats *stats, struct task_struct *tsk) in bacct_add_tsk() argument
45 stats->ac_etime = delta; in bacct_add_tsk()
48 stats->ac_btime = get_seconds() - delta; in bacct_add_tsk()
50 stats->ac_exitcode = tsk->exit_code; in bacct_add_tsk()
52 stats->ac_flag |= AFORK; in bacct_add_tsk()
55 stats->ac_flag |= ASU; in bacct_add_tsk()
57 stats->ac_flag |= ACORE; in bacct_add_tsk()
59 stats->ac_flag |= AXSIG; in bacct_add_tsk()
60 stats->ac_nice = task_nice(tsk); in bacct_add_tsk()
61 stats->ac_sched = tsk->policy; in bacct_add_tsk()
[all …]
Dtaskstats.c171 struct task_struct *tsk, struct taskstats *stats) in fill_stats() argument
173 memset(stats, 0, sizeof(*stats)); in fill_stats()
181 delayacct_add_tsk(stats, tsk); in fill_stats()
184 stats->version = TASKSTATS_VERSION; in fill_stats()
185 stats->nvcsw = tsk->nvcsw; in fill_stats()
186 stats->nivcsw = tsk->nivcsw; in fill_stats()
187 bacct_add_tsk(user_ns, pid_ns, stats, tsk); in fill_stats()
190 xacct_add_tsk(stats, tsk); in fill_stats()
193 static int fill_stats_for_pid(pid_t pid, struct taskstats *stats) in fill_stats_for_pid() argument
200 fill_stats(current_user_ns(), task_active_pid_ns(current), tsk, stats); in fill_stats_for_pid()
[all …]
/Linux-v4.19/fs/ocfs2/
Dblockcheck.c250 static void ocfs2_blockcheck_debug_remove(struct ocfs2_blockcheck_stats *stats) in ocfs2_blockcheck_debug_remove() argument
252 if (stats) { in ocfs2_blockcheck_debug_remove()
253 debugfs_remove(stats->b_debug_check); in ocfs2_blockcheck_debug_remove()
254 stats->b_debug_check = NULL; in ocfs2_blockcheck_debug_remove()
255 debugfs_remove(stats->b_debug_failure); in ocfs2_blockcheck_debug_remove()
256 stats->b_debug_failure = NULL; in ocfs2_blockcheck_debug_remove()
257 debugfs_remove(stats->b_debug_recover); in ocfs2_blockcheck_debug_remove()
258 stats->b_debug_recover = NULL; in ocfs2_blockcheck_debug_remove()
259 debugfs_remove(stats->b_debug_dir); in ocfs2_blockcheck_debug_remove()
260 stats->b_debug_dir = NULL; in ocfs2_blockcheck_debug_remove()
[all …]
/Linux-v4.19/drivers/net/wireless/st/cw1200/
Dqueue.c31 struct cw1200_queue_stats *stats = queue->stats; in __cw1200_queue_lock() local
35 ieee80211_stop_queue(stats->priv->hw, queue->queue_id); in __cw1200_queue_lock()
41 struct cw1200_queue_stats *stats = queue->stats; in __cw1200_queue_unlock() local
46 ieee80211_wake_queue(stats->priv->hw, queue->queue_id); in __cw1200_queue_unlock()
69 static void cw1200_queue_post_gc(struct cw1200_queue_stats *stats, in cw1200_queue_post_gc() argument
76 stats->skb_dtor(stats->priv, item->skb, &item->txpriv); in cw1200_queue_post_gc()
96 struct cw1200_queue_stats *stats = queue->stats; in __cw1200_queue_gc() local
105 spin_lock_bh(&stats->lock); in __cw1200_queue_gc()
106 --stats->num_queued; in __cw1200_queue_gc()
107 if (!--stats->link_map_cache[item->txpriv.link_id]) in __cw1200_queue_gc()
[all …]
/Linux-v4.19/drivers/scsi/snic/
Dsnic_debugfs.c141 struct snic_stats *stats = &snic->s_stats; in snic_reset_stats_write() local
142 u64 *io_stats_p = (u64 *) &stats->io; in snic_reset_stats_write()
143 u64 *fw_stats_p = (u64 *) &stats->fw; in snic_reset_stats_write()
168 atomic64_read(&stats->io.active)); in snic_reset_stats_write()
169 memset(&stats->abts, 0, sizeof(struct snic_abort_stats)); in snic_reset_stats_write()
170 memset(&stats->reset, 0, sizeof(struct snic_reset_stats)); in snic_reset_stats_write()
171 memset(&stats->misc, 0, sizeof(struct snic_misc_stats)); in snic_reset_stats_write()
202 struct snic_stats *stats = &snic->s_stats; in snic_stats_show() local
213 maxio_tm = (u64) atomic64_read(&stats->io.max_time); in snic_stats_show()
229 (u64) atomic64_read(&stats->io.active), in snic_stats_show()
[all …]
/Linux-v4.19/Documentation/trace/postprocess/
Dtrace-vmscan-postprocess.pl464 my %stats = %$hashref;
482 foreach $process_pid (keys %stats) {
484 if (!$stats{$process_pid}->{HIGH_DIRECT_RECLAIM_LATENCY}[0] &&
485 !$stats{$process_pid}->{HIGH_KSWAPD_LATENCY}[0]) {
491 while (defined $stats{$process_pid}->{HIGH_DIRECT_RECLAIM_LATENCY}[$index] ||
492 defined $stats{$process_pid}->{HIGH_KSWAPD_LATENCY}[$index]) {
494 if ($stats{$process_pid}->{HIGH_DIRECT_RECLAIM_LATENCY}[$index]) {
495 printf("%s ", $stats{$process_pid}->{HIGH_DIRECT_RECLAIM_LATENCY}[$index]) if !$opt_ignorepid;
496 my ($dummy, $latency) = split(/-/, $stats{$process_pid}->{HIGH_DIRECT_RECLAIM_LATENCY}[$index]);
499 printf("%s ", $stats{$process_pid}->{HIGH_KSWAPD_LATENCY}[$index]) if !$opt_ignorepid;
[all …]
/Linux-v4.19/drivers/scsi/fnic/
Dfnic_trace.c216 struct fnic_stats *stats) in fnic_get_stats_data() argument
235 (s64)stats->stats_timestamps.last_reset_time.tv_sec, in fnic_get_stats_data()
236 stats->stats_timestamps.last_reset_time.tv_nsec, in fnic_get_stats_data()
237 (s64)stats->stats_timestamps.last_read_time.tv_sec, in fnic_get_stats_data()
238 stats->stats_timestamps.last_read_time.tv_nsec, in fnic_get_stats_data()
239 (s64)timespec64_sub(val1, stats->stats_timestamps.last_reset_time).tv_sec, in fnic_get_stats_data()
240 timespec64_sub(val1, stats->stats_timestamps.last_reset_time).tv_nsec, in fnic_get_stats_data()
241 (s64)timespec64_sub(val1, stats->stats_timestamps.last_read_time).tv_sec, in fnic_get_stats_data()
242 timespec64_sub(val1, stats->stats_timestamps.last_read_time).tv_nsec); in fnic_get_stats_data()
244 stats->stats_timestamps.last_read_time = val1; in fnic_get_stats_data()
[all …]
/Linux-v4.19/block/
Dbfq-cgroup.c37 static void bfqg_stats_mark_##name(struct bfqg_stats *stats) \
39 stats->flags |= (1 << BFQG_stats_##name); \
41 static void bfqg_stats_clear_##name(struct bfqg_stats *stats) \
43 stats->flags &= ~(1 << BFQG_stats_##name); \
45 static int bfqg_stats_##name(struct bfqg_stats *stats) \
47 return (stats->flags & (1 << BFQG_stats_##name)) != 0; \
56 static void bfqg_stats_update_group_wait_time(struct bfqg_stats *stats) in BFQG_FLAG_FNS()
60 if (!bfqg_stats_waiting(stats)) in BFQG_FLAG_FNS()
64 if (now > stats->start_group_wait_time) in BFQG_FLAG_FNS()
65 blkg_stat_add(&stats->group_wait_time, in BFQG_FLAG_FNS()
[all …]
/Linux-v4.19/arch/mips/sibyte/common/
Dbus_watcher.c115 struct bw_stats_struct *stats = m->private; in bw_proc_show() local
120 stats->l2_cor_d, stats->l2_bad_d); in bw_proc_show()
122 stats->l2_cor_t, stats->l2_bad_t); in bw_proc_show()
124 stats->mem_cor_d, stats->mem_bad_d); in bw_proc_show()
125 seq_printf(m, "IO-err %8ld\n", stats->bus_error); in bw_proc_show()
128 (unsigned int)(G_SCD_BERR_TID(stats->status) & 0x3f), in bw_proc_show()
129 (int)(G_SCD_BERR_TID(stats->status) >> 6), in bw_proc_show()
130 (int)G_SCD_BERR_RID(stats->status), in bw_proc_show()
131 (int)G_SCD_BERR_DCODE(stats->status)); in bw_proc_show()
134 if (stats->status & M_SCD_BERR_MULTERRS) in bw_proc_show()
[all …]
/Linux-v4.19/tools/perf/util/
Dmem-events.c312 int c2c_decode_stats(struct c2c_stats *stats, struct mem_info *mi) in c2c_decode_stats() argument
329 stats->__f++; \ in c2c_decode_stats()
330 stats->tot_hitm++; \ in c2c_decode_stats()
335 stats->nr_entries++; in c2c_decode_stats()
337 if (lock & P(LOCK, LOCKED)) stats->locks++; in c2c_decode_stats()
341 stats->load++; in c2c_decode_stats()
344 stats->ld_noadrs++; in c2c_decode_stats()
349 if (lvl & P(LVL, UNC)) stats->ld_uncache++; in c2c_decode_stats()
350 if (lvl & P(LVL, IO)) stats->ld_io++; in c2c_decode_stats()
351 if (lvl & P(LVL, LFB)) stats->ld_fbhit++; in c2c_decode_stats()
[all …]
Dstat.h10 struct stats { struct
32 struct stats res_stats[3]; argument
94 struct runtime_stat *stats; member
98 void update_stats(struct stats *stats, u64 val);
99 double avg_stats(struct stats *stats);
100 double stddev_stats(struct stats *stats);
103 static inline void init_stats(struct stats *stats) in init_stats() argument
105 stats->n = 0.0; in init_stats()
106 stats->mean = 0.0; in init_stats()
107 stats->M2 = 0.0; in init_stats()
[all …]
/Linux-v4.19/net/wireless/
Dwext-proc.c33 struct iw_statistics *stats = get_wireless_stats(dev); in wireless_seq_printf_stats() local
37 if (!stats) { in wireless_seq_printf_stats()
40 stats = &nullstats; in wireless_seq_printf_stats()
44 stats = &nullstats; in wireless_seq_printf_stats()
48 if (stats) { in wireless_seq_printf_stats()
51 dev->name, stats->status, stats->qual.qual, in wireless_seq_printf_stats()
52 stats->qual.updated & IW_QUAL_QUAL_UPDATED in wireless_seq_printf_stats()
54 ((__s32) stats->qual.level) - in wireless_seq_printf_stats()
55 ((stats->qual.updated & IW_QUAL_DBM) ? 0x100 : 0), in wireless_seq_printf_stats()
56 stats->qual.updated & IW_QUAL_LEVEL_UPDATED in wireless_seq_printf_stats()
[all …]
/Linux-v4.19/drivers/infiniband/hw/hfi1/
Dvnic_main.c171 #define SUM_GRP_COUNTERS(stats, qstats, x_grp) do { \ argument
174 dst64 = &stats->x_grp.unicast; \
175 dst64 <= &stats->x_grp.s_1519_max;) { \
182 struct opa_vnic_stats *stats) in hfi1_vnic_update_stats() argument
189 struct opa_vnic_stats *qstats = &vinfo->stats[i]; in hfi1_vnic_update_stats()
190 struct rtnl_link_stats64 *qnstats = &vinfo->stats[i].netstats; in hfi1_vnic_update_stats()
192 stats->netstats.tx_fifo_errors += qnstats->tx_fifo_errors; in hfi1_vnic_update_stats()
193 stats->netstats.tx_carrier_errors += qnstats->tx_carrier_errors; in hfi1_vnic_update_stats()
194 stats->tx_drop_state += qstats->tx_drop_state; in hfi1_vnic_update_stats()
195 stats->tx_dlid_zero += qstats->tx_dlid_zero; in hfi1_vnic_update_stats()
[all …]
/Linux-v4.19/drivers/infiniband/hw/cxgb4/
Dresource.c125 mutex_lock(&rdev->stats.lock); in c4iw_get_cqid()
126 rdev->stats.qid.cur += rdev->qpmask + 1; in c4iw_get_cqid()
127 mutex_unlock(&rdev->stats.lock); in c4iw_get_cqid()
156 mutex_lock(&rdev->stats.lock); in c4iw_get_cqid()
157 if (rdev->stats.qid.cur > rdev->stats.qid.max) in c4iw_get_cqid()
158 rdev->stats.qid.max = rdev->stats.qid.cur; in c4iw_get_cqid()
159 mutex_unlock(&rdev->stats.lock); in c4iw_get_cqid()
194 mutex_lock(&rdev->stats.lock); in c4iw_get_qpid()
195 rdev->stats.qid.fail++; in c4iw_get_qpid()
196 mutex_unlock(&rdev->stats.lock); in c4iw_get_qpid()
[all …]
/Linux-v4.19/drivers/staging/rtl8192u/
Dr819xU_cmdpkt.c89 priv->stats.txfeedbackok++; in cmpk_count_txstatistic()
90 priv->stats.txoktotal++; in cmpk_count_txstatistic()
91 priv->stats.txokbytestotal += pstx_fb->pkt_length; in cmpk_count_txstatistic()
92 priv->stats.txokinperiod++; in cmpk_count_txstatistic()
96 priv->stats.txmulticast++; in cmpk_count_txstatistic()
97 priv->stats.txbytesmulticast += pstx_fb->pkt_length; in cmpk_count_txstatistic()
99 priv->stats.txbroadcast++; in cmpk_count_txstatistic()
100 priv->stats.txbytesbroadcast += pstx_fb->pkt_length; in cmpk_count_txstatistic()
102 priv->stats.txunicast++; in cmpk_count_txstatistic()
103 priv->stats.txbytesunicast += pstx_fb->pkt_length; in cmpk_count_txstatistic()
[all …]
/Linux-v4.19/sound/soc/fsl/
Dfsl_ssi_dbg.c18 dbg->stats.rfrc++; in fsl_ssi_dbg_isr()
21 dbg->stats.tfrc++; in fsl_ssi_dbg_isr()
24 dbg->stats.cmdau++; in fsl_ssi_dbg_isr()
27 dbg->stats.cmddu++; in fsl_ssi_dbg_isr()
30 dbg->stats.rxt++; in fsl_ssi_dbg_isr()
33 dbg->stats.rdr1++; in fsl_ssi_dbg_isr()
36 dbg->stats.rdr0++; in fsl_ssi_dbg_isr()
39 dbg->stats.tde1++; in fsl_ssi_dbg_isr()
42 dbg->stats.tde0++; in fsl_ssi_dbg_isr()
45 dbg->stats.roe1++; in fsl_ssi_dbg_isr()
[all …]
/Linux-v4.19/drivers/net/ethernet/netronome/nfp/
Dnfp_net_repr.c61 struct nfp_repr_pcpu_stats *stats; in nfp_repr_inc_tx_stats() local
65 this_cpu_inc(repr->stats->tx_drops); in nfp_repr_inc_tx_stats()
69 stats = this_cpu_ptr(repr->stats); in nfp_repr_inc_tx_stats()
70 u64_stats_update_begin(&stats->syncp); in nfp_repr_inc_tx_stats()
71 stats->tx_packets++; in nfp_repr_inc_tx_stats()
72 stats->tx_bytes += len; in nfp_repr_inc_tx_stats()
73 u64_stats_update_end(&stats->syncp); in nfp_repr_inc_tx_stats()
79 struct nfp_repr_pcpu_stats *stats; in nfp_repr_inc_rx_stats() local
81 stats = this_cpu_ptr(repr->stats); in nfp_repr_inc_rx_stats()
82 u64_stats_update_begin(&stats->syncp); in nfp_repr_inc_rx_stats()
[all …]
/Linux-v4.19/drivers/net/wireless/realtek/rtlwifi/rtl8192de/
Dtrx.c224 rtlpriv->stats.rx_snr_db[i] = in _rtl92de_query_rxphystatus()
267 if (rtlpriv->stats.rx_rssi_percentage[rfpath] == 0) { in rtl92d_loop_over_paths()
268 rtlpriv->stats.rx_rssi_percentage[rfpath] = in rtl92d_loop_over_paths()
273 rtlpriv->stats.rx_rssi_percentage[rfpath]) { in rtl92d_loop_over_paths()
274 rtlpriv->stats.rx_rssi_percentage[rfpath] = in rtl92d_loop_over_paths()
275 ((rtlpriv->stats.rx_rssi_percentage[rfpath] * in rtl92d_loop_over_paths()
279 rtlpriv->stats.rx_rssi_percentage[rfpath] = in rtl92d_loop_over_paths()
280 rtlpriv->stats.rx_rssi_percentage[rfpath] + 1; in rtl92d_loop_over_paths()
282 rtlpriv->stats.rx_rssi_percentage[rfpath] = in rtl92d_loop_over_paths()
283 ((rtlpriv->stats.rx_rssi_percentage[rfpath] * in rtl92d_loop_over_paths()
[all …]
/Linux-v4.19/tools/perf/tests/
Dhists_filter.c154 hists->stats.nr_events[PERF_RECORD_SAMPLE] == 10); in test__hists_filter()
158 hists->stats.total_period == 1000); in test__hists_filter()
160 hists->stats.nr_events[PERF_RECORD_SAMPLE] == in test__hists_filter()
161 hists->stats.nr_non_filtered_samples); in test__hists_filter()
165 hists->stats.total_period == in test__hists_filter()
166 hists->stats.total_non_filtered_period); in test__hists_filter()
179 hists->stats.nr_events[PERF_RECORD_SAMPLE] == 10); in test__hists_filter()
183 hists->stats.total_period == 1000); in test__hists_filter()
187 hists->stats.nr_non_filtered_samples == 4); in test__hists_filter()
191 hists->stats.total_non_filtered_period == 400); in test__hists_filter()
[all …]

12345678910>>...63