16 #ifndef __included_lacp_protocol_h__ 17 #define __included_lacp_protocol_h__ 22 #define LACP_CHURN_DETECTION_TIME 60 23 #define LACP_AGGREGATE_WAIT_TIME 2.0 25 #define LACP_SUBTYPE 1 26 #define LACP_ACTOR_LACP_VERSION 1 28 #define foreach_lacp_tlv \ 29 _ (TERMINATOR_INFORMATION, 0) \ 30 _ (ACTOR_INFORMATION, 1) \ 31 _ (PARTNER_INFORMATION , 2) \ 32 _ (COLLECTOR_INFORMATION, 3) 36 #define _(f,n) LACP_##f = (n), 41 #define foreach_lacp_port \ 48 #define _(f,n) LACP_PORT_##f = (n), 54 #define foreach_lacp_state \ 55 _(0, LACP_ACTIVITY, "activity") \ 56 _(1, LACP_TIMEOUT, "lacp timeout") \ 57 _(2, AGGREGATION, "aggregation") \ 58 _(3, SYNCHRONIZATION, "synchronization") \ 59 _(4, COLLECTING, "collecting") \ 60 _(5, DISTRIBUTING, "distributing") \ 61 _(6, DEFAULTED, "defaulted") \ 62 _(7, EXPIRED, "expired") 66 #define _(a, b, c) LACP_STATE_##b = (1 << a), 71 #define foreach_lacp_state_flag \ 72 _(0, LACP_STATE_LACP_ACTIVITY, "activity") \ 73 _(1, LACP_STATE_LACP_TIMEOUT, "lacp timeout") \ 74 _(2, LACP_STATE_AGGREGATION, "aggregation") \ 75 _(3, LACP_STATE_SYNCHRONIZATION, "synchronization") \ 76 _(4, LACP_STATE_COLLECTIING, "collecting") \ 77 _(5, LACP_STATE_DISTRIBUTING, "distributing") \ 78 _(6, LACP_STATE_DEFAULTED, "defaulted") \ 79 _(7, LACP_STATE_EXPIRED, "expired") 93 #define LACP_MAX_TX_IN_SECOND 3 94 #define LACP_DEFAULT_PORT_PRIORITY 0x00ff 95 #define LACP_DEFAULT_SYSTEM_PRIORITY 0xffff 101 lacp_port_info_t port_info;
u8 reserved[3];
102 }) lacp_actor_partner_t;
106 u8 tlv_type;
u8 tlv_length;
u16 max_delay;
112 u8 tlv_type;
u8 tlv_length;
114 }) lacp_terminator_t;
118 u8 subtype;
u8 version_number;
119 lacp_actor_partner_t actor; lacp_actor_partner_t partner;
120 lacp_collector_t collector; lacp_terminator_t terminator;
126 }) ethernet_lacp_pdu_t;
128 #define MARKER_SUBTYPE 2 129 #define MARKER_PROTOCOL_VERSION 1 131 #define foreach_marker_tlv \ 132 _ (TERMINATOR_INFORMATION, 0) \ 134 _ (RESPONSE_INFORMATION , 2) 138 #define _(f,n) MARKER_##f = (n), 145 u8 tlv_type;
u8 tlv_length;
147 }) marker_terminator_t;
153 u16 requester_port;
u8 requester_system[6];
154 u32 requester_transaction_id;
u8 pad[2];
155 }) marker_information_t;
161 marker_information_t marker_info;
162 marker_terminator_t terminator;
168 }) ethernet_marker_pdu_t;
u8 pad[3]
log2 (size of the packing page block)
#define foreach_lacp_state
#define foreach_marker_tlv
typedef CLIB_PACKED(struct { u8 tlv_type;u8 tlv_length;lacp_port_info_t port_info;u8 reserved[3];}) lacp_actor_partner_t
#define foreach_lacp_port