[dpdk-dev] [PATCH v2 0/4] NIC filters support for generic filter

2014-06-04 Thread Cao, Waterman
Tested-by: Waterman Cao This patch includes 4 files, and has been tested by Intel. Please see information as the following: Fedora 20 x86_64, Linux Kernel 3.11.10-301, GCC 4.8.2 Intel Xeon CPU E5-2680 v2 @ 2.80GHz NIC: Intel Niantic 82599, Intel i350, Intel 82580 and Intel 82576 We verified e

[dpdk-dev] [PATCH v4 05/20] pci: Rename RTE_PCI_DRV_NEED_IGB_UIO to RTE_PCI_DRV_NEED_MAPPING

2014-06-04 Thread Burakov, Anatoly
> Rename the RTE_PCI_DRV_NEED_IGB_UIO to be more generic. > > Signed-off-by: Anatoly Burakov NAK, virtio change got lost in the rebases :-( Best regards, Anatoly Burakov DPDK SW Engineer

[dpdk-dev] [PATCH 0/3] ixgbe: Add L2 Ethertype, SYN and Five tuple queue filters

2014-06-04 Thread Vladimir Medvedkin
Hi Thomas, Sorry for late reply, I'm on vacation now. 1. I'm not shure about other NICs but Intel. API for Intel NICs is generic enough, even more generic than Jingjing's API because of pool logic. Besides I think it's more properly make rx_queue as part of filter struct for Jingjing's etype and

[dpdk-dev] [PATCH 0/2] L3FWD sample optimisation

2014-06-04 Thread Cao, Waterman
Tested-by: Waterman Cao This patch has been tested by Intel. We performed l3fwd performance test. Test result shows that l3fwd performance with this ?lpm optimization? patch is much higher than that without this patch. Test environment: Fedora 20, Linux Kernel 3.11.10, GCC 4.8.2, Intel Xeon p

[dpdk-dev] [PATCH 00/29] Packet Framework

2014-06-04 Thread Cao, Waterman
Tested-by: Waterman Cao Totally this patch is composed of 30 files including cover letter, and has been tested by Intel. We verified packet framework patch with ip pipeline example and unit test, all cases passed. Please see test result as the following: test_flow_management Passed tes

[dpdk-dev] [PATCH 0/3] *** Upgrade NIC share codes ***

2014-06-04 Thread Cao, Waterman
Tested-by: Waterman Cao Totally this patch is composed of 4 files including cover letter, and has been tested by Intel. We verified latest NIC share code with different kind of NICs, please see the list as the followings: Type Product Name 1G Powerville (Intel Ethernet Control

[dpdk-dev] [PATCH v2 1/4] Link Bonding Library

2014-06-04 Thread declan.dohe...@intel.com
From: Declan Doherty - Broadcast TX burst broadcast bug fix - Add/remove slave behavior fix - Checkpatch fixes Signed-off-by: Declan Doherty --- config/common_bsdapp |5 + config/common_linuxapp |5 + lib/Makefile |1 + lib/librte_bond/Makefile | 28 + l

[dpdk-dev] [PATCH v2 0/4] Link Bonding Library

2014-06-04 Thread declan.dohe...@intel.com
From: Declan Doherty v2 patch additions, fix for tx burst broadcast, incrementing the reference count on each mbuf by the number of slaves - 1 add/remove slave behavior chnange to fix primary slave port assignment patchcheck code fixes Initial release of Link Bonding Library (lib/librte_bond

[dpdk-dev] [PATCH v2 2/4] Link bonding unit tests, including: - code to generate packet bursts for testing rx and tx functionality of bonded device - virtual/stubbed out ethdev for use as slave ethdev

2014-06-04 Thread declan.dohe...@intel.com
From: Declan Doherty Signed-off-by: Declan Doherty --- app/test/Makefile |3 + app/test/commands.c |3 + app/test/packet_burst_generator.c | 289 +++ app/test/packet_burst_generator.h | 78 + app/test/test.h |1 + app/test/test_link

[dpdk-dev] [PATCH v2 4/4] Add Link Bonding Library to Doxygen

2014-06-04 Thread declan.dohe...@intel.com
From: Declan Doherty Signed-off-by: Declan Doherty --- doc/doxy-api-index.md | 1 + doc/doxy-api.conf | 1 + 2 files changed, 2 insertions(+) diff --git a/doc/doxy-api-index.md b/doc/doxy-api-index.md index 2825c08..2206c68 100644 --- a/doc/doxy-api-index.md +++ b/doc/doxy-api-index.md @@

[dpdk-dev] [PATCH v2 3/4] Adding link bonding support to testpmd. - Includes the ability to create new bonded devices. - Add /remove bonding slave devices. - Interogate bonded device stats/configurati

2014-06-04 Thread declan.dohe...@intel.com
From: Declan Doherty - Display of port mac address fix - Checkpatch fixes Signed-off-by: Declan Doherty --- app/test-pmd/cmdline.c| 570 ++ app/test-pmd/config.c | 4 +- app/test-pmd/parameters.c | 4 +- app/test-pmd/testpmd.c| 37 ++

[dpdk-dev] [PATCH v2 0/3] ixgbe: Add L2 Ethertype, SYN and Five tuple queue filters

2014-06-04 Thread Vladimir Medvedkin
This patchset adds in addition to the Flow Director filters L2 Ethertype, SYN and Five tuple queue filters to route packets according to ethertype, l4 proto, source/destination ip/ports pool and presence of SYN flag in TCP packet. Unlike http://dpdk.org/ml/archives/dev/2014-May/002512.html this gi

[dpdk-dev] [PATCH v2 1/3] ixgbe: Add L2 ethertype filter for ixgbe

2014-06-04 Thread Vladimir Medvedkin
This patch adds ability to route packets according to ethertype, priority and pool to certain queue specified in rx_queue field. Signed-off-by: Vladimir Medvedkin --- lib/librte_ether/rte_ethdev.c | 81 + lib/librte_ether/rte_ethdev.h | 78 +

[dpdk-dev] [PATCH v2 2/3] ixgbe: Add syn queue filter for ixgbe

2014-06-04 Thread Vladimir Medvedkin
This patch adds ability to route TCP packets according to SYN flag presence to certain queue. Signed-off-by: Vladimir Medvedkin --- lib/librte_ether/rte_ethdev.c | 66 + lib/librte_ether/rte_ethdev.h | 63 +++ lib/l

[dpdk-dev] [PATCH v2 3/3] ixgbe: Add five tuple filter for ixgbe

2014-06-04 Thread Vladimir Medvedkin
This patch adds ability to route packets according to source, destination ip/ports, L4 proto and pool to certain queue. Signed-off-by: Vladimir Medvedkin --- lib/librte_ether/rte_ethdev.c | 81 ++ lib/librte_ether/rte_ethdev.h | 96 +

[dpdk-dev] [PATCH v2 0/3] Support setting link up and link down

2014-06-04 Thread Cao, Waterman
Tested-by: Waterman Cao This patch is used to fix bug, and has been tested by Intel. We verified API by testpmd, it passed. Please see test steps as the following: 1. In the host machine, set the DPDK environment as usual and start testpmd: ./app/test-pmd/testpmd -c f -n 4 -- -i 2. Start packet

[dpdk-dev] [PATCH v2 0/4] Link Bonding Library

2014-06-04 Thread Doherty, Declan
Sorry for the double submission of the first 3 parts of this patch set. It was meant to be a test directed to my own email account. Regards Declan > -Original Message- > From: Doherty, Declan > Sent: Wednesday, June 4, 2014 4:19 PM > To: dev at dpdk.org; dev at dpdk.org > Cc: Doherty, Dec

[dpdk-dev] [v2 00/23] Packet Framework

2014-06-04 Thread Cristian Dumitrescu
(Version 2 changes are exclusively style changes (checkpatch.pl) and patch consolidation, no functional change) Intel DPDK Packet Framework provides a standard methodology (logically similar to OpenFlow) for rapid development of complex packet processing pipelines out of ports, tables and actio

[dpdk-dev] [v2 04/23] Packet Framework librte_port: ethdev ports

2014-06-04 Thread Cristian Dumitrescu
The input port ethdev_reader implements the Packet Framework port API on top of the Intel DPDK poll mode driver for a NIC RX queue. The output port ethdev_writer implements the Packet Framework port API on top of the Intel DPDK poll mode driver for a NIC TX queue. Signed-off-by: Cristian Dumitr

[dpdk-dev] [v2 09/23] Packet Framework librte_port: Source/Sink ports

2014-06-04 Thread Cristian Dumitrescu
Source port is a packet generator, similar to /dev/zero Linux device. Sink port is a packet terminator (drops all input packets), similar to /dev/null Linux device. Signed-off-by: Cristian Dumitrescu --- lib/librte_port/rte_port_source_sink.c | 158 lib/librte

[dpdk-dev] [v2 01/23] librte_lpm: rule_is_present

2014-06-04 Thread Cristian Dumitrescu
Added API function for LPM IPv4 and IPv6 to querry for the existence of a rule/route and return the next hop ID associated with the routeif route is present. This is used by the Packet Framework LPM table for implementing a routing table. Signed-off-by: Cristian Dumitrescu --- lib/librte_lpm/

[dpdk-dev] [v2 05/23] Packet Framework librte_port: ring ports

2014-06-04 Thread Cristian Dumitrescu
ring_reader input port (on top of single consumer rte_ring) ring writer output port (on top of single producer rte_ring) Signed-off-by: Cristian Dumitrescu --- lib/librte_port/rte_port_ring.c | 237 +++ lib/librte_port/rte_port_ring.h | 82 ++ 2

[dpdk-dev] [v2 06/23] Packet Framework librte_port: IPv4 frag port

2014-06-04 Thread Cristian Dumitrescu
This port presents the IPv4 fragmentation operation as a Packet Framework port. Code duplication with examples/ipv4_frag sample app to be resolved soon by linking the relevant library once upstreamed. Signed-off-by: Cristian Dumitrescu --- lib/librte_port/rte_ipv4_frag.h | 253 +++

[dpdk-dev] [v2 14/23] Packet Framework librte_table: ACL table

2014-06-04 Thread Cristian Dumitrescu
Packet Framework ACL table for ACL rule database. Signed-off-by: Cristian Dumitrescu --- lib/librte_table/rte_table_acl.c | 490 ++ lib/librte_table/rte_table_acl.h | 95 2 files changed, 585 insertions(+), 0 deletions(-) create mode 100644 lib/li

[dpdk-dev] [v2 10/23] Packet Framework librte_port: Build infrastructure

2014-06-04 Thread Cristian Dumitrescu
Makefile and build infrastructure for the librte_port library. Signed-off-by: Cristian Dumitrescu --- config/common_bsdapp |5 +++ config/common_linuxapp |4 ++ doc/doxy-api-index.md|9 ++ doc/doxy-api.conf|1 + lib/Makefile |1 + lib/librte_

[dpdk-dev] [v2 02/23] mbuf: meta-data

2014-06-04 Thread Cristian Dumitrescu
Added zero-size field (offset in data structure) to specify the beginning of packet meta-data in the packet buffer just after the mbuf. The size of the packet meta-data is application specific and the packet meta-data is managed by the application. The packet meta-data should always be accessed

[dpdk-dev] [v2 11/23] Packet Framework librte_table: Table API

2014-06-04 Thread Cristian Dumitrescu
This file defines the operations to be implemented by any Packet Framework table. Signed-off-by: Cristian Dumitrescu --- lib/librte_eal/common/include/rte_log.h |1 + lib/librte_table/rte_table.h| 202 +++ 2 files changed, 203 insertions(+), 0 deleti

[dpdk-dev] [v2 20/23] librte_cfgfile: interpret config files

2014-06-04 Thread Cristian Dumitrescu
This library provides a tool to interpret config files that have standard structure. It is used by the Packet Framework examples/ip_pipeline sample application. It originates from examples/qos_sched sample application and now it makes this code available as a library for other sample applicatio

[dpdk-dev] [v2 16/23] Packet Framework librte_table: array table

2014-06-04 Thread Cristian Dumitrescu
Packet Framework array tables. Signed-off-by: Cristian Dumitrescu --- lib/librte_table/rte_table_array.c | 204 lib/librte_table/rte_table_array.h | 76 + 2 files changed, 280 insertions(+), 0 deletions(-) create mode 100644 lib/librte_table/r

[dpdk-dev] [v2 08/23] Packet Framework librte_port: hierarchical scheduler port

2014-06-04 Thread Cristian Dumitrescu
The QoS hierarchical scheduler presented as Packet Framework port. Signed-off-by: Cristian Dumitrescu --- lib/librte_port/rte_port_sched.c | 239 ++ lib/librte_port/rte_port_sched.h | 82 + 2 files changed, 321 insertions(+), 0 deletions(-) cre

[dpdk-dev] [v2 19/23] Packet Framework librte_pipeline: Pipeline

2014-06-04 Thread Cristian Dumitrescu
The Packet Frameowrk pipeline library provides a standard methodology (logically similar to OpenFlow) for rapid development of complex packet processing pipelines out of ports, tables and actions. A pipeline is constructed by connecting its input ports to its output ports through a chain of loo

[dpdk-dev] [v2 03/23] Packet Framework librte_port: Port API

2014-06-04 Thread Cristian Dumitrescu
This file defines the port operations that have to be implemented by Packet Framework ports. Signed-off-by: Cristian Dumitrescu --- lib/librte_eal/common/include/rte_log.h |1 + lib/librte_port/rte_port.h | 190 +++ 2 files changed, 191 insertions(+

[dpdk-dev] [v2 15/23] Packet Framework librte_table: Hash tables

2014-06-04 Thread Cristian Dumitrescu
Various types of hash tables presented under the Packet Framework toolbox. Hash table types: 1. Extendible bucket (ext): when bucket is full, bucket is extended with more keys 2. Least Recently Used (LRU): when bucket is full, the LRU entry is discarded 3. Pre-computed key signature: RX core extr

[dpdk-dev] [v2 17/23] Packet Framework librte_table: Stub table

2014-06-04 Thread Cristian Dumitrescu
The stub table is a simple implementation of the Packet Framework table API that produces lookup miss for all input packets. It is used a simple cable-type forwarder by the Packet Framework pipeline library. Signed-off-by: Cristian Dumitrescu --- lib/librte_table/rte_table_stub.c | 65 +

[dpdk-dev] [v2 12/23] Packet Framework librte_table: LPM IPv4 table

2014-06-04 Thread Cristian Dumitrescu
Routing table for IPv4. Signed-off-by: Cristian Dumitrescu --- lib/librte_table/rte_table_lpm.c | 347 ++ lib/librte_table/rte_table_lpm.h | 115 + 2 files changed, 462 insertions(+), 0 deletions(-) create mode 100644 lib/librte_table/rte_table_

[dpdk-dev] [v2 13/23] Packet Framework librte_table: LPM IPv6 table

2014-06-04 Thread Cristian Dumitrescu
Routing table for IPv6. Signed-off-by: Cristian Dumitrescu --- lib/librte_table/rte_table_lpm_ipv6.c | 361 + lib/librte_table/rte_table_lpm_ipv6.h | 119 +++ 2 files changed, 480 insertions(+), 0 deletions(-) create mode 100644 lib/librte_table/rte_tab

[dpdk-dev] [v2 21/23] Packet Framework performance application

2014-06-04 Thread Cristian Dumitrescu
This application is purposefully buit to benchmark the performance of the Intel DPDK Packet Framework toolbox. It uses 3 CPU cores connected in a chain through SW rings (NICs --> Core A --> Core B --> Core C --> NICs) 1. Core A: reads packets from NIC ports and writes them to SW queues; 2. Core

[dpdk-dev] [v2 18/23] Packet Framework librte_table: Build infrastructure

2014-06-04 Thread Cristian Dumitrescu
Makefile and buid infrastructure for the Packet Framework table library. Signed-off-by: Cristian Dumitrescu --- config/common_bsdapp |5 +++ config/common_linuxapp|5 +++ doc/doxy-api-index.md |9 - doc/doxy-api.conf |1 + lib/Makefile |1

[dpdk-dev] [v2 07/23] Packet Framework librte_port: IPv4 reassembly

2014-06-04 Thread Cristian Dumitrescu
The IPv4 reassembly operation is presented as a Packet Framework port. The code duplication with examples/ip_reassembly sample application to be addressed soon by linking the relevant library once upstreamed. Signed-off-by: Cristian Dumitrescu --- lib/librte_port/ipv4_frag_tbl.h | 403 +++

[dpdk-dev] [v2 23/23] Packet Framework unit tests

2014-06-04 Thread Cristian Dumitrescu
Unit tests for Packet Framework libraries. Signed-off-by: Cristian Dumitrescu --- app/test/Makefile |6 + app/test/commands.c |4 +- app/test/test.h |1 + app/test/test_table.c | 220

[dpdk-dev] [v2 22/23] Packet Framework IPv4 pipeline sample app

2014-06-04 Thread Cristian Dumitrescu
This Packet Framework sample application illustrates the capabilities of the Intel DPDK Packet Framework toolbox. It creates different functional blocks used by a typical IPv4 framework like: flow classification, firewall, routing, etc. CPU cores are connected together through standard interfac

[dpdk-dev] Running Qemu manually for vswitch

2014-06-04 Thread Srikanth Akula
Hi , I am currently working to install & run dpdk vswitch for our custom guest operating system . I have followed the steps mentioned in the docs section of the git dpdk-ovs page. 1. I am trying to run Qemu by building an xml file and creating a domain by using virsh. But it fails with the follo

[dpdk-dev] [PATCH] fix trailing whitespace.

2014-06-04 Thread Bruce Richardson
This commit removes trailing whitespace from lines in files. Almost all files are affected, as the BSD license copyright header had trailing whitespace on 4 lines in it [hence the number of files reporting 8 lines changed in the diffstat]. Signed-off-by: Bruce Richardson --- app/cmdline_test/cmd