| 183 | } |
| 184 | |
| 185 | static int |
| 186 | pdcp_dl_release(struct rte_pdcp_entity *entity, struct rte_mbuf *out_mb[]) |
| 187 | { |
| 188 | struct entity_priv_dl_part *dl = entity_dl_part_get(entity); |
| 189 | struct entity_priv *en_priv = entity_priv_get(entity); |
| 190 | int nb_out; |
| 191 | |
| 192 | nb_out = pdcp_reorder_up_to_get(&dl->reorder, out_mb, entity->max_pkt_cache, |
| 193 | en_priv->state.rx_next); |
| 194 | |
| 195 | return nb_out; |
| 196 | } |
| 197 | |
| 198 | int |
| 199 | rte_pdcp_entity_release(struct rte_pdcp_entity *pdcp_entity, struct rte_mbuf *out_mb[]) |
no test coverage detected