[dpdk-dev] multiple VLAN IDs for SR-IOV ports

2014-02-04 Thread Patel, Rashmin N
I haven't checked it with ip tool. But I just verified from the Niantic specs, and I see PFVLVF[64] and PFVLVFB[128] - 32 bit register arrays to configure VLAN-Pool/VF mapping. PFVLVF[i] holds a vlan_id need to be mapped PFVLVFB[2i] and PFVLVFB[2i+1] holds bitmap for max possible pools (64 bits)

[dpdk-dev] couple of minor compilation errors in DPDK 1.6 (/lib/librte_eal/linuxapp/eal/eal_ivshmem.c)

2014-02-04 Thread Jyotiswarup Raiturkar
Hi I downloaded DPDK 1.6 from the Intel website and ran into couple of compilation errors with /lib/librte_eal/linuxapp/eal/eal_ivshmem.c. The following changes seem to fix it. Have other people seen these? Thanks Jyoti @@ -472,7 +472,7 @@ rte_snprintf(path, sizeof(path), IVSHMEM_CONFIG_PATH

[dpdk-dev] How to debug packet sends to virtual functions

2014-02-04 Thread Mats Liljegren
This is my fourth mail in my desperate attempt to get DPDK running in KVM and no comments so far, not even any "it works for me". Am I the only one crazy enough to believe that this can be done? Anyway, out of desperation I tried to get it running without having ixgbe or ixgbevf kernel modules loa

[dpdk-dev] How to debug packet sends to virtual functions

2014-02-04 Thread jigsaw
Hi Mats, I've tried vf with 82599EB and it works fine. As long as the VF is visible in guest, DPDK's VF driver should work just as ixgbevf, which shares more or less the same code. I don't understand why you would expect DPDK at guest to work as VF, while the host has no ixgbe loaded. To make fur

[dpdk-dev] How to debug packet sends to virtual functions

2014-02-04 Thread Mats Liljegren
Hi Qinglai, Thanks for the response! My previous attempt was with ixgbe loaded in the host. I also needed to load ixgbevf, but this seems to be because of a short-coming in libvirt. Maybe loading ixgbevf and then unbind it when running the guest is what causes my problems. I could receive packets

[dpdk-dev] How to debug packet sends to virtual functions

2014-02-04 Thread jigsaw
Hi Mats, I didn't have any deviation. What I did is just loading ixgbe (with extra params for vf, as you mentioned in your first email), and DPDK is up and running in guest. Of course I also followed section 8.10 of the DPDK release notes. I can switch between DPDK and ixgebvf in guest at runtime

[dpdk-dev] How to debug packet sends to virtual functions

2014-02-04 Thread Burakov, Anatoly
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Mats Liljegren > Sent: Tuesday, February 04, 2014 10:45 AM > To: jigsaw > Cc: dev at dpdk.org > Subject: Re: [dpdk-dev] How to debug packet sends to virtual functions > > Hi Qinglai, > > Thanks for the response

[dpdk-dev] FW: couple of minor compilation errors in DPDK 1.6 (/lib/librte_eal/linuxapp/eal/eal_ivshmem.c)

2014-02-04 Thread Burakov, Anatoly
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Jyotiswarup > Raiturkar > Sent: Tuesday, February 04, 2014 3:33 AM > To: dev at dpdk.org > Cc: Jyotiswarup Raiturkar > Subject: [dpdk-dev] couple of minor compilation errors in DPDK 1.6 > (/lib/librte_eal/linuxa

[dpdk-dev] How to debug packet sends to virtual functions

2014-02-04 Thread Mats Liljegren
Hi Qinglai, How did you configure the PCI passthrough in KVM? Did you use command line parameter as described in the instructions, or do you use virsh XML files, or maybe using virt-manager? The steps that works best (i.e. can receive but not transmit) are: 1) sudo modprobe ixgbe max_vfs=2 2) su

[dpdk-dev] How to debug packet sends to virtual functions

2014-02-04 Thread Mats Liljegren
Hi Anatoly, Thanks for the clarification. Then I can't use those instructions, which is what I was starting to suspect. I have to find another way of getting DPDK running in the guest then. Using ixgbevf in the guest works fine, though. Regards Mats On Tue, Feb 4, 2014 at 12:21 PM, Burakov, Ana

