[dpdk-dev] Fwd: config: disable KNI for 32-bit because cannot work

2014-01-13 Thread neeraj kumar
On Thu, Jan 2, 2014 at 3:49 PM, Thomas Monjalon wrote: > Hello, > > Thank you for your suggestion. > I think you should send a patch on the mailing list to re-enable it. > > Thanks > -- > Thomas > > > 02/01/2014 11:10, neeraj kumar : > > Hi Thomas, > > > > According to commit no. (*d92c66f5ac53a7b

[dpdk-dev] [PATCH] app/testpmd: fix RSS rx by setting mq_mode

2014-01-13 Thread Thomas Monjalon
Hello, 11/01/2014 03:46, Daniel Kan: > --- a/app/test-pmd/testpmd.c > +++ b/app/test-pmd/testpmd.c > @@ -1546,6 +1546,9 @@ init_port_config(void) > if (nb_rxq > 0) { > port->dev_conf.rx_adv_conf.rss_conf.rss_key = NULL; > port->dev_conf.rx_

[dpdk-dev] [PATCH] app/testpmd: fix RSS rx by setting mq_mode

2014-01-13 Thread Ananyev, Konstantin
Hi Daniel, Good catch :) We plan to deliver a fix for that bug in coming DPDK release. It is very similar to yours one, though we need extra check that there are no VFs enabled for that port. Thanks Konstantin -Original Message- From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Thoma

[dpdk-dev] [PATCH] app/testpmd: fix RSS rx by setting mq_mode

2014-01-13 Thread Thomas Monjalon
13/01/2014 12:18, Ananyev, Konstantin: > We plan to deliver a fix for that bug in coming DPDK release. > It is very similar to yours one, though we need extra check that there are > no VFs enabled for that port. Thanks for your comments about the VF. I think it will be clearer in a patch. Please,

[dpdk-dev] [PATCH v2] app/testpmd: fix RSS by setting mq_mode

2014-01-13 Thread Daniel Kan
The mq_mode was not set when rxq is > 1; it's defaulted to ETH_MQ_RX_NONE. As a result, RSS remains inactive. The fix is to set mq_mode to ETH_MQ_RX_RSS when rxq is > 1 and hf is non-zero. This bug was introduced by commit 243db2ddee3094a2cb39fdd4b17e26df4e7735e1 igb/ixgbe: ETH_MQ_RX_NONE should d

[dpdk-dev] Changes to makefiles to allow building apps using g++

2014-01-13 Thread Dan Kan
I made changes to makefiles to at least allow app development to be in done C++. I'm wondering if the community is interested in getting these changes as a patch. The dpdk library must still be compiled using gcc. However, the applications can be compiled using g++ by setting CC=g++, e.g. "make CC=

[dpdk-dev] Any benefit of using DPDK's makefiles instead of using your own and linking against DPDK library

2014-01-13 Thread Daniel Kan
I already have existing makefiles for my current application. I would like to integrate dpdk into the application. ?m wondering if there is any benefit to use dpdk?s makefiles instead of using your own makefile and linking against the library (e.g. libintel_dpdk.a). Thanks. Dan