ring: remove unnecessary forward declaration
authorXiaolong Ye <xiaolong.ye@intel.com>
Thu, 16 May 2019 07:28:56 +0000 (15:28 +0800)
committerThomas Monjalon <thomas@monjalon.net>
Tue, 4 Jun 2019 11:09:51 +0000 (13:09 +0200)
As memzone.h is introduced by
commit 38c9817ee1d8 ("mempool: adjust name size in related data types"),
forward declaration for rte_memzone is no longer needed.

Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
Acked-by: Olivier Matz <olivier.matz@6wind.com>
lib/librte_ring/rte_ring.h

index e265e94..e5a175c 100644 (file)
@@ -61,8 +61,6 @@ enum rte_ring_queue_behavior {
 #define RTE_RING_NAMESIZE (RTE_MEMZONE_NAMESIZE - \
                           sizeof(RTE_RING_MZ_PREFIX) + 1)
 
-struct rte_memzone; /* forward declaration, so as not to require memzone.h */
-
 /* structure to hold a pair of head/tail values and other metadata */
 struct rte_ring_headtail {
        volatile uint32_t head;  /**< Prod/consumer head. */