]> git.droids-corp.org - dpdk.git/commitdiff
ring: fix Doxygen comment of internal function
authorCian Ferriter <cian.ferriter@intel.com>
Mon, 23 Aug 2021 17:28:44 +0000 (18:28 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Fri, 1 Oct 2021 12:39:12 +0000 (14:39 +0200)
Change "enqueue" to "dequeue" because the __rte_ring_move_cons_head()
function is updating the consumer head for dequeue.

Fixes: 0dfc98c507b1 ("ring: separate out head index manipulation")
Cc: stable@dpdk.org
Signed-off-by: Cian Ferriter <cian.ferriter@intel.com>
Acked-by: Honnappa Nagarahalli <honnappa.nagarahalli@arm.com>
lib/ring/rte_ring_c11_pvt.h
lib/ring/rte_ring_generic_pvt.h

index 37e0b2afd600e895c69900c8aa7aad9156f5ebd3..f895950df4876d4b235dffd68ca9050e90701109 100644 (file)
@@ -111,7 +111,7 @@ __rte_ring_move_prod_head(struct rte_ring *r, unsigned int is_sp,
  * @param is_sc
  *   Indicates whether multi-consumer path is needed or not
  * @param n
- *   The number of elements we will want to enqueue, i.e. how far should the
+ *   The number of elements we will want to dequeue, i.e. how far should the
  *   head be moved
  * @param behavior
  *   RTE_RING_QUEUE_FIXED:    Dequeue a fixed number of items from a ring
index c95ad7e12c027c6c4eddc36924f63c9c933d9b35..5acb6e59be2c396f6a4b22356bf2e77d26496e56 100644 (file)
@@ -106,7 +106,7 @@ __rte_ring_move_prod_head(struct rte_ring *r, unsigned int is_sp,
  * @param is_sc
  *   Indicates whether multi-consumer path is needed or not
  * @param n
- *   The number of elements we will want to enqueue, i.e. how far should the
+ *   The number of elements we will want to dequeue, i.e. how far should the
  *   head be moved
  * @param behavior
  *   RTE_RING_QUEUE_FIXED:    Dequeue a fixed number of items from a ring