]> git.droids-corp.org - dpdk.git/commitdiff
drivers/net: use structure marker from EAL
authorJerin Jacob <jerinj@marvell.com>
Thu, 19 Dec 2019 11:25:06 +0000 (16:55 +0530)
committerThomas Monjalon <thomas@monjalon.net>
Mon, 20 Jan 2020 20:17:35 +0000 (21:17 +0100)
Use new marker typedef available in EAL.

Signed-off-by: Jerin Jacob <jerinj@marvell.com>
Reviewed-by: Gavin Hu <gavin.hu@arm.com>
Acked-by: Matan Azrad <matan@mellanox.com>
drivers/net/ark/ark_ethdev_rx.c
drivers/net/ark/ark_ethdev_tx.c
drivers/net/octeontx2/otx2_ethdev.h
drivers/net/thunderx/nicvf_struct.h

index 6156730bb2bae9cc46045295fbea02e4db227aef..4d518d558ea6ae5401e34d4b4de6faf8761d4879 100644 (file)
@@ -57,7 +57,7 @@ struct ark_rx_queue {
 
        /* separate cache line */
        /* second cache line - fields only used in slow path */
-       MARKER cacheline1 __rte_cache_min_aligned;
+       RTE_MARKER cacheline1 __rte_cache_min_aligned;
 
        volatile uint32_t prod_index;   /* step 2 filled by FPGA */
 } __rte_cache_aligned;
index 08bcf431a0058b6bc4dfcb7598af517ff78c4f7e..289668774994976d07bc697c9a74cf46ea139c2a 100644 (file)
@@ -42,7 +42,7 @@ struct ark_tx_queue {
        uint32_t pad[1];
 
        /* second cache line - fields only used in slow path */
-       MARKER cacheline1 __rte_cache_min_aligned;
+       RTE_MARKER cacheline1 __rte_cache_min_aligned;
        uint32_t cons_index;            /* hw is done, can be freed */
 } __rte_cache_aligned;
 
index 7f1d0f0ec94e89b7f41039e0fdfa79201b21a9e1..3f3fdecc4cefa4786428c4db30e44bfb0a912590 100644 (file)
@@ -254,7 +254,7 @@ struct otx2_vlan_info {
 
 struct otx2_eth_dev {
        OTX2_DEV; /* Base class */
-       MARKER otx2_eth_dev_data_start;
+       RTE_MARKER otx2_eth_dev_data_start;
        uint16_t sqb_size;
        uint16_t rx_chan_base;
        uint16_t tx_chan_base;
@@ -335,7 +335,7 @@ struct otx2_eth_txq {
        rte_iova_t fc_iova;
        uint16_t sqes_per_sqb_log2;
        int16_t nb_sqb_bufs_adj;
-       MARKER slow_path_start;
+       RTE_MARKER slow_path_start;
        uint16_t nb_sqb_bufs;
        uint16_t sq;
        uint64_t offloads;
@@ -357,7 +357,7 @@ struct otx2_eth_rxq {
        uint32_t available;
        uint16_t rq;
        struct otx2_timesync_info *tstamp;
-       MARKER slow_path_start;
+       RTE_MARKER slow_path_start;
        uint64_t aura;
        uint64_t offloads;
        uint32_t qlen;
index 5d1379803d669a036ee7c20b3ed25a6bbeb01b35..cf1c281a0618ced29410f87bcbdba82b85bb4b2e 100644 (file)
@@ -55,7 +55,7 @@ union mbuf_initializer {
 };
 
 struct nicvf_rxq {
-       MARKER rxq_fastpath_data_start;
+       RTE_MARKER rxq_fastpath_data_start;
        uint8_t  rbptr_offset;
        uint16_t rx_free_thresh;
        uint32_t head;
@@ -69,7 +69,7 @@ struct nicvf_rxq {
        struct rte_mempool *pool;
        union cq_entry_t *desc;
        union mbuf_initializer mbuf_initializer;
-       MARKER rxq_fastpath_data_end;
+       RTE_MARKER rxq_fastpath_data_end;
        uint8_t rx_drop_en;
        uint16_t precharge_cnt;
        uint16_t port_id;