From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 2D2C92BB4 for ; Mon, 3 Jul 2017 11:25:22 +0200 (CEST) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 03 Jul 2017 02:25:21 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.40,302,1496127600"; d="scan'208";a="1189925592" Received: from dhunt5-mobl.ger.corp.intel.com (HELO [10.237.221.55]) ([10.237.221.55]) by fmsmga002.fm.intel.com with ESMTP; 03 Jul 2017 02:25:19 -0700 To: Jerin Jacob References: <1498751388-41571-2-git-send-email-david.hunt@intel.com> <1498830673-56759-1-git-send-email-david.hunt@intel.com> <1498830673-56759-3-git-send-email-david.hunt@intel.com> <20170703053659.GB6275@jerin> Cc: dev@dpdk.org, harry.van.haaren@intel.com From: "Hunt, David" Message-ID: <1ba9f3b0-f5b7-adb0-d1bf-266330426df6@intel.com> Date: Mon, 3 Jul 2017 10:25:17 +0100 User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.8.0 MIME-Version: 1.0 In-Reply-To: <20170703053659.GB6275@jerin> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v5 2/3] doc: add sw eventdev pipeline to sample app ug X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 Jul 2017 09:25:23 -0000 Hi Jerin, On 3/7/2017 6:37 AM, Jerin Jacob wrote: > -----Original Message----- >> From: Harry van Haaren >>> Adi a new entry in the sample app user-guides, >> which details the working of the eventdev_pipeline_sw. >> >> Signed-off-by: Harry van Haaren >> Signed-off-by: David Hunt >> --- >> doc/guides/sample_app_ug/eventdev_pipeline_sw.rst | 190 ++++++++++++++++++++++ >> doc/guides/sample_app_ug/index.rst | 1 + >> 2 files changed, 191 insertions(+) >> create mode 100644 doc/guides/sample_app_ug/eventdev_pipeline_sw.rst >> >> diff --git a/doc/guides/sample_app_ug/eventdev_pipeline_sw.rst b/doc/guides/sample_app_ug/eventdev_pipeline_sw.rst >> new file mode 100644 >> index 0000000..65c33a8 >> --- /dev/null >> +++ b/doc/guides/sample_app_ug/eventdev_pipeline_sw.rst >> @@ -0,0 +1,190 @@ >> + >> + >> +Eventdev Pipeline SW Sample Application > Eventdev Pipeline SW PMD Sample Application Sure. >> +======================================= >> + >> +The eventdev pipeline sample application is a sample app that demonstrates >> +the usage of the eventdev API using the software PMD. It shows how an >> +application can configure a pipeline and assign a set of worker cores to >> +perform the processing required. >> + >> +The application has a range of command line arguments allowing it to be >> +configured for various numbers worker cores, stages,queue depths and cycles per >> +stage of work. This is useful for performance testing as well as quickly testing >> +a particular pipeline configuration. >> + >> + >> +statistics that the PMD provides. The statistics provided depend on the PMD >> +used, see the Event Device Drivers section for a list of eventdev PMDs. >> diff --git a/doc/guides/sample_app_ug/index.rst b/doc/guides/sample_app_ug/index.rst >> index 02611ef..90be36a 100644 >> --- a/doc/guides/sample_app_ug/index.rst >> +++ b/doc/guides/sample_app_ug/index.rst >> @@ -69,6 +69,7 @@ Sample Applications User Guides >> netmap_compatibility >> ip_pipeline >> test_pipeline >> + eventdev_pipeline_sw > eventdev_pipeline_sw_pmd There's no need to change this, it would break 'make doc' The filename of the .rst is "./doc/guides/sample_app_ug/eventdev_pipeline_sw.rst" The app called eventdev_pipeline_sw. >> dist_app >> vm_power_management >> tep_termination > With above changes: > > Acked-by: Jerin Jacob >