net: add rte prefix to MPLS structure

Add 'rte_' prefix to structures:
- rename struct mpls_hdr as struct rte_mpls_hdr.

Cc: stable@dpdk.org

Signed-off-by: David Marchand <david.marchand@redhat.com>
Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
This commit is contained in:
David Marchand 2019-10-23 15:40:00 +02:00 committed by Ferruh Yigit
parent 2379572969
commit d613fe10b3
3 changed files with 5 additions and 3 deletions
doc/guides/rel_notes
lib/librte_net

@ -278,6 +278,8 @@ API Changes
* The network definitions of PPPoE ethertypes have been prefixed by ``RTE_``.
* The network structure for MPLS has been prefixed by ``rte_``.
* ethdev: changed ``rte_eth_dev_infos_get`` return value from ``void`` to
``int`` to provide a way to report various error conditions.

@ -21,7 +21,7 @@ extern "C" {
/**
* MPLS header.
*/
struct mpls_hdr {
struct rte_mpls_hdr {
uint16_t tag_msb; /**< Label(msb). */
#if RTE_BYTE_ORDER == RTE_BIG_ENDIAN
uint8_t tag_lsb:4; /**< Label(lsb). */

@ -278,8 +278,8 @@ uint32_t rte_net_get_ptype(const struct rte_mbuf *m,
} else if ((proto == rte_cpu_to_be_16(RTE_ETHER_TYPE_MPLS)) ||
(proto == rte_cpu_to_be_16(RTE_ETHER_TYPE_MPLSM))) {
unsigned int i;
const struct mpls_hdr *mh;
struct mpls_hdr mh_copy;
const struct rte_mpls_hdr *mh;
struct rte_mpls_hdr mh_copy;
#define MAX_MPLS_HDR 5
for (i = 0; i < MAX_MPLS_HDR; i++) {