net: add rte prefix to ether structures
[dpdk.git] / drivers / net / bonding / rte_eth_bond_8023ad.h
index d8b5dbc..cbad59a 100644 (file)
@@ -58,14 +58,14 @@ struct slow_protocol {
 
 /** Generic slow protocol frame type structure */
 struct slow_protocol_frame {
-       struct ether_hdr eth_hdr;
+       struct rte_ether_hdr eth_hdr;
        struct slow_protocol slow_protocol;
 } __attribute__((__packed__));
 
 struct port_params {
        uint16_t system_priority;
        /**< System priority (unused in current implementation) */
-       struct ether_addr system;
+       struct rte_ether_addr system;
        /**< System ID - Slave MAC address, same as bonding MAC address */
        uint16_t key;
        /**< Speed information (implementation dependednt) and duplex. */
@@ -103,7 +103,7 @@ struct lacpdu {
 
 /** LACPDU frame: Contains ethernet header and LACPDU. */
 struct lacpdu_header {
-       struct ether_hdr eth_hdr;
+       struct rte_ether_hdr eth_hdr;
        struct lacpdu lacpdu;
 } __attribute__((__packed__));
 
@@ -114,7 +114,7 @@ struct marker {
        uint8_t tlv_type_marker;
        uint8_t info_length;
        uint16_t requester_port;
-       struct ether_addr requester_system;
+       struct rte_ether_addr requester_system;
        uint32_t requester_transaction_id;
        uint8_t reserved_2[2];
 
@@ -124,7 +124,7 @@ struct marker {
 } __attribute__((__packed__));
 
 struct marker_header {
-       struct ether_hdr eth_hdr;
+       struct rte_ether_hdr eth_hdr;
        struct marker marker;
 } __attribute__((__packed__));