Home
last modified time | relevance | path

Searched refs:opstats (Results 1 – 9 of 9) sorted by relevance

/openbmc/linux/drivers/infiniband/hw/qib/
H A Dqib_debugfs.c71 struct qib_opcode_stats_perctx *opstats; in _opcode_stats_seq_start() local
73 if (*pos >= ARRAY_SIZE(opstats->stats)) in _opcode_stats_seq_start()
80 struct qib_opcode_stats_perctx *opstats; in _opcode_stats_seq_next() local
83 if (*pos >= ARRAY_SIZE(opstats->stats)) in _opcode_stats_seq_next()
105 n_packets += dd->rcd[j]->opstats->stats[i].n_packets; in _opcode_stats_seq_show()
106 n_bytes += dd->rcd[j]->opstats->stats[i].n_bytes; in _opcode_stats_seq_show()
169 for (j = 0; j < ARRAY_SIZE(dd->rcd[i]->opstats->stats); j++) in _ctx_stats_seq_show()
170 n_packets += dd->rcd[i]->opstats->stats[j].n_packets; in _ctx_stats_seq_show()
H A Dqib_init.c182 rcd->opstats = kzalloc_node(sizeof(*rcd->opstats), in qib_create_ctxtdata()
184 if (!rcd->opstats) { in qib_create_ctxtdata()
944 kfree(rcd->opstats); in qib_free_ctxtdata()
945 rcd->opstats = NULL; in qib_free_ctxtdata()
H A Dqib.h227 struct qib_opcode_stats_perctx *opstats; member
H A Dqib_verbs.c315 rcd->opstats->stats[opcode].n_bytes += tlen; in qib_ib_rcv()
316 rcd->opstats->stats[opcode].n_packets++; in qib_ib_rcv()
/openbmc/linux/drivers/infiniband/hw/hfi1/
H A Dfault.c22 struct hfi1_opcode_stats_perctx *opstats; in _fault_stats_seq_start() local
24 if (*pos >= ARRAY_SIZE(opstats->stats)) in _fault_stats_seq_start()
31 struct hfi1_opcode_stats_perctx *opstats; in _fault_stats_seq_next() local
34 if (*pos >= ARRAY_SIZE(opstats->stats)) in _fault_stats_seq_next()
55 n_packets += rcd->opstats->stats[i].n_packets; in _fault_stats_seq_show()
56 n_bytes += rcd->opstats->stats[i].n_bytes; in _fault_stats_seq_show()
H A Ddebugfs.c58 struct hfi1_opcode_stats_perctx *opstats; in _opcode_stats_seq_start() local
60 if (*pos >= ARRAY_SIZE(opstats->stats)) in _opcode_stats_seq_start()
67 struct hfi1_opcode_stats_perctx *opstats; in _opcode_stats_seq_next() local
70 if (*pos >= ARRAY_SIZE(opstats->stats)) in _opcode_stats_seq_next()
102 n_packets += rcd->opstats->stats[i].n_packets; in _opcode_stats_seq_show()
103 n_bytes += rcd->opstats->stats[i].n_bytes; in _opcode_stats_seq_show()
202 for (j = 0; j < ARRAY_SIZE(rcd->opstats->stats); j++) in _ctx_stats_seq_show()
203 n_packets += rcd->opstats->stats[j].n_packets; in _ctx_stats_seq_show()
H A Dinit.c442 rcd->opstats = kzalloc_node(sizeof(*rcd->opstats), in hfi1_create_ctxtdata()
444 if (!rcd->opstats) in hfi1_create_ctxtdata()
1126 kfree(rcd->opstats); in hfi1_free_ctxtdata()
1131 rcd->opstats = NULL; in hfi1_free_ctxtdata()
H A Dverbs.c353 inc_opstats(tlen, &rcd->opstats->stats[opcode]); in hfi1_kdeth_eager_rcv()
407 inc_opstats(tlen, &rcd->opstats->stats[opcode]); in hfi1_kdeth_expected_rcv()
464 inc_opstats(packet->tlen, &rcd->opstats->stats[packet->opcode]); in hfi1_handle_packet()
H A Dhfi.h199 struct hfi1_opcode_stats_perctx *opstats; member