* [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; 5+ 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] 5+ messages in thread
* [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
0 siblings, 1 reply; 5+ 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] 5+ messages in thread
* Re: [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 15:28 ` Singh, Jasvinder
0 siblings, 1 reply; 5+ 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] 5+ 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; 5+ 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] 5+ messages in thread
end of thread, other threads:[~2016-03-16 20:37 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-03-14 13:44 [dpdk-dev] [PATCH] doc: update release notes for ip_pipeline app Jasvinder Singh
2016-03-16 20:35 ` Thomas Monjalon
-- strict thread matches above, loose matches on Subject: below --
2015-11-04 15:04 Jasvinder Singh
2015-11-04 15:12 ` De Lara Guarch, Pablo
2015-11-04 15:28 ` Singh, Jasvinder
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).