From fbba0a3bf2dbfd86e48efe9745af9f94203d5f80 Mon Sep 17 00:00:00 2001 From: Mohammad Abdul Awal Date: Thu, 11 May 2017 13:36:12 +0100 Subject: Added rte_ring wrapper functions to support dpdk-17.05 and older version Change-Id: I5cfcff8be275ab2a2fb4ad6a62777a8cb88f425b Signed-off-by: Mohammad Abdul Awal --- lib/libtle_l4p/tcp_ofo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/libtle_l4p/tcp_ofo.h') diff --git a/lib/libtle_l4p/tcp_ofo.h b/lib/libtle_l4p/tcp_ofo.h index 4f3bdab..4580402 100644 --- a/lib/libtle_l4p/tcp_ofo.h +++ b/lib/libtle_l4p/tcp_ofo.h @@ -230,7 +230,7 @@ _ofodb_enqueue(struct rte_ring *r, const struct ofodb *db, union seqlen *sl) num = db->nb_elem; sl->raw = db->sl.raw; - n = rte_ring_enqueue_burst(r, (void * const *)db->obj, num); + n = _rte_ring_enqueue_burst(r, (void * const *)db->obj, num); sl->len -= tcp_mbuf_seq_free(db->obj + n, num - n); return num - n; -- cgit 1.2.3-korg