DPDK patches and discussions
 help / color / mirror / Atom feed
From: Helin Zhang <helin.zhang@intel.com>
To: dev@dpdk.org
Subject: [dpdk-dev] [PATCH v9 0/2] i40e: RSS/FD granularity configuration
Date: Wed,  4 Nov 2015 00:07:53 +0800	[thread overview]
Message-ID: <1446566875-27485-1-git-send-email-helin.zhang@intel.com> (raw)
In-Reply-To: <1446474736-21775-1-git-send-email-helin.zhang@intel.com>

The default input set of fields of a received packet are loaded from firmware,
which cannot be modified even users want to use different fields for RSS or
flow director. Here adds more flexibilities of selecting or adding packet
fields for hash calculation or flow director to users. It also includes the
modifications in testpmd to support the testing.

v2 changes:
Solved the compilation issues.

v3 changes:
Support selecting more input set fields.

v4 changes:
Removed operation of 'delete', as it is not necessary.
Added FD granularity in both pmd and testpmd, as it is similar to RSS granularity.

v5 changes:
Fixed issue of generating wrong input set for registers on ipv6-udp and ipv6-tcp pc types.
Added clear masking operations during checking if MASK registers are opcupied or not.
Reworked several annotations.

v6 changes:
Updated documentation.

v7 changes:
Modified RTE_ETH_INSET_SIZE_MAX from 128 to 1, to avoid ABI changes.
Split documentation into pieces and put them directly into the patch of code changes directly.

v8 changes:
Modified RTE_ETH_INSET_SIZE_MAX from 1 to 128, as ABI changes is allowed in ethdev.
Updated release notes.

v9 changes:
Updated release notes.

Helin Zhang (2):
  i40e: RSS/FD granularity configuration
  app/testpmd: add test commands for RSS/FD granularity

 app/test-pmd/cmdline.c                      | 218 ++++++++
 doc/guides/rel_notes/release_2_2.rst        |   6 +
 doc/guides/testpmd_app_ug/testpmd_funcs.rst |  33 ++
 drivers/net/i40e/i40e_ethdev.c              | 742 ++++++++++++++++++++++++++++
 drivers/net/i40e/i40e_ethdev.h              |   7 +
 drivers/net/i40e/i40e_fdir.c                |  31 ++
 lib/librte_ether/rte_eth_ctrl.h             | 114 ++++-
 7 files changed, 1147 insertions(+), 4 deletions(-)

-- 
1.9.3

  parent reply	other threads:[~2015-11-03 16:08 UTC|newest]

Thread overview: 37+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-09-22  6:32 [dpdk-dev] [PATCH 0/2] i40e: RSS " Helin Zhang
2015-09-22  6:32 ` [dpdk-dev] [PATCH 1/2] i40e: add " Helin Zhang
2015-09-22  6:32 ` [dpdk-dev] [PATCH 2/2] app/testpmd: add test commands for RSS granularity Helin Zhang
2015-09-22  7:26 ` [dpdk-dev] [PATCH v2 0/2] i40e: RSS granularity configuration Helin Zhang
2015-09-22  7:26   ` [dpdk-dev] [PATCH v2 1/2] i40e: add " Helin Zhang
2015-09-22  7:26   ` [dpdk-dev] [PATCH v2 2/2] app/testpmd: add test commands for RSS granularity Helin Zhang
2015-09-24  7:08   ` [dpdk-dev] [PATCH v3 0/2] i40e: RSS granularity configuration Helin Zhang
2015-09-24  7:08     ` [dpdk-dev] [PATCH v3 1/2] i40e: add " Helin Zhang
2015-09-24  7:08     ` [dpdk-dev] [PATCH v3 2/2] app/testpmd: add test commands for RSS granularity Helin Zhang
2015-10-20  3:42     ` [dpdk-dev] [PATCH v4 0/2] i40e: RSS/FD granularity configuration Helin Zhang
2015-10-20  3:42       ` [dpdk-dev] [PATCH v4 1/2] " Helin Zhang
2015-10-20  3:42       ` [dpdk-dev] [PATCH v4 2/2] app/testpmd: add test commands for RSS/FD granularity Helin Zhang
2015-10-29  4:09       ` [dpdk-dev] [PATCH v5 0/2] i40e: RSS/FD granularity configuration Helin Zhang
2015-10-29  4:09         ` [dpdk-dev] [PATCH v5 1/2] " Helin Zhang
2015-10-29  4:09         ` [dpdk-dev] [PATCH v5 2/2] app/testpmd: add test commands for RSS/FD granularity Helin Zhang
2015-10-29  6:02         ` [dpdk-dev] [PATCH v6 0/3] i40e: RSS/FD granularity configuration Helin Zhang
2015-10-29  6:02           ` [dpdk-dev] [PATCH v6 1/3] " Helin Zhang
2015-10-29  9:38             ` Bruce Richardson
2015-10-30  1:58               ` Zhang, Helin
2015-10-29  6:02           ` [dpdk-dev] [PATCH v6 2/3] app/testpmd: add test commands for RSS/FD granularity Helin Zhang
2015-10-29  6:02           ` [dpdk-dev] [PATCH v6 3/3] doc: update release notes and testpmd guide Helin Zhang
2015-10-30  3:11           ` [dpdk-dev] [PATCH v7 0/2] i40e: RSS/FD granularity configuration Helin Zhang
2015-10-30  3:11             ` [dpdk-dev] [PATCH v7 1/2] " Helin Zhang
2015-10-30 13:46               ` Thomas Monjalon
2015-11-02  2:11                 ` Zhang, Helin
2015-11-02  7:27                   ` Thomas Monjalon
2015-11-02  7:59                     ` Zhang, Helin
2015-11-02  8:23                       ` Thomas Monjalon
2015-10-30  3:11             ` [dpdk-dev] [PATCH v7 2/2] app/testpmd: add test commands for RSS/FD granularity Helin Zhang
2015-10-30  7:59             ` [dpdk-dev] [PATCH v7 0/2] i40e: RSS/FD granularity configuration Wu, Jingjing
2015-11-02 14:32             ` [dpdk-dev] [PATCH v8 " Helin Zhang
2015-11-02 14:32               ` [dpdk-dev] [PATCH v8 1/2] " Helin Zhang
2015-11-02 14:32               ` [dpdk-dev] [PATCH v8 2/2] app/testpmd: add test commands for RSS/FD granularity Helin Zhang
2015-11-03 16:07               ` Helin Zhang [this message]
2015-11-03 16:07                 ` [dpdk-dev] [PATCH v9 1/2] i40e: RSS/FD granularity configuration Helin Zhang
2015-11-03 16:07                 ` [dpdk-dev] [PATCH v9 2/2] app/testpmd: add test commands for RSS/FD granularity Helin Zhang
2015-11-03 23:25                 ` [dpdk-dev] [PATCH v9 0/2] i40e: RSS/FD granularity configuration 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=1446566875-27485-1-git-send-email-helin.zhang@intel.com \
    --to=helin.zhang@intel.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).