DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] doc: update release notes for ip_pipeline app
@ 2015-11-04 15:04 Jasvinder Singh
  2015-11-04 15:12 ` De Lara Guarch, Pablo
  2015-11-04 17:03 ` [dpdk-dev] [PATCH v2] " Jasvinder Singh
  0 siblings, 2 replies; 8+ messages in thread
From: Jasvinder Singh @ 2015-11-04 15:04 UTC (permalink / raw)
  To: dev

This patch updates the release notes with the features
added to ip_pipeline application.

Signed-off-by: Jasvinder Singh <jasvinder.singh@intel.com>
---
 doc/guides/rel_notes/release_2_2.rst | 49 ++++++++++++++++++++++++++++++++++++
 1 file changed, 49 insertions(+)

diff --git a/doc/guides/rel_notes/release_2_2.rst b/doc/guides/rel_notes/release_2_2.rst
index 0c7abe9..2245126 100644
--- a/doc/guides/rel_notes/release_2_2.rst
+++ b/doc/guides/rel_notes/release_2_2.rst
@@ -176,6 +176,55 @@ Libraries
 Examples
 ~~~~~~~~
 
+* **IP-Pipeline Application.**
+
+  The following features have been added to ip_pipeline
+  application;
+
+  * Added Multiple Producers Multiple Consumers (MPSC)
+    and fragmentation/reassembly support to software rings.
+
+  * Added dynamic pipeline reconfiguration feature that
+    allows binding pipeline to other threads at runtime
+    using CLI commands.
+
+  * Added Enable/disable of promisc mode from ip_pipeline
+    configuration file.
+
+  * Added check on rx queues and tx queues of each link
+    whether they are used correctly in ip_pipeline
+    configuration file.
+
+  * Added flow id parameters to the flow-classification
+    table entries.
+
+  * Added more functions to the routing pipeline, for examples,
+    Fast-path ARP table enable/disable, Double-tagged VLAN
+    (Q-in-Q) packet enacapsulation for the next-hop, MPLS
+    encapsulation for the next-hop, Add colour (Traffic-class
+    for QoS) to the MPLS tag, Classification action to select
+    the input queue of the hierarchical scehdular (QoS).
+    All these functions can be enabled or disabled thorugh
+    congifuration file.
+
+  * Added flow-actions pipeline to ip_pipeline application.
+    Some of the operations of flow classification pipeline
+    such as traffic metering/marking (for e.g. Two Rate Three
+    Color Marker (trTCM)), policer can be performed separately
+    in flow-actions pipeline to avoid excessive computational
+    burden on the CPU core running the flow-classification
+    pipeline.
+
+  * Modified the passthrough pipeline's actions-handler to
+    implement a generic approach to extract fields from the
+    packet's header and copying them to packet metadata. The
+    fields are selected at the desired offset on the basis
+    of the mask specified in application configuration file.
+    The extracted fields, for instance, can be used to compute
+    hash for the lookup table. This feature exposes more
+    flexibility to the users as they will be able to employ
+    new protocol headers and specify the required fields to be
+    extracted.
 
 Other
 ~~~~~
-- 
2.4.3

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [dpdk-dev] [PATCH] doc: update release notes for ip_pipeline app
  2015-11-04 15:04 [dpdk-dev] [PATCH] doc: update release notes for ip_pipeline app Jasvinder Singh
@ 2015-11-04 15:12 ` De Lara Guarch, Pablo
  2015-11-04 15:28   ` Singh, Jasvinder
  2015-11-04 17:03 ` [dpdk-dev] [PATCH v2] " Jasvinder Singh
  1 sibling, 1 reply; 8+ messages in thread
From: De Lara Guarch, Pablo @ 2015-11-04 15:12 UTC (permalink / raw)
  To: Singh, Jasvinder, dev

Hi Jasvinder,

> -----Original Message-----
> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Jasvinder Singh
> Sent: Wednesday, November 04, 2015 3:05 PM
> To: dev@dpdk.org
> Subject: [dpdk-dev] [PATCH] doc: update release notes for ip_pipeline app
> 
> This patch updates the release notes with the features
> added to ip_pipeline application.
> 
> Signed-off-by: Jasvinder Singh <jasvinder.singh@intel.com>
> ---

You have added the changes in the wrong place, under resolved issues.
Could you send a v2 with those moved?

Thanks,
Pablo

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [dpdk-dev] [PATCH] doc: update release notes for ip_pipeline app
  2015-11-04 15:12 ` De Lara Guarch, Pablo
