| 1105 | } |
| 1106 | |
| 1107 | static void |
| 1108 | swtim_get_info(const struct rte_event_timer_adapter *adapter, |
| 1109 | struct rte_event_timer_adapter_info *adapter_info) |
| 1110 | { |
| 1111 | struct swtim *sw = swtim_pmd_priv(adapter); |
| 1112 | adapter_info->min_resolution_ns = sw->timer_tick_ns; |
| 1113 | adapter_info->max_tmo_ns = sw->max_tmo_ns; |
| 1114 | } |
| 1115 | |
| 1116 | static int |
| 1117 | swtim_stats_get(const struct rte_event_timer_adapter *adapter, |
nothing calls this directly
no test coverage detected