[dpdk-dev] [PATCH 5/5] bond mode 4: tests for external state machine

2015-04-10 Thread Pawel Wodkowski
On 2015-04-06 19:01, Eric Kinzie wrote: > > +static void > +lacp_recv_cb(uint8_t slave_id, struct rte_mbuf *lacp_pkt) > +{ > + lacpdu_rx_count[slave_id]++; > + RTE_VERIFY(lacp_pkt != NULL); > + rte_pktmbuf_free(lacp_pkt); > +} > + Would be nice to check here if it is valid LACP

[dpdk-dev] [PATCH 5/5] bond mode 4: tests for external state machine

2015-04-06 Thread Eric Kinzie
This adds test cases for exercising the external state machine API to the mode 4 autotest. Signed-off-by: Eric Kinzie --- app/test/test_link_bonding_mode4.c | 201 ++-- 1 file changed, 192 insertions(+), 9 deletions(-) diff --git