Lines Matching refs:rs
218 PrintThreadRoundStats(mtcp_manager_t mtcp, struct run_stat *rs) in PrintThreadRoundStats() argument
221 rs->rounds = mtcp->runstat.rounds - mtcp->p_runstat.rounds; in PrintThreadRoundStats()
222 rs->rounds_rx = mtcp->runstat.rounds_rx - mtcp->p_runstat.rounds_rx; in PrintThreadRoundStats()
223 rs->rounds_rx_try = mtcp->runstat.rounds_rx_try - mtcp->p_runstat.rounds_rx_try; in PrintThreadRoundStats()
224 rs->rounds_tx = mtcp->runstat.rounds_tx - mtcp->p_runstat.rounds_tx; in PrintThreadRoundStats()
225 rs->rounds_tx_try = mtcp->runstat.rounds_tx_try - mtcp->p_runstat.rounds_tx_try; in PrintThreadRoundStats()
226 rs->rounds_select = mtcp->runstat.rounds_select - mtcp->p_runstat.rounds_select; in PrintThreadRoundStats()
227 rs->rounds_select_rx = mtcp->runstat.rounds_select_rx - mtcp->p_runstat.rounds_select_rx; in PrintThreadRoundStats()
228 rs->rounds_select_tx = mtcp->runstat.rounds_select_tx - mtcp->p_runstat.rounds_select_tx; in PrintThreadRoundStats()
229 rs->rounds_select_intr = mtcp->runstat.rounds_select_intr - mtcp->p_runstat.rounds_select_intr; in PrintThreadRoundStats()
230 rs->rounds_twcheck = mtcp->runstat.rounds_twcheck - mtcp->p_runstat.rounds_twcheck; in PrintThreadRoundStats()
236 mtcp->ctx->cpu, rs->rounds / ROUND_DIV, in PrintThreadRoundStats()
237 rs->rounds_rx / ROUND_DIV, rs->rounds_rx_try / ROUND_DIV, in PrintThreadRoundStats()
238 rs->rounds_tx / ROUND_DIV, rs->rounds_tx_try / ROUND_DIV, in PrintThreadRoundStats()
239 rs->rounds_select, in PrintThreadRoundStats()
240 rs->rounds_select_rx, rs->rounds_select_tx, rs->rounds_select_intr); in PrintThreadRoundStats()
294 struct run_stat rs; in PrintNetworkStats() local
379 PrintThreadRoundStats(g_mtcp[i], &rs); in PrintNetworkStats()
381 g_runstat.rounds += rs.rounds; in PrintNetworkStats()
382 g_runstat.rounds_rx += rs.rounds_rx; in PrintNetworkStats()
383 g_runstat.rounds_rx_try += rs.rounds_rx_try; in PrintNetworkStats()
384 g_runstat.rounds_tx += rs.rounds_tx; in PrintNetworkStats()
385 g_runstat.rounds_tx_try += rs.rounds_tx_try; in PrintNetworkStats()
386 g_runstat.rounds_select += rs.rounds_select; in PrintNetworkStats()
387 g_runstat.rounds_select_rx += rs.rounds_select_rx; in PrintNetworkStats()
388 g_runstat.rounds_select_tx += rs.rounds_select_tx; in PrintNetworkStats()