net: use named constants for deprecated QinQ TPIDs
Add named constants for deprecated QinQ TPIDs. Update drivers which have already been using existing TPID named constants from librte_net to use the new named constants rather than magic numbers. Signed-off-by: Ivan Malov <ivan.malov@oktetlabs.ru> Signed-off-by: Andrew Rybchenko <arybchenko@solarflare.com> Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
This commit is contained in:
parent
3a164e002a
commit
5cf04fd15a
@ -2495,15 +2495,15 @@ bnxt_vlan_tpid_set_op(struct rte_eth_dev *dev, enum rte_vlan_type vlan_type,
|
||||
bp->outer_tpid_bd =
|
||||
TX_BD_LONG_CFA_META_VLAN_TPID_TPID8100;
|
||||
break;
|
||||
case 0x9100:
|
||||
case RTE_ETHER_TYPE_QINQ1:
|
||||
bp->outer_tpid_bd =
|
||||
TX_BD_LONG_CFA_META_VLAN_TPID_TPID9100;
|
||||
break;
|
||||
case 0x9200:
|
||||
case RTE_ETHER_TYPE_QINQ2:
|
||||
bp->outer_tpid_bd =
|
||||
TX_BD_LONG_CFA_META_VLAN_TPID_TPID9200;
|
||||
break;
|
||||
case 0x9300:
|
||||
case RTE_ETHER_TYPE_QINQ3:
|
||||
bp->outer_tpid_bd =
|
||||
TX_BD_LONG_CFA_META_VLAN_TPID_TPID9300;
|
||||
break;
|
||||
|
@ -294,6 +294,9 @@ struct rte_vlan_hdr {
|
||||
#define RTE_ETHER_TYPE_RARP 0x8035 /**< Reverse Arp Protocol. */
|
||||
#define RTE_ETHER_TYPE_VLAN 0x8100 /**< IEEE 802.1Q VLAN tagging. */
|
||||
#define RTE_ETHER_TYPE_QINQ 0x88A8 /**< IEEE 802.1ad QinQ tagging. */
|
||||
#define RTE_ETHER_TYPE_QINQ1 0x9100 /**< Deprecated QinQ VLAN. */
|
||||
#define RTE_ETHER_TYPE_QINQ2 0x9200 /**< Deprecated QinQ VLAN. */
|
||||
#define RTE_ETHER_TYPE_QINQ3 0x9300 /**< Deprecated QinQ VLAN. */
|
||||
#define RTE_ETHER_TYPE_PPPOE_DISCOVERY 0x8863 /**< PPPoE Discovery Stage. */
|
||||
#define RTE_ETHER_TYPE_PPPOE_SESSION 0x8864 /**< PPPoE Session Stage. */
|
||||
#define RTE_ETHER_TYPE_ETAG 0x893F /**< IEEE 802.1BR E-Tag. */
|
||||
|
Loading…
Reference in New Issue
Block a user