@ 2015-11-04 15:28   ` Singh, Jasvinder
  0 siblings, 0 replies; 8+ messages in thread
From: Singh, Jasvinder @ 2015-11-04 15:28 UTC (permalink / raw)
  To: De Lara Guarch, Pablo, dev

> 
> Hi Jasvinder,
> 
> > -----Original Message-----
> > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Jasvinder Singh
> > Sent: Wednesday, November 04, 2015 3:05 PM
> > To: dev@dpdk.org
> > Subject: [dpdk-dev] [PATCH] doc: update release notes for ip_pipeline
> > app
> >
> > This patch updates the release notes with the features added to
> > ip_pipeline application.
> >
> > Signed-off-by: Jasvinder Singh <jasvinder.singh@intel.com>
> > ---
> 
> You have added the changes in the wrong place, under resolved issues.
> Could you send a v2 with those moved?
> 
> Thanks,
> Pablo

Thanks, Pablo. I will send v2 soon.

Jasvinder 

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [dpdk-dev] [PATCH v2] doc: update release notes for ip_pipeline app
  2015-11-04 15:04 [dpdk-dev] [PATCH] doc: update release notes for ip_pipeline app Jasvinder Singh
  2015-11-04 15:12 ` De Lara Guarch, Pablo
@ 2015-11-04 17:03 ` Jasvinder Singh
  2015-11-05 14:18   ` Zhang, Roy Fan
  1 sibling, 1 reply; 8+ messages in thread
From: Jasvinder Singh @ 2015-11-04 17:03 UTC (permalink / raw)
  To: dev

This patch updates the release notes with the features
added to ip_pipeline application.

v2:
*placed the release notes under New Features header

Signed-off-by: Jasvinder Singh <jasvinder.singh@intel.com>
---
 doc/guides/rel_notes/release_2_2.rst | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/doc/guides/rel_notes/release_2_2.rst b/doc/guides/rel_notes/release_2_2.rst
index c5d92ea..fffcac3 100644
--- a/doc/guides/rel_notes/release_2_2.rst
+++ b/doc/guides/rel_notes/release_2_2.rst
@@ -94,6 +94,39 @@ New Features
 
 * **Added port hotplug support to xenvirt.**
 
+* **IP Pipeline Application**
+
+  The following features have been added to ip_pipeline
+  application;
+
+  * Added Multiple Producers Multiple Consumers (MPSC)
+    and fragmentation/reassembly support to software rings.
+
+  * Added dynamic pipeline reconfiguration feature that
+    allows binding pipeline to other threads at runtime
+    using CLI commands.
+
+  * Added Enable/disable of promisc mode from ip_pipeline
+    configuration file.
+
+  * Added check on rx queues and tx queues of each link
+    whether they are used correctly in ip_pipeline
+    configuration file.
+
+  * Added flow id parameters to the flow-classification
+    table entries.
+
+  * Added more functions to the routing pipeline:
+    ARP table enable/disable, Q-in-Q and MPLS encapsulation,
+    add colour (Traffic-class for QoS) to the MPLS tag.
+
+  * Added flow-actions pipeline for traffic metering/marking
+    (for e.g. Two Rate Three Color Marker (trTCM)), policer etc.
+
+  * Modified the pass-through pipeline's actions-handler to
+    implement a generic approach to extract fields from the
+    packet's header and copying them to packet metadata.
+
 
 Resolved Issues
 ---------------
-- 
2.4.3

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [dpdk-dev] [PATCH v2] doc: update release notes for ip_pipeline app
  2015-11-04 17:03 ` [dpdk-dev] [PATCH v2] " Jasvinder Singh
@ 2015-11-05 14:18   ` Zhang, Roy Fan
  2015-12-13 23:11     ` Thomas Monjalon
  0 siblings, 1 reply; 8+ messages in thread
From: Zhang, Roy Fan @ 2015-11-05 14:18 UTC (permalink / raw)
  To: Singh, Jasvinder, dev



> -----Original Message-----
> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Jasvinder Singh
> Sent: Wednesday, November 4, 2015 5:04 PM
> To: dev@dpdk.org
> Subject: [dpdk-dev] [PATCH v2] doc: update release notes for ip_pipeline app
>
> This patch updates the release notes with the features added to ip_pipeline application.
>
> v2:
> *placed the release notes under New Features header
>
> Signed-off-by: Jasvinder Singh <jasvinder.singh@intel.com>

Acked-by: Fan Zhang <roy.fan.zhang@intel.com>

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [dpdk-dev] [PATCH v2] doc: update release notes for ip_pipeline app
  2015-11-05 14:18   ` Zhang, Roy Fan
