[dpdk-dev] Generating packets into queues

2015-05-23 Thread Wiles, Keith
On 5/23/15, 5:23 PM, "Jakub Mazur" wrote: >Hello, > >I've just got to grips with DPDK and started writing my own applications. >However, I am struggling to figure out how to test my applications in >terms >of sending packets to the ports I am polling. > >I've got Pktgen-DPDK up and running but

[dpdk-dev] [PATCH v2 10/19] mlx4: move mlx4 PMD to drivers/net directory

2015-05-23 Thread Thomas Monjalon
Hi, 2015-05-23 07:46, Or Gerlitz: > On Fri, May 15, 2015 at 6:56 PM, Bruce Richardson > wrote: > > move mlx4 PMD to drivers/net directory > > > > Signed-off-by: Bruce Richardson > > --- > > drivers/net/Makefile |2 +- > > drivers/net/mlx4/Makefile

[dpdk-dev] Generating packets into queues

2015-05-23 Thread Jakub Mazur
Hello, I've just got to grips with DPDK and started writing my own applications. However, I am struggling to figure out how to test my applications in terms of sending packets to the ports I am polling. I've got Pktgen-DPDK up and running but I don't know how to use it to interact with my own app

[dpdk-dev] Install DPDK on FreeBSD ports is crashing

2015-05-23 Thread Victor Detoni
Hi, I'm trying to install dpdk through freebsd's ports and the error is shown bellow. Please, someone knows if it can install on FreeBSD 10.1? And what means these errors? If I compile with gcc48 it works fine. * CC test_lpm.o* *clang: error: unable to execute command: Killed* *clang: error: cl

[dpdk-dev] Build DPDK with Google bazel

2015-05-23 Thread Ming Zhao
bazel(http://bazel.io) is the open sourced version of Google build tool, and it has proved itself is a nice solution for monolithic server side development. In our company, we use both to build our products and it greatly reduced the hurdle of rolling out any change because we put the whole DPDK so

[dpdk-dev] [PATCH 2/5] cxgbe: add cxgbe poll mode driver.

2015-05-23 Thread Rahul Lakkireddy
On Fri, May 22, 2015 at 09:42:50 -0700, Stephen Hemminger wrote: > On Fri, 22 May 2015 18:54:20 +0530 > Rahul Lakkireddy wrote: > > > +#define pr_err(y, args...) dev_err(0, y, ##args) > > +#define pr_warn(y, args...) dev_warn(0, y, ##args) > > +#define pr_info(y, args...) dev_info(0, y, ##args) >

[dpdk-dev] [PATCH 2/5] cxgbe: add cxgbe poll mode driver.

2015-05-23 Thread Rahul Lakkireddy
On Fri, May 22, 2015 at 09:43:20 -0700, Stephen Hemminger wrote: > On Fri, 22 May 2015 18:54:20 +0530 > Rahul Lakkireddy wrote: > > > +/** > > + * fls - find last (most-significant) bit set > > + * @x: the word to search > > + * > > + * This is defined the same way as ffs. > > + * Note fls(0) = 0

[dpdk-dev] [PATCH 2/5] cxgbe: add cxgbe poll mode driver.

2015-05-23 Thread Rahul Lakkireddy
On Fri, May 22, 2015 at 09:46:38 -0700, Stephen Hemminger wrote: > On Fri, 22 May 2015 18:54:20 +0530 > Rahul Lakkireddy wrote: > > > +static int cxgbe_dev_link_update(struct rte_eth_dev *eth_dev, > > +__rte_unused int wait_to_complete) > > +{ > > + struct port_info

[dpdk-dev] [PATCH v2 10/19] mlx4: move mlx4 PMD to drivers/net directory

2015-05-23 Thread Or Gerlitz
On Fri, May 15, 2015 at 6:56 PM, Bruce Richardson wrote: > move mlx4 PMD to drivers/net directory > > Signed-off-by: Bruce Richardson > --- > drivers/net/Makefile |2 +- > drivers/net/mlx4/Makefile| 121 + > drivers/net/mlx4/mlx4.c

[dpdk-dev] [PATCH 4/6] vhost: Add new command line option: rxq

2015-05-23 Thread Ouyang, Changchun
Hi Thomas, > -Original Message- > From: Thomas F Herbert [mailto:therbert at redhat.com] > Sent: Friday, May 22, 2015 8:51 PM > To: Ouyang, Changchun; dpdk >> dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH 4/6] vhost: Add new command line option: > rxq > > > > On 5/22/15 2:05 AM, Ouya