* [dpdk-dev] [PATCH] doc: add eventdev pipeline sample app to release notes
@ 2018-01-16 15:05 Pavan Nikhilesh
2018-01-16 15:11 ` Jerin Jacob
2018-01-16 18:06 ` [dpdk-dev] [PATCH v2] " Pavan Nikhilesh
0 siblings, 2 replies; 6+ messages in thread
From: Pavan Nikhilesh @ 2018-01-16 15:05 UTC (permalink / raw)
To: jerin.jacob, harry.van.haaren, john.mcnamara, marko.kovacevic
Cc: dev, Pavan Nikhilesh
Signed-off-by: Pavan Nikhilesh <pbhagavatula@caviumnetworks.com>
---
This patch depends on http://dpdk.org/dev/patchwork/patch/33429 patchset.
doc/guides/rel_notes/release_18_02.rst | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/doc/guides/rel_notes/release_18_02.rst b/doc/guides/rel_notes/release_18_02.rst
index b2dc39cfe..11b8d889e 100644
--- a/doc/guides/rel_notes/release_18_02.rst
+++ b/doc/guides/rel_notes/release_18_02.rst
@@ -53,6 +53,12 @@ New Features
With this change, application can use OPDL PMD by eventdev api.
+* **Update Eventdev Sample application to support event devices based on caps**
+ Update Eventdev pipeline sample application to support various types of
+ pipelines based on the capabilities of the attached event and ethernet
+ devices. And renamed the application from ``eventdev_pipeline_sw_pmd`` to
+ ``eventdev_pipeline``.
+
API Changes
-----------
--
2.14.1
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [dpdk-dev] [PATCH] doc: add eventdev pipeline sample app to release notes
2018-01-16 15:05 [dpdk-dev] [PATCH] doc: add eventdev pipeline sample app to release notes Pavan Nikhilesh
@ 2018-01-16 15:11 ` Jerin Jacob
2018-01-16 18:06 ` [dpdk-dev] [PATCH v2] " Pavan Nikhilesh
1 sibling, 0 replies; 6+ messages in thread
From: Jerin Jacob @ 2018-01-16 15:11 UTC (permalink / raw)
To: Pavan Nikhilesh; +Cc: harry.van.haaren, john.mcnamara, marko.kovacevic, dev
-----Original Message-----
> Date: Tue, 16 Jan 2018 20:35:26 +0530
> From: Pavan Nikhilesh <pbhagavatula@caviumnetworks.com>
> To: jerin.jacob@caviumnetworks.com, harry.van.haaren@intel.com,
> john.mcnamara@intel.com, marko.kovacevic@intel.com
> Cc: dev@dpdk.org, Pavan Nikhilesh <pbhagavatula@caviumnetworks.com>
> Subject: [dpdk-dev] [PATCH] doc: add eventdev pipeline sample app to
> release notes
> X-Mailer: git-send-email 2.14.1
>
> Signed-off-by: Pavan Nikhilesh <pbhagavatula@caviumnetworks.com>
> ---
>
> This patch depends on http://dpdk.org/dev/patchwork/patch/33429 patchset.
>
> doc/guides/rel_notes/release_18_02.rst | 6 ++++++
> 1 file changed, 6 insertions(+)
>
> diff --git a/doc/guides/rel_notes/release_18_02.rst b/doc/guides/rel_notes/release_18_02.rst
> index b2dc39cfe..11b8d889e 100644
> --- a/doc/guides/rel_notes/release_18_02.rst
> +++ b/doc/guides/rel_notes/release_18_02.rst
> @@ -53,6 +53,12 @@ New Features
>
> With this change, application can use OPDL PMD by eventdev api.
>
> +* **Update Eventdev Sample application to support event devices based on caps**
IMO, it is better to change the caps to capabilities
> + Update Eventdev pipeline sample application to support various types of
> + pipelines based on the capabilities of the attached event and ethernet
> + devices. And renamed the application from ``eventdev_pipeline_sw_pmd`` to
How about,
and renamed the application from SW PMD specific ``eventdev_pipeline_sw_pmd``
to PMD agnostic ``eventdev_pipeline``.
> + ``eventdev_pipeline``.
> +
> API Changes
> -----------
>
> --
> 2.14.1
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* [dpdk-dev] [PATCH v2] doc: add eventdev pipeline sample app to release notes
2018-01-16 15:05 [dpdk-dev] [PATCH] doc: add eventdev pipeline sample app to release notes Pavan Nikhilesh
2018-01-16 15:11 ` Jerin Jacob
@ 2018-01-16 18:06 ` Pavan Nikhilesh
2018-01-17 16:56 ` Mcnamara, John
2018-01-17 16:58 ` Mcnamara, John
1 sibling, 2 replies; 6+ messages in thread
From: Pavan Nikhilesh @ 2018-01-16 18:06 UTC (permalink / raw)
To: jerin.jacob, marko.kovacevic, john.mcnamara; +Cc: dev, Pavan Nikhilesh
Signed-off-by: Pavan Nikhilesh <pbhagavatula@caviumnetworks.com>
---
This patch depends on http://dpdk.org/dev/patchwork/patch/33429 patchset.
doc/guides/rel_notes/release_18_02.rst | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/doc/guides/rel_notes/release_18_02.rst b/doc/guides/rel_notes/release_18_02.rst
index b2dc39cfe..50d525840 100644
--- a/doc/guides/rel_notes/release_18_02.rst
+++ b/doc/guides/rel_notes/release_18_02.rst
@@ -53,6 +53,13 @@ New Features
With this change, application can use OPDL PMD by eventdev api.
+* **Updated Eventdev Sample application to support event devices based on capability**
+
+ Updated Eventdev pipeline sample application to support various types of pipelines
+ based on the capabilities of the attached event and ethernet devices. Also,
+ renamed the application from SW PMD specific ``eventdev_pipeline_sw_pmd``
+ to PMD agnostic ``eventdev_pipeline``.
+
API Changes
-----------
--
2.14.1
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [dpdk-dev] [PATCH v2] doc: add eventdev pipeline sample app to release notes
2018-01-16 18:06 ` [dpdk-dev] [PATCH v2] " Pavan Nikhilesh
@ 2018-01-17 16:56 ` Mcnamara, John
2018-01-17 17:22 ` Jerin Jacob
2018-01-17 16:58 ` Mcnamara, John
1 sibling, 1 reply; 6+ messages in thread
From: Mcnamara, John @ 2018-01-17 16:56 UTC (permalink / raw)
To: Pavan Nikhilesh, jerin.jacob, Kovacevic, Marko; +Cc: dev
> -----Original Message-----
> From: Pavan Nikhilesh [mailto:pbhagavatula@caviumnetworks.com]
> Sent: Tuesday, January 16, 2018 6:06 PM
> To: jerin.jacob@caviumnetworks.com; Kovacevic, Marko
> <marko.kovacevic@intel.com>; Mcnamara, John <john.mcnamara@intel.com>
> Cc: dev@dpdk.org; Pavan Nikhilesh <pbhagavatula@caviumnetworks.com>
> Subject: [dpdk-dev] [PATCH v2] doc: add eventdev pipeline sample app to
> release notes
>
> Signed-off-by: Pavan Nikhilesh <pbhagavatula@caviumnetworks.com>
Acked-by: John McNamara <john.mcnamara@intel.com>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [dpdk-dev] [PATCH v2] doc: add eventdev pipeline sample app to release notes
2018-01-16 18:06 ` [dpdk-dev] [PATCH v2] " Pavan Nikhilesh
2018-01-17 16:56 ` Mcnamara, John
@ 2018-01-17 16:58 ` Mcnamara, John
1 sibling, 0 replies; 6+ messages in thread
From: Mcnamara, John @ 2018-01-17 16:58 UTC (permalink / raw)
To: Pavan Nikhilesh, jerin.jacob, Kovacevic, Marko; +Cc: dev
> -----Original Message-----
> From: Pavan Nikhilesh [mailto:pbhagavatula@caviumnetworks.com]
> Sent: Tuesday, January 16, 2018 6:06 PM
> To: jerin.jacob@caviumnetworks.com; Kovacevic, Marko
> <marko.kovacevic@intel.com>; Mcnamara, John <john.mcnamara@intel.com>
> Cc: dev@dpdk.org; Pavan Nikhilesh <pbhagavatula@caviumnetworks.com>
> Subject: [dpdk-dev] [PATCH v2] doc: add eventdev pipeline sample app to
> release notes
>
> Signed-off-by: Pavan Nikhilesh <pbhagavatula@caviumnetworks.com>
Acked-by: John McNamara <john.mcnamara@intel.com>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [dpdk-dev] [PATCH v2] doc: add eventdev pipeline sample app to release notes
2018-01-17 16:56 ` Mcnamara, John
@ 2018-01-17 17:22 ` Jerin Jacob
0 siblings, 0 replies; 6+ messages in thread
From: Jerin Jacob @ 2018-01-17 17:22 UTC (permalink / raw)
To: Mcnamara, John; +Cc: Pavan Nikhilesh, Kovacevic, Marko, dev
-----Original Message-----
> Date: Wed, 17 Jan 2018 16:56:47 +0000
> From: "Mcnamara, John" <john.mcnamara@intel.com>
> To: Pavan Nikhilesh <pbhagavatula@caviumnetworks.com>,
> "jerin.jacob@caviumnetworks.com" <jerin.jacob@caviumnetworks.com>,
> "Kovacevic, Marko" <marko.kovacevic@intel.com>
> CC: "dev@dpdk.org" <dev@dpdk.org>
> Subject: RE: [dpdk-dev] [PATCH v2] doc: add eventdev pipeline sample app to
> release notes
>
>
>
> > -----Original Message-----
> > From: Pavan Nikhilesh [mailto:pbhagavatula@caviumnetworks.com]
> > Sent: Tuesday, January 16, 2018 6:06 PM
> > To: jerin.jacob@caviumnetworks.com; Kovacevic, Marko
> > <marko.kovacevic@intel.com>; Mcnamara, John <john.mcnamara@intel.com>
> > Cc: dev@dpdk.org; Pavan Nikhilesh <pbhagavatula@caviumnetworks.com>
> > Subject: [dpdk-dev] [PATCH v2] doc: add eventdev pipeline sample app to
> > release notes
> >
> > Signed-off-by: Pavan Nikhilesh <pbhagavatula@caviumnetworks.com>
>
> Acked-by: John McNamara <john.mcnamara@intel.com>
Applied to dpdk-next-eventdev/master. Thanks.
>
>
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2018-01-17 17:23 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-01-16 15:05 [dpdk-dev] [PATCH] doc: add eventdev pipeline sample app to release notes Pavan Nikhilesh
2018-01-16 15:11 ` Jerin Jacob
2018-01-16 18:06 ` [dpdk-dev] [PATCH v2] " Pavan Nikhilesh
2018-01-17 16:56 ` Mcnamara, John
2018-01-17 17:22 ` Jerin Jacob
2018-01-17 16:58 ` Mcnamara, John
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).