ring: fix name size in ring structure
authorHonnappa Nagarahalli <honnappa.nagarahalli@arm.com>
Thu, 14 Oct 2021 20:55:50 +0000 (15:55 -0500)
committerDavid Marchand <david.marchand@redhat.com>
Thu, 21 Oct 2021 07:32:04 +0000 (09:32 +0200)
Use correct define for the name array size. The change breaks ABI and
hence cannot be backported to stable branches.

Fixes: 38c9817ee1d8 ("mempool: adjust name size in related data types")

Signed-off-by: Honnappa Nagarahalli <honnappa.nagarahalli@arm.com>
Acked-by: Konstantin Ananyev <konstantin.ananyev@intel.com>
lib/ring/rte_ring_core.h

index 31f7200..46ad584 100644 (file)
@@ -118,12 +118,7 @@ struct rte_ring_hts_headtail {
  * a problem.
  */
 struct rte_ring {
-       /*
-        * Note: this field kept the RTE_MEMZONE_NAMESIZE size due to ABI
-        * compatibility requirements, it could be changed to RTE_RING_NAMESIZE
-        * next time the ABI changes
-        */
-       char name[RTE_MEMZONE_NAMESIZE] __rte_cache_aligned;
+       char name[RTE_RING_NAMESIZE] __rte_cache_aligned;
        /**< Name of the ring. */
        int flags;               /**< Flags supplied at creation. */
        const struct rte_memzone *memzone;