From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 884562B84 for ; Tue, 4 Jul 2017 10:15:43 +0200 (CEST) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 04 Jul 2017 01:15:42 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.40,307,1496127600"; d="scan'208";a="1167853115" Received: from silpixa00397898.ir.intel.com ([10.237.223.116]) by fmsmga001.fm.intel.com with ESMTP; 04 Jul 2017 01:14:26 -0700 From: David Hunt To: dev@dpdk.org Cc: jerin.jacob@caviumnetworks.com, harry.van.haaren@intel.com Date: Tue, 4 Jul 2017 09:14:20 +0100 Message-Id: <1499156063-263699-1-git-send-email-david.hunt@intel.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1498830673-56759-2-git-send-email-david.hunt@intel.com> References: <1498830673-56759-2-git-send-email-david.hunt@intel.com> Subject: [dpdk-dev] [PATCH v6 0/3] next-eventdev: evendev pipeline sample app 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: Tue, 04 Jul 2017 08:15:44 -0000 This patchset introduces a sw pmd sample application that demonstrates a pipeline model for packet processing. Running this sample app with 17.05-rc2 or later is recommended. Changes in patch v2: * None, incorrect patch upload Changes in patch v3: * Re-work based on comments on mailing list. No major functional changes. * Checkpatch cleanup of a couple of typos Changes in patch v4: * Re-named the app as eventdev_pipeline_sw, as it's aimed at showing the functionality of the software PMD. Changes in patch v5: * Fixed make doc. eventdev_pipeline to eventdev_pipeline_sw * Fixed some typos in the eventdev programmers guide Changes in patch v6: * made name of dirs and app consistent - eventdev_pipeline_sw_pmd * Added new files and dirs to MAINTAINERS * Updaged libeventdev docs based on Jerin's feedback * Added some cleanup to eventdev_pipeline sw pmd sample app The sample app itself allows configuration of various pipelines using command line arguments. Parameters like number of stages, number of worker cores, which cores are assigned to specific tasks, and work- cycles per-stage in the pipeline can be configured. Documentation for eventdev is added for the programmers guide and sample app user guide, providing sample commands to run the app with, and expected output. [1/3] examples/eventdev_pipeline: added sample app [2/3] doc: add sw eventdev pipeline to sample app ug [3/3] doc: add eventdev library to programmers guide