Soft Patch Panel
 help / color / mirror / Atom feed
From: Yasufumi Ogawa <yasufum.o@gmail.com>
To: x-fn-spp-ml@ntt-tx.co.jp
Cc: spp@dpdk.org, ferruh.yigit@intel.com
Subject: Re: [spp] [PATCH v3 00/17] Adding Hardware offload capability
Date: Tue, 25 Feb 2020 19:37:49 +0900	[thread overview]
Message-ID: <ec156159-b990-589a-670e-1dc002df7e8c@gmail.com> (raw)
In-Reply-To: <20200225055639.31616-1-x-fn-spp-ml@ntt-tx.co.jp>

On 2020/02/25 14:56, x-fn-spp-ml@ntt-tx.co.jp wrote:
> From: Hideyuki Yamashita <yamashita.hideyuki@ntt-tx.co.jp>
> 
> This patch set provides hardware offload capability
> for spp.
> Note that related documents will be provided soon.
Thank you for v3 updates quickly. Applied.

> 
> Hideyuki Yamashita (17):
>    shared: add support of multi-queue
>    spp_vf: add support of multi-queue
>    spp_mirror: add support of multi-queue
>    spp_pcap: add support of multi-queue
>    spp_primary: add support of multi-queue
>    spp_primary: add support of rte_flow
>    spp_primary: add common function of rte_flow
>    spp_primary: add attribute of rte_flow
>    spp_primary: add patterns of rte_flow
>    spp_primary: add actions of rte_flow
>    bin: add parameter for hardrare offload
>    cli: add support of hardware offload
>    cli: add support of rte_flow in vf
>    cli: add support of rte_flow in mirror
>    cli: add support of rte_flow in nfv
>    spp-ctl: add APIs for flow rules
>    spp_nfv: add support of multi-queue
> 
>   bin/sample/config.sh                          |   15 +
>   bin/spp_pri.sh                                |   26 +-
>   bin/start.sh                                  |    2 +
>   src/cli/commands/mirror.py                    |  175 ++-
>   src/cli/commands/nfv.py                       |  245 ++--
>   src/cli/commands/pri.py                       |   52 +-
>   src/cli/commands/pri_flow.py                  |  936 +++++++++++++++
>   src/cli/commands/pri_flow_compl_action.py     |  115 ++
>   src/cli/commands/pri_flow_compl_pattern.py    |   84 ++
>   src/cli/commands/vf.py                        |  460 +++++---
>   src/mirror/mir_cmd_runner.c                   |    3 +-
>   src/mirror/spp_mirror.c                       |   12 +-
>   src/nfv/commands.h                            |   71 +-
>   src/nfv/main.c                                |   18 +-
>   src/nfv/nfv_status.c                          |  315 +++--
>   src/nfv/nfv_status.h                          |   12 +-
>   src/pcap/cmd_runner.c                         |    3 +-
>   src/pcap/cmd_utils.c                          |   73 +-
>   src/pcap/cmd_utils.h                          |   19 +-
>   src/pcap/spp_pcap.c                           |  102 +-
>   src/primary/Makefile                          |   10 +
>   src/primary/args.c                            |  138 ++-
>   src/primary/args.h                            |    3 +
>   src/primary/flow/action/jump.c                |   42 +
>   src/primary/flow/action/jump.h                |   12 +
>   src/primary/flow/action/of_push_vlan.c        |   44 +
>   src/primary/flow/action/of_push_vlan.h        |   13 +
>   src/primary/flow/action/of_set_vlan_pcp.c     |   44 +
>   src/primary/flow/action/of_set_vlan_pcp.h     |   13 +
>   src/primary/flow/action/of_set_vlan_vid.c     |   44 +
>   src/primary/flow/action/of_set_vlan_vid.h     |   13 +
>   src/primary/flow/action/queue.c               |   42 +
>   src/primary/flow/action/queue.h               |   13 +
>   src/primary/flow/attr.c                       |  105 ++
>   src/primary/flow/attr.h                       |   13 +
>   src/primary/flow/common.c                     |  646 ++++++++++
>   src/primary/flow/common.h                     |   53 +
>   src/primary/flow/flow.c                       | 1045 +++++++++++++++++
>   src/primary/flow/flow.h                       |   94 ++
>   src/primary/flow/pattern/eth.c                |   63 +
>   src/primary/flow/pattern/eth.h                |   13 +
>   src/primary/flow/pattern/vlan.c               |   71 ++
>   src/primary/flow/pattern/vlan.h               |   13 +
>   src/primary/init.c                            |    8 +-
>   src/primary/init.h                            |    3 +-
>   src/primary/main.c                            |   88 +-
>   src/shared/basic_forwarder.c                  |   62 +-
>   src/shared/basic_forwarder.h                  |    2 +-
>   src/shared/common.h                           |   30 +-
>   src/shared/port_manager.c                     |  180 ++-
>   src/shared/port_manager.h                     |   13 +-
>   .../secondary/spp_worker_th/cmd_parser.c      |  137 ++-
>   .../spp_worker_th/cmd_res_formatter.c         |   63 +-
>   .../secondary/spp_worker_th/cmd_utils.c       |  111 +-
>   .../secondary/spp_worker_th/cmd_utils.h       |   19 +-
>   .../secondary/spp_worker_th/data_types.h      |   18 +-
>   .../secondary/spp_worker_th/port_capability.c |    8 +-
>   .../secondary/spp_worker_th/port_capability.h |    4 +-
>   src/shared/secondary/spp_worker_th/vf_deps.h  |   15 +-
>   src/shared/secondary/utils.c                  |   28 +-
>   src/shared/secondary/utils.h                  |    3 +-
>   src/spp-ctl/spp_proc.py                       |    4 +
>   src/spp-ctl/spp_webapi.py                     |  200 +++-
>   src/vf/classifier.c                           |   40 +-
>   src/vf/forwarder.c                            |   12 +-
>   src/vf/vf_cmd_runner.c                        |   32 +-
>   66 files changed, 5621 insertions(+), 744 deletions(-)
>   create mode 100644 src/cli/commands/pri_flow.py
>   create mode 100644 src/cli/commands/pri_flow_compl_action.py
>   create mode 100644 src/cli/commands/pri_flow_compl_pattern.py
>   create mode 100644 src/primary/flow/action/jump.c
>   create mode 100644 src/primary/flow/action/jump.h
>   create mode 100644 src/primary/flow/action/of_push_vlan.c
>   create mode 100644 src/primary/flow/action/of_push_vlan.h
>   create mode 100644 src/primary/flow/action/of_set_vlan_pcp.c
>   create mode 100644 src/primary/flow/action/of_set_vlan_pcp.h
>   create mode 100644 src/primary/flow/action/of_set_vlan_vid.c
>   create mode 100644 src/primary/flow/action/of_set_vlan_vid.h
>   create mode 100644 src/primary/flow/action/queue.c
>   create mode 100644 src/primary/flow/action/queue.h
>   create mode 100644 src/primary/flow/attr.c
>   create mode 100644 src/primary/flow/attr.h
>   create mode 100644 src/primary/flow/common.c
>   create mode 100644 src/primary/flow/common.h
>   create mode 100644 src/primary/flow/flow.c
>   create mode 100644 src/primary/flow/flow.h
>   create mode 100644 src/primary/flow/pattern/eth.c
>   create mode 100644 src/primary/flow/pattern/eth.h
>   create mode 100644 src/primary/flow/pattern/vlan.c
>   create mode 100644 src/primary/flow/pattern/vlan.h
> 

  reply	other threads:[~2020-02-25 10:37 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20200219112155.13964-1-yamashita.hideyuki@ntt-tx.co.jp>
2020-02-25  5:56 ` x-fn-spp-ml
2020-02-25 10:37   ` Yasufumi Ogawa [this message]
2020-02-25  5:56 ` [spp] [PATCH v3 01/17] shared: add support of multi-queue x-fn-spp-ml
2020-02-25  5:56 ` [spp] [PATCH v3 02/17] spp_vf: " x-fn-spp-ml
2020-02-25  5:56 ` [spp] [PATCH v3 03/17] spp_mirror: " x-fn-spp-ml
2020-02-25  5:56 ` [spp] [PATCH v3 04/17] spp_pcap: " x-fn-spp-ml
2020-02-25  5:56 ` [spp] [PATCH v3 05/17] spp_primary: " x-fn-spp-ml
2020-02-25  5:56 ` [spp] [PATCH v3 06/17] spp_primary: add support of rte_flow x-fn-spp-ml
2020-02-25  5:56 ` [spp] [PATCH v3 07/17] spp_primary: add common function " x-fn-spp-ml
2020-02-25  5:56 ` [spp] [PATCH v3 08/17] spp_primary: add attribute " x-fn-spp-ml
2020-02-25  5:56 ` [spp] [PATCH v3 09/17] spp_primary: add patterns " x-fn-spp-ml
2020-02-25  5:56 ` [spp] [PATCH v3 10/17] spp_primary: add actions " x-fn-spp-ml
2020-02-25  5:56 ` [spp] [PATCH v3 11/17] bin: add parameter for hardrare offload x-fn-spp-ml
2020-02-25  5:56 ` [spp] [PATCH v3 12/17] cli: add support of hardware offload x-fn-spp-ml
2020-02-25  5:56 ` [spp] [PATCH v3 13/17] cli: add support of rte_flow in vf x-fn-spp-ml
2020-02-25  5:56 ` [spp] [PATCH v3 14/17] cli: add support of rte_flow in mirror x-fn-spp-ml
2020-02-25  5:56 ` [spp] [PATCH v3 15/17] cli: add support of rte_flow in nfv x-fn-spp-ml
2020-02-25  5:56 ` [spp] [PATCH v3 16/17] spp-ctl: add APIs for flow rules x-fn-spp-ml
2020-02-25  5:56 ` [spp] [PATCH v3 17/17] spp_nfv: add support of multi-queue x-fn-spp-ml

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=ec156159-b990-589a-670e-1dc002df7e8c@gmail.com \
    --to=yasufum.o@gmail.com \
    --cc=ferruh.yigit@intel.com \
    --cc=spp@dpdk.org \
    --cc=x-fn-spp-ml@ntt-tx.co.jp \
    /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).