[dpdk-dev] [PATCH v11 1/5] bond: new link bonding library

2014-07-01 Thread Thomas Monjalon
2014-07-01 14:19, Doherty, Declan: > Hi Robert, yes I see this could be an issue, although this currently > shouldn?t cause an issue, as the currently supported bonding modes only > expected to receive data on one slave at any time, if they are being used > as part of a ether channel but when we ad

[dpdk-dev] [PATCH v11 1/5] bond: new link bonding library

2014-07-01 Thread Thomas Monjalon
Hi Declan, Do you confirm we should merge the Robert's patch in rc3? 2014-06-30 18:29, Robert Sanford: > I see a potential problem with bond_ethdev_rx_burst( ). > We could receive more packets than the caller asked for, and overrun the > caller's rte_mbuf * array. > The fix could be something lik

[dpdk-dev] [PATCH v11 1/5] bond: new link bonding library

2014-07-01 Thread Doherty, Declan
From: Robert Sanford [mailto:rsanfo...@gmail.com] Sent: Monday, June 30, 2014 11:30 PM To: Doherty, Declan Cc: dev at dpdk.org Subject: Re: [dpdk-dev] [PATCH v11 1/5] bond: new link bonding library Hi Declan, On Sun, Jun 29, 2014 at 1:49 PM, Declan Doherty mailto:declan.doherty at intel.com

[dpdk-dev] [PATCH v11 1/5] bond: new link bonding library

2014-06-30 Thread Robert Sanford
Hi Declan, On Sun, Jun 29, 2014 at 1:49 PM, Declan Doherty wrote: > Initial release with support for > Mode 0 - Round Robin > Mode 1 - Active Backup > Mode 2 - Balance -> Supports 3 transmit polices (layer 2, layer 2+3, > layer 3+4) > Mode 3 - Broadcast > > Signed-off-by: Declan Doherty > -

[dpdk-dev] [PATCH v11 1/5] bond: new link bonding library

2014-06-30 Thread Thomas Monjalon
Hi Declan, 2014-06-29 18:49, Declan Doherty: > --- a/mk/rte.app.mk > +++ b/mk/rte.app.mk > @@ -205,6 +205,10 @@ ifeq ($(CONFIG_RTE_LIBRTE_PMD_PCAP),y) > LDLIBS += -lrte_pmd_pcap -lpcap > endif > > +ifeq ($(CONFIG_RTE_LIBRTE_PMD_BOND),y) > +LDLIBS += -lrte_pmd_bond > +endif > + > endif This p

[dpdk-dev] [PATCH v11 1/5] bond: new link bonding library

2014-06-29 Thread Declan Doherty
Initial release with support for Mode 0 - Round Robin Mode 1 - Active Backup Mode 2 - Balance -> Supports 3 transmit polices (layer 2, layer 2+3, layer 3+4) Mode 3 - Broadcast Signed-off-by: Declan Doherty --- config/common_bsdapp |5 + config/common_linuxapp