DPDK patches and discussions
 help / color / mirror / Atom feed
From: Jerin Jacob <jerin.jacob@caviumnetworks.com>
To: Liang Ma <liang.j.ma@intel.com>
Cc: dev@dpdk.org, harry.van.haaren@intel.com,
	bruce.richardson@intel.com, deepak.k.jain@intel.com,
	john.geary@intel.com, peter.mccarthy@intel.com, seanbh@gmail.com
Subject: Re: [dpdk-dev] [RFC v2 PATCH 0/8] event: eventdev OPDL PMD
Date: Mon, 18 Dec 2017 14:42:38 +0530	[thread overview]
Message-ID: <20171218091237.GB25005@jerin> (raw)
In-Reply-To: <1513337189-137661-1-git-send-email-liang.j.ma@intel.com>

-----Original Message-----
> Date: Fri, 15 Dec 2017 11:26:21 +0000
> From: Liang Ma <liang.j.ma@intel.com>
> To: jerin.jacob@caviumnetworks.com
> CC: dev@dpdk.org, harry.van.haaren@intel.com, bruce.richardson@intel.com,
>  deepak.k.jain@intel.com, john.geary@intel.com, peter.mccarthy@intel.com,
>  seanbh@gmail.com
> Subject: [RFC v2 PATCH 0/8] event: eventdev OPDL PMD
> X-Mailer: git-send-email 2.7.5
> 
> The OPDL (Ordered Packet Distribution Library) eventdev is a specific
> implementation of the eventdev API. It is particularly suited to packet
> processing workloads that have high throughput and low latency 
> requirements. All packets follow the same path through the device.
> The order which packets  follow is determinted by the order in which
> queues are set up. Packets are left on the ring until they are transmitted.
> As a result packets do not go out of order.
> 
> Liang Ma (8):
>   event/opdl:  add the opdl ring infrastructure library
>   event/opdl: add the opdl pmd header and init helper function
>   event/opdl: add the opdl pmd main body and xstats helper function
>   eventdev/opdl: opdl eventdev pmd unit test function
>   lib/librte_eventdev: extend the eventdev capability flags
>   event/*: apply the three new capability flags for sw/dppa2/octeontx
>   event/opdl: update the build system to enable compilation
>   doc: add eventdev opdl pmd docuement
> 
>  config/common_base                                |    6 +
>  doc/guides/eventdevs/index.rst                    |    1 +
>  doc/guides/eventdevs/opdl.rst                     |  162 +++
>  drivers/event/Makefile                            |    1 +
>  drivers/event/dpaa2/dpaa2_eventdev.c              |    5 +-
>  drivers/event/octeontx/ssovf_evdev.c              |    5 +-
>  drivers/event/opdl/Makefile                       |   66 ++
>  drivers/event/opdl/opdl_evdev.c                   |  744 +++++++++++++
>  drivers/event/opdl/opdl_evdev.h                   |  354 ++++++
>  drivers/event/opdl/opdl_evdev_init.c              |  951 ++++++++++++++++
>  drivers/event/opdl/opdl_evdev_xstats.c            |  205 ++++
>  drivers/event/opdl/opdl_ring.c                    | 1232 +++++++++++++++++++++
>  drivers/event/opdl/opdl_ring.h                    |  601 ++++++++++
>  drivers/event/opdl/opdl_test.c                    | 1079 ++++++++++++++++++
>  drivers/event/opdl/rte_pmd_evdev_opdl_version.map |    3 +
>  drivers/event/sw/sw_evdev.c                       |    5 +-
>  lib/librte_eventdev/rte_eventdev.h                |   22 +
>  mk/rte.app.mk                                     |    1 +

Please update the MAINTAINERS file and the release note.

      parent reply	other threads:[~2017-12-18  9:12 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-12-15 11:26 Liang Ma
2017-12-15 11:26 ` [dpdk-dev] [PATCH v2 1/8] event/opdl: add the opdl ring infrastructure library Liang Ma
2017-12-15 12:38   ` Neil Horman
2017-12-15 13:50     ` Ma, Liang
2017-12-15 21:23       ` Neil Horman
2017-12-18 11:05         ` Ma, Liang
2017-12-16 10:14   ` Jerin Jacob
2017-12-15 11:26 ` [dpdk-dev] [PATCH v2 2/8] event/opdl: add the opdl pmd header and init helper function Liang Ma
2017-12-15 11:26 ` [dpdk-dev] [PATCH v2 3/8] event/opdl: add the opdl pmd main body and xstats " Liang Ma
2017-12-16 12:09   ` Jerin Jacob
2017-12-15 11:26 ` [dpdk-dev] [PATCH v2 4/8] eventdev/opdl: opdl eventdev pmd unit test function Liang Ma
2017-12-16 12:12   ` Jerin Jacob
2017-12-15 11:26 ` [dpdk-dev] [PATCH v2 5/8] lib/librte_eventdev: extend the eventdev capability flags Liang Ma
2017-12-15 11:26 ` [dpdk-dev] [PATCH v2 6/8] event/*: apply the three new capability flags for sw/dppa2/octeontx Liang Ma
2017-12-15 11:26 ` [dpdk-dev] [PATCH v2 7/8] event/opdl: update the build system to enable compilation Liang Ma
2017-12-16 12:15   ` Jerin Jacob
2017-12-15 11:26 ` [dpdk-dev] [PATCH v2 8/8] doc: add eventdev opdl pmd docuement Liang Ma
2017-12-15 11:50 ` [dpdk-dev] [RFC v2 PATCH 0/8] event: eventdev OPDL PMD Ma, Liang
2017-12-18  9:12 ` Jerin Jacob [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20171218091237.GB25005@jerin \
    --to=jerin.jacob@caviumnetworks.com \
    --cc=bruce.richardson@intel.com \
    --cc=deepak.k.jain@intel.com \
    --cc=dev@dpdk.org \
    --cc=harry.van.haaren@intel.com \
    --cc=john.geary@intel.com \
    --cc=liang.j.ma@intel.com \
    --cc=peter.mccarthy@intel.com \
    --cc=seanbh@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).