| 1114 | } |
| 1115 | |
| 1116 | static int |
| 1117 | swtim_stats_get(const struct rte_event_timer_adapter *adapter, |
| 1118 | struct rte_event_timer_adapter_stats *stats) |
| 1119 | { |
| 1120 | struct swtim *sw = swtim_pmd_priv(adapter); |
| 1121 | *stats = sw->stats; /* structure copy */ |
| 1122 | return 0; |
| 1123 | } |
| 1124 | |
| 1125 | static int |
| 1126 | swtim_stats_reset(const struct rte_event_timer_adapter *adapter) |
nothing calls this directly
no test coverage detected