[dpdk-dev] How to debug packet sends to virtual functions

2014-02-04 Thread Burakov, Anatoly
> -Original Message- > From: Mats Liljegren [mailto:liljegren.mats2 at gmail.com] > Sent: Tuesday, February 04, 2014 11:48 AM > To: Burakov, Anatoly > Cc: dev at dpdk.org > Subject: Re: [dpdk-dev] How to debug packet sends to virtual functions > > Hi Anatoly, > > Thanks for the clarificat

[dpdk-dev] How to debug packet sends to virtual functions

2014-02-04 Thread jigsaw
Hi Mats, Yes the virsh xml is created in essentially the same way. And the setup in host is also the same as yours. But no PCI passthru. As I understand, in a PF-VF deployment it makes no sense for PCI passthru, coz the PCI device must be visible and under control of host. (Pls correct me if Im wr

[dpdk-dev] How to debug packet sends to virtual functions

2014-02-04 Thread Mats Liljegren
Hi Anatoly, Just realized that the instructions gave two alternatives for the host: DPDK igb_uio or ixgbe. It was the former, DPDK igb_uio that I was referring to as being the non-working alternative. Loading ixgbe enables me to set the mac addresses. This is also what I tried previously, when I

[dpdk-dev] [memnic PATCH] pmd: fix attributes

2014-02-04 Thread Thomas Monjalon
30/01/2014 12:37, Hiroshi Shimamoto: > > Add missing "const" and remove useless "rte_unused" attributes. > > Good catch. Looks fine to me. > > > Signed-off-by: Olivier Matz Applied, thanks. -- Thomas

[dpdk-dev] [memnic PATCH] pmd: use memory barrier function instead of asm volatile

2014-02-04 Thread Thomas Monjalon
30/01/2014 12:42, Hiroshi Shimamoto: > > Use the DPDK specific function rte_mb() instead of > > the GCC statement asm volatile ("" ::: "memory"). > > > > Signed-off-by: Olivier Matz > > Yes, that's preferred for DPDK, I think. > Looks okay to me. Applied, thanks. -- Thomas

[dpdk-dev] [memnic PATCH 1/3] pmd: remove symlink

2014-02-04 Thread Thomas Monjalon
30/01/2014 12:22, Hiroshi Shimamoto: > > No need to have a symbolic link to a common file > > when it can be simply included. > > Looks fine to me. Applied, thanks. -- Thomas

[dpdk-dev] [memnic PATCH 2/3] pmd: remove useless includes

2014-02-04 Thread Thomas Monjalon
30/01/2014 12:30, Hiroshi Shimamoto: > > Signed-off-by: Thomas Monjalon > > I'm not sure, but you're not seeing error, it's okay. > I put it for uintxx_t series, originally. > > others, fine to me. Applied, thanks. -- Thomas

[dpdk-dev] [memnic PATCH 3/3] common: remove double underscores

2014-02-04 Thread Thomas Monjalon
30/01/2014 12:32, Hiroshi Shimamoto: > > The usage of double underscores is reserved. > > > > Signed-off-by: Thomas Monjalon > > Looks fine to me. Applied, thanks. -- Thomas

[dpdk-dev] How to debug packet sends to virtual functions

2014-02-04 Thread Burakov, Anatoly
> -Original Message- > From: Mats Liljegren [mailto:liljegren.mats2 at gmail.com] > Sent: Tuesday, February 04, 2014 1:04 PM > To: Burakov, Anatoly > Cc: dev at dpdk.org > Subject: Re: [dpdk-dev] How to debug packet sends to virtual functions > > Hi Anatoly, > > Just realized that the ins

[dpdk-dev] [PATCH] igb/ixgbe: use ether_addr_equal()

2014-02-04 Thread Aaro Koskinen
ether_addr_equal() was added in Linux 3.5. compare_ether_addr() was deleted in 3.14. Start using ether_addr_equal() and provide an own implementation for older kernels. This fixes the compilation with Linux 3.14-rc1. Signed-off-by: Aaro Koskinen --- lib/librte_eal/linuxapp/kni/ethtool/igb/igb_m

[dpdk-dev] [PATCH 00/11] add rte_kvargs library: a key/value args parser

2014-02-04 Thread Thomas Monjalon
28/01/2014 17:06, Olivier Matz: > The topic of this patchset is to add a new rte_kvargs library that > can be used as a helper to parse key/value arguments. The code will > be based on rte_eth_pcap_arg_parser and reworked with documentation > and tests. It also fix some minor issues of the original

[dpdk-dev] [PATCH] igb/ixgbe: use ether_addr_equal()

2014-02-04 Thread Thomas Monjalon
04/02/2014 14:59, Aaro Koskinen: > ether_addr_equal() was added in Linux 3.5. compare_ether_addr() was > deleted in 3.14. Start using ether_addr_equal() and provide an own > implementation for older kernels. > > This fixes the compilation with Linux 3.14-rc1. > > Signed-off-by: Aaro Koskinen Lo

[dpdk-dev] [PATCH 00/16] recipes for RPM packages

2014-02-04 Thread Thomas Monjalon
The goal of this patch serie is to be able to package DPDK for RPM-based distributions. Note that there is neither DKMS nor AKMOD support and that rpmlint complains about few things. But it is a first step to start thinking about packaging. -- Thomas

[dpdk-dev] [PATCH 01/16] tools: rename pci_unbind script

2014-02-04 Thread Thomas Monjalon
In order to make this tool available among other system commands, the name must be more specific. Signed-off-by: Thomas Monjalon --- tools/igb_uio_bind.py | 485 + tools/pci_unbind.py | 485 - too

[dpdk-dev] [PATCH 02/16] virtio: rename library

2014-02-04 Thread Thomas Monjalon
In order to distinguish clearly this implementation from the extension virtio-net-pmd, it is renamed to reflect its usage of uio framework. Signed-off-by: Thomas Monjalon --- lib/librte_pmd_virtio/Makefile |2 +- mk/rte.app.mk |2 +- 2 files changed, 2 insertions(+), 2 d

[dpdk-dev] [PATCH 03/16] pkg: add recipe for RPM

2014-02-04 Thread Thomas Monjalon
Packages can be built with: RPM_BUILD_NCPUS=8 rpmbuild -ta dpdk-1.5.2r2.tar.gz There are packages for runtime, static libraries and development. Once devel package installed, it can be used like this: make -C /usr/share/dpdk/examples/helloworld RTE_SDK=/usr/share/dpdk Signed-off-b

[dpdk-dev] [vmxnet3-usermap PATCH 04/16] pmd: add make help

2014-02-04 Thread Thomas Monjalon
Add help for quick tips. Also define CC and remove RTE_CONFIG variable. Signed-off-by: Thomas Monjalon --- pmd/Makefile | 21 +++-- 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/pmd/Makefile b/pmd/Makefile index 994851c..d8eff33 100644 --- a/pmd/Makefile +++ b/

[dpdk-dev] [vmxnet3-usermap PATCH 05/16] pmd: allow to build outside of the source directory

2014-02-04 Thread Thomas Monjalon
S specify source directory (when not already in). O specify output directory (when different of current one). Signed-off-by: Thomas Monjalon --- pmd/Makefile | 21 - 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/pmd/Makefile b/pmd/Makefile index d8eff33..2d

[dpdk-dev] [vmxnet3-usermap PATCH 06/16] pmd: allow to install lib and doc

2014-02-04 Thread Thomas Monjalon
Signed-off-by: Thomas Monjalon --- pmd/Makefile | 28 +++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/pmd/Makefile b/pmd/Makefile index 2d66fb7..759800e 100644 --- a/pmd/Makefile +++ b/pmd/Makefile @@ -30,6 +30,7 @@ # OF THE POSSIBILITY OF SUCH DAMAGE

[dpdk-dev] [vmxnet3-usermap PATCH 07/16] pkg: add recipe for RPM

2014-02-04 Thread Thomas Monjalon
Package can be built with: rpmbuild -ta vmxnet3-usermap-1.2.tar.gz Signed-off-by: Thomas Monjalon --- pkg/rpm.spec | 76 ++ 1 file changed, 76 insertions(+) create mode 100644 pkg/rpm.spec diff --git a/pkg/rpm.spec b/pkg/rpm.spe

[dpdk-dev] [virtio-net-pmd PATCH 08/16] pmd: fix initialization of Tx queue header

2014-02-04 Thread Thomas Monjalon
A typo was found by gcc-4.8: virtio_user.c:744:15: error: argument to 'sizeof' in 'memset' call is the same expression as the destination; did you mean to dereference it? [-Werror=sizeof-pointer-memaccess] sizeof(tq->tx_hdrs[sz - 1].header)); ^ Signed-off-by: Thomas Monjalo

