Lines Matching refs:app_stats

149 	struct xsk_app_stats app_stats;  member
226 rx_empty_polls_ps = (xsks[i]->app_stats.rx_empty_polls - in dump_app_stats()
227 xsks[i]->app_stats.prev_rx_empty_polls) * 1000000000. / dt; in dump_app_stats()
228 fill_fail_polls_ps = (xsks[i]->app_stats.fill_fail_polls - in dump_app_stats()
229 xsks[i]->app_stats.prev_fill_fail_polls) * 1000000000. / dt; in dump_app_stats()
230 copy_tx_sendtos_ps = (xsks[i]->app_stats.copy_tx_sendtos - in dump_app_stats()
231 xsks[i]->app_stats.prev_copy_tx_sendtos) * 1000000000. / dt; in dump_app_stats()
232 tx_wakeup_sendtos_ps = (xsks[i]->app_stats.tx_wakeup_sendtos - in dump_app_stats()
233 xsks[i]->app_stats.prev_tx_wakeup_sendtos) in dump_app_stats()
235 opt_polls_ps = (xsks[i]->app_stats.opt_polls - in dump_app_stats()
236 xsks[i]->app_stats.prev_opt_polls) * 1000000000. / dt; in dump_app_stats()
239 printf(fmt, "rx empty polls", rx_empty_polls_ps, xsks[i]->app_stats.rx_empty_polls); in dump_app_stats()
241 xsks[i]->app_stats.fill_fail_polls); in dump_app_stats()
243 xsks[i]->app_stats.copy_tx_sendtos); in dump_app_stats()
245 xsks[i]->app_stats.tx_wakeup_sendtos); in dump_app_stats()
246 printf(fmt, "opt polls", opt_polls_ps, xsks[i]->app_stats.opt_polls); in dump_app_stats()
248 xsks[i]->app_stats.prev_rx_empty_polls = xsks[i]->app_stats.rx_empty_polls; in dump_app_stats()
249 xsks[i]->app_stats.prev_fill_fail_polls = xsks[i]->app_stats.fill_fail_polls; in dump_app_stats()
250 xsks[i]->app_stats.prev_copy_tx_sendtos = xsks[i]->app_stats.copy_tx_sendtos; in dump_app_stats()
251 xsks[i]->app_stats.prev_tx_wakeup_sendtos = xsks[i]->app_stats.tx_wakeup_sendtos; in dump_app_stats()
252 xsks[i]->app_stats.prev_opt_polls = xsks[i]->app_stats.opt_polls; in dump_app_stats()
874 xsk->app_stats.rx_empty_polls = 0; in xsk_configure_socket()
875 xsk->app_stats.fill_fail_polls = 0; in xsk_configure_socket()
876 xsk->app_stats.copy_tx_sendtos = 0; in xsk_configure_socket()
877 xsk->app_stats.tx_wakeup_sendtos = 0; in xsk_configure_socket()
878 xsk->app_stats.opt_polls = 0; in xsk_configure_socket()
879 xsk->app_stats.prev_rx_empty_polls = 0; in xsk_configure_socket()
880 xsk->app_stats.prev_fill_fail_polls = 0; in xsk_configure_socket()
881 xsk->app_stats.prev_copy_tx_sendtos = 0; in xsk_configure_socket()
882 xsk->app_stats.prev_tx_wakeup_sendtos = 0; in xsk_configure_socket()
883 xsk->app_stats.prev_opt_polls = 0; in xsk_configure_socket()
1118 xsk->app_stats.copy_tx_sendtos++; in complete_tx_l2fwd()
1136 xsk->app_stats.fill_fail_polls++; in complete_tx_l2fwd()
1163 xsk->app_stats.tx_wakeup_sendtos++; in complete_tx_only()
1184 xsk->app_stats.rx_empty_polls++; in rx_drop()
1195 xsk->app_stats.fill_fail_polls++; in rx_drop()
1231 xsks[i]->app_stats.opt_polls++; in rx_drop_all()
1313 xsks[i]->app_stats.opt_polls++; in tx_only_all()
1346 xsk->app_stats.rx_empty_polls++; in l2fwd()
1358 xsk->app_stats.tx_wakeup_sendtos++; in l2fwd()
1399 xsks[i]->app_stats.opt_polls++; in l2fwd_all()