diff options
author | Steven <sluong@cisco.com> | 2018-04-19 21:59:09 -0700 |
---|---|---|
committer | Chris Luke <chris_luke@comcast.com> | 2018-04-23 18:33:59 +0000 |
commit | b2ffc697570f17f413fb4f2748760c44f8f21661 (patch) | |
tree | ed685d9d8be0a735625d102ffe1502f6c02be511 /src/plugins/lacp/protocol.h | |
parent | 62166004a9f0861e9ea50101b2194881ef1a35aa (diff) |
lacp: partner may time us out if fast-rate is configured [VPP-1247]
We should be sending LACP PDU every second if the partner has LACP_TIMEOUT flag
set which means it will time us out in 3 seconds.
Add interface name for lacp trace
Change-Id: If7d816c062d03e80cc0dd7d10dba0b76ace0664a
Signed-off-by: Steven <sluong@cisco.com>
Diffstat (limited to 'src/plugins/lacp/protocol.h')
-rw-r--r-- | src/plugins/lacp/protocol.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/lacp/protocol.h b/src/plugins/lacp/protocol.h index 05a3f04a227..9fc2f35fd38 100644 --- a/src/plugins/lacp/protocol.h +++ b/src/plugins/lacp/protocol.h @@ -69,7 +69,7 @@ typedef enum } lacp_state_t; #define foreach_lacp_state_flag \ - _(0, LACP_STATE_LACP_ACTIViTY, "activity") \ + _(0, LACP_STATE_LACP_ACTIVITY, "activity") \ _(1, LACP_STATE_LACP_TIMEOUT, "lacp timeout") \ _(2, LACP_STATE_AGGREGATION, "aggregation") \ _(3, LACP_STATE_SYNCHRONIZATION, "synchronization") \ |