[dpdk-dev] [virtio-net-pmd PATCH 09/16] mk: minor fixes

2014-02-04 Thread Thomas Monjalon
Fix help. Also define CC and remove RTE_CONFIG variable. Signed-off-by: Thomas Monjalon --- Makefile | 17 + 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index d90f23e..4b51057 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# Copyrigh

[dpdk-dev] [virtio-net-pmd PATCH 10/16] mk: allow to build outside of the source directory

2014-02-04 Thread Thomas Monjalon
S specify source directory (when not already in). O specify output directory (when different of current one). Signed-off-by: Thomas Monjalon --- Makefile | 20 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 4b51057..4ff4c1d 100644

[dpdk-dev] [virtio-net-pmd PATCH 11/16] mk: allow to install lib and doc

2014-02-04 Thread Thomas Monjalon
Signed-off-by: Thomas Monjalon --- Makefile | 30 -- 1 file changed, 28 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 4ff4c1d..100864d 100644 --- a/Makefile +++ b/Makefile @@ -30,6 +30,7 @@ # OF THE POSSIBILITY OF SUCH DAMAGE. SOLIB = librt

[dpdk-dev] [virtio-net-pmd PATCH 12/16] pkg: add recipe for RPM

2014-02-04 Thread Thomas Monjalon
Package can be built with: rpmbuild -ta virtio-net-pmd-1.2.tar.gz Signed-off-by: Thomas Monjalon --- pkg/rpm.spec | 69 ++ 1 file changed, 69 insertions(+) create mode 100644 pkg/rpm.spec diff --git a/pkg/rpm.spec b/pkg/rpm.spec

