[dpdk-dev] [PATCH v2 4/6] bond mode 4: allow external state machine

2016-03-02 Thread Iremonger, Bernard
Hi Eric, > > > > @@ -157,6 +159,7 @@ struct rte_eth_bond_8023ad_conf { > > > > uint32_t tx_period_ms; > > > > uint32_t rx_marker_period_ms; > > > > uint32_t update_timeout_ms; > > > > + rte_eth_bond_8023ad_ext_slowrx_fn slowrx_cb; > > > > }; > > > > > > This

[dpdk-dev] [PATCH v2 4/6] bond mode 4: allow external state machine

2016-03-01 Thread Eric Kinzie
On Thu Feb 25 15:22:35 + 2016, Iremonger, Bernard wrote: > Hi Eric, > > > > > @@ -157,6 +159,7 @@ struct rte_eth_bond_8023ad_conf { > > > uint32_t tx_period_ms; > > > uint32_t rx_marker_period_ms; > > > uint32_t update_timeout_ms; > > > +

[dpdk-dev] [PATCH v2 4/6] bond mode 4: allow external state machine

2016-02-25 Thread Iremonger, Bernard
Hi Eric, > > @@ -157,6 +159,7 @@ struct rte_eth_bond_8023ad_conf { > > uint32_t tx_period_ms; > > uint32_t rx_marker_period_ms; > > uint32_t update_timeout_ms; > > + rte_eth_bond_8023ad_ext_slowrx_fn slowrx_cb; > > }; > > This still is a likely an ABI break, previously discussed

[dpdk-dev] [PATCH v2 4/6] bond mode 4: allow external state machine

2016-02-22 Thread Panu Matilainen
On 02/19/2016 09:17 PM, Eric Kinzie wrote: > From: Eric Kinzie > > Provide functions to allow an external 802.3ad state machine to transmit > and recieve LACPDUs and to set the collection/distribution flags on > slave interfaces. > > Signed-off-by: Eric Kinzie > Signed-off-by: Stephen Hemminger

[dpdk-dev] [PATCH v2 4/6] bond mode 4: allow external state machine

2016-02-19 Thread Eric Kinzie
From: Eric Kinzie Provide functions to allow an external 802.3ad state machine to transmit and recieve LACPDUs and to set the collection/distribution flags on slave interfaces. Signed-off-by: Eric Kinzie Signed-off-by: Stephen Hemminger Acked-by: Declan Doherty ---