* Read the drop probability */
| 181 | * Read the drop probability |
| 182 | */ |
| 183 | static double rte_pie_get_drop_prob(const struct rte_pie_config *pie_cfg, |
| 184 | struct rte_pie *pie) |
| 185 | { |
| 186 | /**< Current packet drop probability */ |
| 187 | RTE_SET_USED(pie_cfg); |
| 188 | return pie->drop_prob; |
| 189 | } |
| 190 | |
| 191 | static double rte_pie_get_avg_dq_time(const struct rte_pie_config *pie_cfg, |
| 192 | struct rte_pie *pie) |
no outgoing calls
no test coverage detected