[dpdk-dev] [memnic PATCH 13/16] pmd: rename doc when installing

2014-02-04 Thread Thomas Monjalon
MEMNIC doc may be installed with other DPDK docs. So more descriptive naming is required. A rule is created in order to have the same rule style for lib and doc. Signed-off-by: Thomas Monjalon --- pmd/Makefile |9 ++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pmd/M

[dpdk-dev] [memnic PATCH 14/16] pmd: fix doc uninstalling

2014-02-04 Thread Thomas Monjalon
Signed-off-by: Thomas Monjalon --- pmd/Makefile |2 ++ 1 file changed, 2 insertions(+) diff --git a/pmd/Makefile b/pmd/Makefile index 1e24a15..730b126 100644 --- a/pmd/Makefile +++ b/pmd/Makefile @@ -79,6 +79,8 @@ endif uninstall : - rm -f $(DESTDIR)$(libdir)/$(SOLIB) - rmdi

[dpdk-dev] [memnic PATCH 15/16] pmd: remove useless makefile variables

2014-02-04 Thread Thomas Monjalon
Signed-off-by: Thomas Monjalon --- pmd/Makefile |7 ++- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pmd/Makefile b/pmd/Makefile index 730b126..5edc44e 100644 --- a/pmd/Makefile +++ b/pmd/Makefile @@ -29,10 +29,7 @@ # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, E

[dpdk-dev] [memnic PATCH 16/16] pkg: add recipe for RPM

2014-02-04 Thread Thomas Monjalon
Packages can be built with: rpmbuild -ta memnic-1.1.tar.gz There are packages for kernel module and PMD versions. Signed-off-by: Thomas Monjalon --- pkg/rpm.spec | 95 ++ 1 file changed, 95 insertions(+) create mode 100644 pkg/r

[dpdk-dev] Sending modified pcap packets from pktgen.

2014-02-04 Thread Banashankar KV
Hi, I am trying to send out modified pcap packets in a loop as shown below.I am trying to modify source IP and source port. for each *packet[12 in number]* for each *sip[2 in number]* for each *port[10 in number]* change to *port *and *sip *in *packet* ret =