Lines Matching refs:app_stats

151 	struct xsk_app_stats app_stats;  member
229 rx_empty_polls_ps = (xsks[i]->app_stats.rx_empty_polls - in dump_app_stats()
230 xsks[i]->app_stats.prev_rx_empty_polls) * 1000000000. / dt; in dump_app_stats()
231 fill_fail_polls_ps = (xsks[i]->app_stats.fill_fail_polls - in dump_app_stats()
232 xsks[i]->app_stats.prev_fill_fail_polls) * 1000000000. / dt; in dump_app_stats()
233 copy_tx_sendtos_ps = (xsks[i]->app_stats.copy_tx_sendtos - in dump_app_stats()
234 xsks[i]->app_stats.prev_copy_tx_sendtos) * 1000000000. / dt; in dump_app_stats()
235 tx_wakeup_sendtos_ps = (xsks[i]->app_stats.tx_wakeup_sendtos - in dump_app_stats()
236 xsks[i]->app_stats.prev_tx_wakeup_sendtos) in dump_app_stats()
238 opt_polls_ps = (xsks[i]->app_stats.opt_polls - in dump_app_stats()
239 xsks[i]->app_stats.prev_opt_polls) * 1000000000. / dt; in dump_app_stats()
242 printf(fmt, "rx empty polls", rx_empty_polls_ps, xsks[i]->app_stats.rx_empty_polls); in dump_app_stats()
244 xsks[i]->app_stats.fill_fail_polls); in dump_app_stats()
246 xsks[i]->app_stats.copy_tx_sendtos); in dump_app_stats()
248 xsks[i]->app_stats.tx_wakeup_sendtos); in dump_app_stats()
249 printf(fmt, "opt polls", opt_polls_ps, xsks[i]->app_stats.opt_polls); in dump_app_stats()
251 xsks[i]->app_stats.prev_rx_empty_polls = xsks[i]->app_stats.rx_empty_polls; in dump_app_stats()
252 xsks[i]->app_stats.prev_fill_fail_polls = xsks[i]->app_stats.fill_fail_polls; in dump_app_stats()
253 xsks[i]->app_stats.prev_copy_tx_sendtos = xsks[i]->app_stats.copy_tx_sendtos; in dump_app_stats()
254 xsks[i]->app_stats.prev_tx_wakeup_sendtos = xsks[i]->app_stats.tx_wakeup_sendtos; in dump_app_stats()
255 xsks[i]->app_stats.prev_opt_polls = xsks[i]->app_stats.opt_polls; in dump_app_stats()
884 xsk->app_stats.rx_empty_polls = 0; in xsk_configure_socket()
885 xsk->app_stats.fill_fail_polls = 0; in xsk_configure_socket()
886 xsk->app_stats.copy_tx_sendtos = 0; in xsk_configure_socket()
887 xsk->app_stats.tx_wakeup_sendtos = 0; in xsk_configure_socket()
888 xsk->app_stats.opt_polls = 0; in xsk_configure_socket()
889 xsk->app_stats.prev_rx_empty_polls = 0; in xsk_configure_socket()
890 xsk->app_stats.prev_fill_fail_polls = 0; in xsk_configure_socket()
891 xsk->app_stats.prev_copy_tx_sendtos = 0; in xsk_configure_socket()
892 xsk->app_stats.prev_tx_wakeup_sendtos = 0; in xsk_configure_socket()
893 xsk->app_stats.prev_opt_polls = 0; in xsk_configure_socket()
1141 xsk->app_stats.copy_tx_sendtos++; in complete_tx_l2fwd()
1159 xsk->app_stats.fill_fail_polls++; in complete_tx_l2fwd()
1186 xsk->app_stats.tx_wakeup_sendtos++; in complete_tx_only()
1206 xsk->app_stats.rx_empty_polls++; in rx_drop()
1217 xsk->app_stats.fill_fail_polls++; in rx_drop()
1253 xsks[i]->app_stats.opt_polls++; in rx_drop_all()
1338 xsks[i]->app_stats.opt_polls++; in tx_only_all()
1371 xsk->app_stats.rx_empty_polls++; in l2fwd()
1384 xsk->app_stats.tx_wakeup_sendtos++; in l2fwd()
1422 xsks[i]->app_stats.opt_polls++; in l2fwd_all()