From 70c7aa53dc057534b68c000e003377afe2c8cf9f Mon Sep 17 00:00:00 2001 From: Denis Pronin Date: Mon, 7 Apr 2025 14:03:53 +0300 Subject: [PATCH] ring/rte_ring.h: fix documentation of rte_ring_create() Signed-off-by: Denis Pronin --- lib/ring/rte_ring.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ring/rte_ring.h b/lib/ring/rte_ring.h index 3382a8e2f2c..b6f0e5d8778 100644 --- a/lib/ring/rte_ring.h +++ b/lib/ring/rte_ring.h @@ -132,7 +132,7 @@ void rte_ring_free(struct rte_ring *r); /** * Create a new ring named *name* in memory. * - * This function uses ``memzone_reserve()`` to allocate memory. Then it + * This function uses ``rte_memzone_reserve()`` to allocate memory. Then it * calls rte_ring_init() to initialize an empty ring. * * The new ring size is set to *count*, which must be a power of two.