DPDK patches and discussions
 help / color / mirror / Atom feed
From: David Marchand <david.marchand@redhat.com>
To: dev@dpdk.org
Subject: [dpdk-dev] [PATCH v2 0/9] remove mbuf seqn
Date: Wed, 28 Oct 2020 13:20:04 +0100	[thread overview]
Message-ID: <20201028122013.31104-1-david.marchand@redhat.com> (raw)
In-Reply-To: <20201027221343.28551-1-david.marchand@redhat.com>

Followup on the work started by Thomas to free some space in the mbuf
structure.
This series applies on top of Thomas v4 series [1] and drops the seqn
field that had been deprecated.

1: https://patchwork.dpdk.org/project/dpdk/list/?series=13416

-- 
David Marchand

Changelog since v1:
- rebased on latest Thomas series,
- introduced a specific seqn for the eventdev test app,
- moved eventdev seqn as a pmd only thing,

David Marchand (9):
  event/dpaa2: remove dead code
  crypto/scheduler: remove unused internal seqn
  net/ark: remove use of seqn for debug
  reorder: switch sequence number to dynamic mbuf field
  dpaa: switch sequence number to dynamic mbuf field
  fslmc: switch sequence number to dynamic mbuf field
  eventdev: switch sequence number to dynamic mbuf field
  app/eventdev: switch sequence number to dynamic mbuf field
  mbuf: remove seqn field

 app/test-eventdev/test_order_common.c         | 14 +++++++-
 app/test-eventdev/test_order_common.h         | 13 +++++--
 app/test/test_reorder.c                       |  8 ++---
 doc/guides/rel_notes/deprecation.rst          |  1 -
 doc/guides/rel_notes/release_20_11.rst        |  3 ++
 drivers/bus/dpaa/dpaa_bus.c                   | 16 +++++++++
 drivers/bus/dpaa/rte_dpaa_bus.h               | 28 +++++++++++++++
 drivers/bus/dpaa/version.map                  |  1 +
 drivers/bus/fslmc/fslmc_bus.c                 | 17 +++++++++
 drivers/bus/fslmc/rte_fslmc.h                 | 23 ++++++++++++
 drivers/bus/fslmc/version.map                 |  1 +
 drivers/crypto/dpaa2_sec/dpaa2_sec_dpseci.c   | 18 +++++-----
 drivers/crypto/dpaa_sec/dpaa_sec.c            |  6 ++--
 .../crypto/scheduler/scheduler_pmd_private.h  |  1 -
 drivers/event/dpaa/dpaa_eventdev.c            |  6 ++--
 drivers/event/dpaa2/dpaa2_eventdev.c          |  9 ++---
 drivers/event/dpaa2/dpaa2_eventdev_selftest.c | 17 +++------
 drivers/event/octeontx/ssovf_evdev_selftest.c | 32 +++++++++--------
 drivers/event/octeontx2/otx2_evdev_selftest.c | 36 +++++++++++--------
 drivers/event/opdl/opdl_test.c                |  8 ++---
 drivers/event/sw/sw_evdev_selftest.c          | 34 +++++++++---------
 drivers/mempool/dpaa2/dpaa2_hw_mempool.h      |  2 --
 drivers/net/ark/ark_ethdev_rx.c               |  8 ++---
 drivers/net/dpaa/dpaa_ethdev.h                |  7 ----
 drivers/net/dpaa/dpaa_rxtx.c                  |  6 ++--
 drivers/net/dpaa2/dpaa2_rxtx.c                | 28 +++++++--------
 examples/packet_ordering/main.c               |  2 +-
 lib/librte_eventdev/rte_eventdev.c            | 14 +++++++-
 lib/librte_eventdev/rte_eventdev_pmd.h        | 20 +++++++++++
 lib/librte_eventdev/version.map               |  6 ++++
 lib/librte_mbuf/rte_mbuf_core.h               | 15 ++++----
 lib/librte_reorder/rte_reorder.c              | 23 ++++++++++--
 lib/librte_reorder/rte_reorder.h              | 21 +++++++++++
 lib/librte_reorder/version.map                |  6 ++++
 34 files changed, 314 insertions(+), 136 deletions(-)

-- 
2.23.0


  parent reply	other threads:[~2020-10-28 12:20 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-10-27 22:13 [dpdk-dev] [PATCH 0/8] " David Marchand
2020-10-27 22:13 ` [dpdk-dev] [PATCH 1/8] event/dpaa2: remove dead code David Marchand
2020-10-27 22:13 ` [dpdk-dev] [PATCH 2/8] crypto/scheduler: remove unused internal seqn David Marchand
2020-10-27 22:13 ` [dpdk-dev] [PATCH 3/8] net/ark: remove use of seqn for debug David Marchand
2020-10-28 12:19   ` Ed Czeck
2020-10-27 22:13 ` [dpdk-dev] [PATCH 4/8] reorder: switch sequence number to dynamic mbuf field David Marchand
2020-10-27 22:13 ` [dpdk-dev] [PATCH 5/8] dpaa: switch sequence number to dynamic field David Marchand
2020-10-27 22:13 ` [dpdk-dev] [PATCH 6/8] fslmc: " David Marchand
2020-10-27 22:13 ` [dpdk-dev] [PATCH 7/8] event: " David Marchand
2020-10-27 22:18   ` David Marchand
2020-10-28  7:27   ` Jerin Jacob
2020-10-28  8:55     ` David Marchand
2020-10-28  9:09       ` Jerin Jacob
2020-10-27 22:13 ` [dpdk-dev] [PATCH 8/8] mbuf: remove seqn field David Marchand
2020-10-28 10:27   ` Andrew Rybchenko
2020-10-28 12:20 ` David Marchand [this message]
2020-10-28 12:20   ` [dpdk-dev] [PATCH v2 1/9] event/dpaa2: remove dead code David Marchand
2020-10-31 18:28     ` Nipun Gupta
2020-10-28 12:20   ` [dpdk-dev] [PATCH v2 2/9] crypto/scheduler: remove unused internal seqn David Marchand
2020-10-28 12:20   ` [dpdk-dev] [PATCH v2 3/9] net/ark: remove use of seqn for debug David Marchand
2020-10-28 12:20   ` [dpdk-dev] [PATCH v2 4/9] reorder: switch sequence number to dynamic mbuf field David Marchand
2020-10-28 12:54     ` Andrew Rybchenko
2020-10-28 12:20   ` [dpdk-dev] [PATCH v2 5/9] dpaa: " David Marchand
2020-10-28 12:20   ` [dpdk-dev] [PATCH v2 6/9] fslmc: " David Marchand
2020-10-28 12:20   ` [dpdk-dev] [PATCH v2 7/9] eventdev: " David Marchand
2020-10-28 12:20   ` [dpdk-dev] [PATCH v2 8/9] app/eventdev: " David Marchand
2020-10-28 12:20   ` [dpdk-dev] [PATCH v2 9/9] mbuf: remove seqn field David Marchand
2020-10-31 21:09     ` Thomas Monjalon
2020-10-31 21:11   ` [dpdk-dev] [PATCH v2 0/9] remove mbuf seqn Thomas Monjalon

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=20201028122013.31104-1-david.marchand@redhat.com \
    --to=david.marchand@redhat.com \
    --cc=dev@dpdk.org \
    /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).