remove experimental tags from all symbol definitions
[dpdk.git] / lib / librte_eventdev / rte_event_eth_rx_adapter.c
index b6ff57b..dd251cc 100644 (file)
@@ -611,8 +611,8 @@ rxa_calc_wrr_sequence(struct rte_event_eth_rx_adapter *rx_adapter,
 }
 
 static inline void
-rxa_mtoip(struct rte_mbuf *m, struct ipv4_hdr **ipv4_hdr,
-       struct ipv6_hdr **ipv6_hdr)
+rxa_mtoip(struct rte_mbuf *m, struct rte_ipv4_hdr **ipv4_hdr,
+       struct rte_ipv6_hdr **ipv6_hdr)
 {
        struct rte_ether_hdr *eth_hdr =
                rte_pktmbuf_mtod(m, struct rte_ether_hdr *);
@@ -622,22 +622,22 @@ rxa_mtoip(struct rte_mbuf *m, struct ipv4_hdr **ipv4_hdr,
        *ipv6_hdr = NULL;
 
        switch (eth_hdr->ether_type) {
-       case RTE_BE16(ETHER_TYPE_IPv4):
-               *ipv4_hdr = (struct ipv4_hdr *)(eth_hdr + 1);
+       case RTE_BE16(RTE_ETHER_TYPE_IPV4):
+               *ipv4_hdr = (struct rte_ipv4_hdr *)(eth_hdr + 1);
                break;
 
-       case RTE_BE16(ETHER_TYPE_IPv6):
-               *ipv6_hdr = (struct ipv6_hdr *)(eth_hdr + 1);
+       case RTE_BE16(RTE_ETHER_TYPE_IPV6):
+               *ipv6_hdr = (struct rte_ipv6_hdr *)(eth_hdr + 1);
                break;
 
-       case RTE_BE16(ETHER_TYPE_VLAN):
+       case RTE_BE16(RTE_ETHER_TYPE_VLAN):
                vlan_hdr = (struct rte_vlan_hdr *)(eth_hdr + 1);
                switch (vlan_hdr->eth_proto) {
-               case RTE_BE16(ETHER_TYPE_IPv4):
-                       *ipv4_hdr = (struct ipv4_hdr *)(vlan_hdr + 1);
+               case RTE_BE16(RTE_ETHER_TYPE_IPV4):
+                       *ipv4_hdr = (struct rte_ipv4_hdr *)(vlan_hdr + 1);
                        break;
-               case RTE_BE16(ETHER_TYPE_IPv6):
-                       *ipv6_hdr = (struct ipv6_hdr *)(vlan_hdr + 1);
+               case RTE_BE16(RTE_ETHER_TYPE_IPV6):
+                       *ipv6_hdr = (struct rte_ipv6_hdr *)(vlan_hdr + 1);
                        break;
                default:
                        break;
@@ -657,8 +657,8 @@ rxa_do_softrss(struct rte_mbuf *m, const uint8_t *rss_key_be)
        void *tuple;
        struct rte_ipv4_tuple ipv4_tuple;
        struct rte_ipv6_tuple ipv6_tuple;
-       struct ipv4_hdr *ipv4_hdr;
-       struct ipv6_hdr *ipv6_hdr;
+       struct rte_ipv4_hdr *ipv4_hdr;
+       struct rte_ipv6_hdr *ipv6_hdr;
 
        rxa_mtoip(m, &ipv4_hdr, &ipv6_hdr);
 
@@ -2297,7 +2297,7 @@ rte_event_eth_rx_adapter_stop(uint8_t id)
        return rxa_ctrl(id, 0);
 }
 
-int __rte_experimental
+int
 rte_event_eth_rx_adapter_stats_get(uint8_t id,
                               struct rte_event_eth_rx_adapter_stats *stats)
 {
@@ -2384,7 +2384,7 @@ rte_event_eth_rx_adapter_service_id_get(uint8_t id, uint32_t *service_id)
        return rx_adapter->service_inited ? 0 : -ESRCH;
 }
 
-int __rte_experimental
+int
 rte_event_eth_rx_adapter_cb_register(uint8_t id,
                                        uint16_t eth_dev_id,
                                        rte_event_eth_rx_adapter_cb_fn cb_fn,