DPDK patches and discussions
 help / color / mirror / Atom feed
From: "Chao Zhu" <chaozhu@linux.vnet.ibm.com>
To: "'Qi Zhang'" <qi.z.zhang@intel.com>, <ferruh.yigit@intel.com>
Cc: <jingjing.wu@intel.com>, <helin.zhang@intel.com>,
	<jianbo.liu@linaro.org>,  <dev@dpdk.org>
Subject: Re: [dpdk-dev] [PATCH v9 0/3] net/i40e: configurable PTYPE mapping
Date: Thu, 13 Apr 2017 17:50:01 +0800	[thread overview]
Message-ID: <000601d2b43b$5ca19850$15e4c8f0$@linux.vnet.ibm.com> (raw)
In-Reply-To: <20170412135534.69083-1-qi.z.zhang@intel.com>

> -----Original Message-----
> From: Qi Zhang [mailto:qi.z.zhang@intel.com]
> Sent: 2017年4月12日 21:56
> To: ferruh.yigit@intel.com
> Cc: jingjing.wu@intel.com; helin.zhang@intel.com; jianbo.liu@linaro.org;
> chaozhu@linux.vnet.ibm.com; dev@dpdk.org; Qi Zhang <qi.z.zhang@intel.com>
> Subject: [PATCH v9 0/3] net/i40e: configurable PTYPE mapping
> 
> The patch set create new APIs that help to change the mapping from
hardware
> defined packet type to software defined packet type for i40e NICs.
> Keep these APIs private is because currently they are only meaningful for
> devices that support dynamic PTYPE configuration, which may not be a
general
> device feature.
> 
> v9:
> 
> - Rebase to dpdk-next-net
> 
> v8:
> 
> - Fix compile error on for ARM vPMD
> - Rebase to 17.05-rc1
> 
> v7:
> 
> - Add Altivec vPMD support.
> 
> v6:
> 
> - Update testpmd_func.rst.
> 
> v5:
> 
> - Rebase to dpdk-next-net.
> 
> v4:
> 
> - Add comment to explain the "user defined" ptype.
> 
> v3:
> 
> - Fix compile error when CONFIG_RTE_LIBRTE_I40E_PMD=y in testpmd
> 
> v2:
> 
> - Add testpmd command line:
>   ptype mapping get <port_id> <valid_only>
>   ptype mapping replace <port_id> <target> <mask> <pkt_type>
>   ptype mapping reset <port_id>
>   ptype mapping update <port_id> <hw_ptype> <sw_ptype>
> 
> - Rename APIs to rte_pmd_i40e_ptype_mapping_xxx
> 
> - Add missing API declaration in rte_pmd_i40e_version.map
> 
> - Add missing ptype in check_invalid_pkt_type
> 
> - Fix couple typo error
> 
> Qi Zhang (3):
>   net/i40e: enable per dev PTYPE mapping table
>   net/i40e: configurable PTYPE mapping
>   app/testpmd: add CL for ptype mapping configure
> 
>  app/test-pmd/cmdline.c                      | 372
> ++++++++++++++++++++++++++++
>  doc/guides/testpmd_app_ug/testpmd_funcs.rst |  36 +++
>  drivers/net/i40e/i40e_ethdev.c              |   1 +
>  drivers/net/i40e/i40e_ethdev.h              |   5 +
>  drivers/net/i40e/i40e_ethdev_vf.c           |   2 +-
>  drivers/net/i40e/i40e_rxtx.c                |  30 ++-
>  drivers/net/i40e/i40e_rxtx.h                |   3 +-
>  drivers/net/i40e/i40e_rxtx_vec_altivec.c    |  22 +-
>  drivers/net/i40e/i40e_rxtx_vec_neon.c       |   8 +-
>  drivers/net/i40e/i40e_rxtx_vec_sse.c        |  14 +-
>  drivers/net/i40e/rte_pmd_i40e.c             | 230 +++++++++++++++++
>  drivers/net/i40e/rte_pmd_i40e.h             |  86 +++++++
>  drivers/net/i40e/rte_pmd_i40e_version.map   |   4 +
>  13 files changed, 784 insertions(+), 29 deletions(-)
> 
> --
> 2.9.3
Acked-by: Chao Zhu <chaozhu@linux.vnet.ibm.com>

  parent reply	other threads:[~2017-04-13  9:50 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-04-04  1:55 [dpdk-dev] [PATCH v7 " Qi Zhang
2017-04-04  1:55 ` [dpdk-dev] [PATCH v7 1/3] net/i40e: enable per dev PTYPE mapping table Qi Zhang
2017-04-04  1:55 ` [dpdk-dev] [PATCH v7 2/3] net/i40e: configurable PTYPE mapping Qi Zhang
2017-04-04  1:55 ` [dpdk-dev] [PATCH v7 3/3] app/testpmd: add CL for ptype mapping configure Qi Zhang
2017-04-04  9:30 ` [dpdk-dev] [PATCH v7 0/3] net/i40e: configurable PTYPE mapping Ferruh Yigit
2017-04-04 20:22   ` Thomas Monjalon
2017-04-05  5:45     ` Jianbo Liu
2017-04-05  6:01       ` Zhang, Qi Z
2017-04-07  3:25 ` [dpdk-dev] [PATCH v8 " Qi Zhang
2017-04-07  3:25   ` [dpdk-dev] [PATCH v8 1/3] net/i40e: enable per dev PTYPE mapping table Qi Zhang
2017-04-07  2:36     ` Zhang, Qi Z
2017-04-12  2:13       ` Zhang, Qi Z
2017-04-07  3:25   ` [dpdk-dev] [PATCH v8 2/3] net/i40e: configurable PTYPE mapping Qi Zhang
2017-04-12  8:36     ` Ferruh Yigit
2017-04-07  3:25   ` [dpdk-dev] [PATCH v8 3/3] app/testpmd: add CL for ptype mapping configure Qi Zhang
2017-04-12 13:55   ` [dpdk-dev] [PATCH v9 0/3] net/i40e: configurable PTYPE mapping Qi Zhang
2017-04-12 13:55     ` [dpdk-dev] [PATCH v9 1/3] net/i40e: enable per dev PTYPE mapping table Qi Zhang
2017-04-12 13:55     ` [dpdk-dev] [PATCH v9 2/3] net/i40e: configurable PTYPE mapping Qi Zhang
2017-04-12 13:55     ` [dpdk-dev] [PATCH v9 3/3] app/testpmd: add CL for ptype mapping configure Qi Zhang
2017-04-13  9:50     ` Chao Zhu [this message]
2017-04-13 10:46       ` [dpdk-dev] [PATCH v9 0/3] net/i40e: configurable PTYPE mapping Ferruh Yigit

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='000601d2b43b$5ca19850$15e4c8f0$@linux.vnet.ibm.com' \
    --to=chaozhu@linux.vnet.ibm.com \
    --cc=dev@dpdk.org \
    --cc=ferruh.yigit@intel.com \
    --cc=helin.zhang@intel.com \
    --cc=jianbo.liu@linaro.org \
    --cc=jingjing.wu@intel.com \
    --cc=qi.z.zhang@intel.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).