diff options
author | Steven Luong <sluong@cisco.com> | 2019-06-05 10:52:35 -0700 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2019-06-07 11:21:28 +0000 |
commit | 4168c4d914c36f76c45cd8c6dde207b9f1c688e2 (patch) | |
tree | fc52a8e694168b67c1d7b8ff395addcac2266fb5 /src/plugins/lacp/cli.c | |
parent | f2922422d972644e67d1ca989e40cd0100ecb06d (diff) |
lacp: create lacp-process on demand
Create lacp-process when the very first slave interface is added to the bond.
Log an event message when lacp-process starts/stops.
Be mindful when lacp-process is signalled to stop.
Type: refactor
Change-Id: I79e10e0a2a385a21a52ae5b8735f24631fdba293
Signed-off-by: Steven Luong <sluong@cisco.com>
Diffstat (limited to 'src/plugins/lacp/cli.c')
-rw-r--r-- | src/plugins/lacp/cli.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/lacp/cli.c b/src/plugins/lacp/cli.c index d188db6165e..b8ff199c2f4 100644 --- a/src/plugins/lacp/cli.c +++ b/src/plugins/lacp/cli.c @@ -143,11 +143,13 @@ show_lacp (vlib_main_t * vm, u32 * sw_if_indices) static void show_lacp_details (vlib_main_t * vm, u32 * sw_if_indices) { + lacp_main_t *lm = &lacp_main; slave_if_t *sif; lacp_state_struct *state_entry; int i; f64 now; + vlib_cli_output (vm, "Number of interfaces: %d", lm->lacp_int); if (!sw_if_indices) return; |