@ 2015-12-13 23:11     ` Thomas Monjalon
  0 siblings, 0 replies; 8+ messages in thread
From: Thomas Monjalon @ 2015-12-13 23:11 UTC (permalink / raw)
  To: Singh, Jasvinder; +Cc: dev

> > This patch updates the release notes with the features added to ip_pipeline application.
> >
> > v2:
> > *placed the release notes under New Features header
> >
> > Signed-off-by: Jasvinder Singh <jasvinder.singh@intel.com>
> 
> Acked-by: Fan Zhang <roy.fan.zhang@intel.com>

Applied, thanks

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [dpdk-dev] [PATCH] doc: update release notes for ip_pipeline app
  2016-03-14 13:44 [dpdk-dev] [PATCH] " Jasvinder Singh
@ 2016-03-16 20:35 ` Thomas Monjalon
  0 siblings, 0 replies; 8+ messages in thread
From: Thomas Monjalon @ 2016-03-16 20:35 UTC (permalink / raw)
  To: Jasvinder Singh; +Cc: dev, cristian.dumitrescu

2016-03-14 13:44, Jasvinder Singh:
> This patch updates the release notes with the features that
> have been added to ip_pipeline application.
> 
> Signed-off-by: Jasvinder Singh <jasvinder.singh@intel.com>
> Acked-by: Cristian Dumitrescu <cristian.dumitrescu@intel.com>

Applied, thanks

Please try to integrate the release notes updates when doing
the changes themselves.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [dpdk-dev] [PATCH] doc: update release notes for ip_pipeline app
@ 2016-03-14 13:44 Jasvinder Singh
  2016-03-16 20:35 ` Thomas Monjalon
  0 siblings, 1 reply; 8+ messages in thread
From: Jasvinder Singh @ 2016-03-14 13:44 UTC (permalink / raw)
  To: dev; +Cc: cristian.dumitrescu

This patch updates the release notes with the features that
have been added to ip_pipeline application.

Signed-off-by: Jasvinder Singh <jasvinder.singh@intel.com>
Acked-by: Cristian Dumitrescu <cristian.dumitrescu@intel.com>
---
 doc/guides/rel_notes/release_16_04.rst | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/doc/guides/rel_notes/release_16_04.rst b/doc/guides/rel_notes/release_16_04.rst
index b729b67..a4e02fc 100644
--- a/doc/guides/rel_notes/release_16_04.rst
+++ b/doc/guides/rel_notes/release_16_04.rst
@@ -127,6 +127,15 @@ This section should contain new features added in this release. Sample format:
 
   Added new Crypto PMD to support null crypto operations in SW.
 
+* **IP Pipeline Application.**
+
+  The following features have been added to ip_pipeline application;
+
+  * Added CPU utilization measurement and idle cycle rate computation.
+  * Added link idenfication support through existing port-mask option or by
+    specifying PCI device in every LINK section in the configuration file.
+  * Added load balancing support in passthrough pipeline.
+
 Resolved Issues
 ---------------
 
@@ -172,6 +181,10 @@ Libraries
   Fix crc32c hash functions to return a valid crc32c value for data lengths
   not multiple of 4 bytes.
 
+* **librte_port: fixed segmentation fault for ring and ethdev writer nodrop.**
+
+  Fix core dump issue on txq and swq when dropless is set to yes.
+
 
 Examples
 ~~~~~~~~
-- 
2.5.0

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2016-03-16 20:37 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-04 15:04 [dpdk-dev] [PATCH] doc: update release notes for ip_pipeline app Jasvinder Singh
2015-11-04 15:12 ` De Lara Guarch, Pablo
2015-11-04 15:28   ` Singh, Jasvinder
2015-11-04 17:03 ` [dpdk-dev] [PATCH v2] " Jasvinder Singh
2015-11-05 14:18   ` Zhang, Roy Fan
2015-12-13 23:11     ` Thomas Monjalon
2016-03-14 13:44 [dpdk-dev] [PATCH] " Jasvinder Singh
2016-03-16 20:35 ` Thomas Monjalon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).