Soft Patch Panel
 help / color / mirror / Atom feed
From: ogawa.yasufumi@lab.ntt.co.jp
To: ferruh.yigit@intel.com, spp@dpdk.org, nakamura.hiroyuki@po.ntt-tx.co.jp
Cc: Yasufumi Ogawa <ogawa.yasufumi@lab.ntt.co.jp>
Subject: [spp] [PATCH v2 00/15] Fix mistakes of SPP container documentation
Date: Mon, 18 Jun 2018 15:21:23 +0900	[thread overview]
Message-ID: <20180618062138.13263-1-ogawa.yasufumi@lab.ntt.co.jp> (raw)
In-Reply-To: <20180615070615.15594-1-ogawa.yasufumi@lab.ntt.co.jp>

From: Yasufumi Ogawa <ogawa.yasufumi@lab.ntt.co.jp>

Hi,

This is the fixed version of documents of SPP container.

  * Fix typo 'intall' noticed from Hiroyuki.

  * Fix wrong descriptions in getting started guide.

  * Remove trailing whitespaces.


Yasufumi Ogawa (15):
  docs: add index of SPP container tool
  docs: add overview of SPP container
  docs: add overview image of SPP container
  docs: add getting started guide of SPP container
  docs: add image of example for gsg
  docs: add install guide for SPP container
  docs: add build image guide for SPP container
  docs: add manual for app container launchers
  docs: add use cases of SPP container
  docs: add usecase image of testing vhost
  docs: add usecase image of testing ring
  docs: add usecase image of pktgen and l2fwd
  docs: add usecase image of using less lcores
  docs: add usecase image of load balancer
  docs: add how to develop guide for SPP container

 .../images/tools/sppc/sppc_gsg_testpmd.svg    |  614 +++++++
 .../images/tools/sppc/sppc_overview.svg       |  946 ++++++++++
 .../tools/sppc/sppc_usecase_l2fwdpktgen.svg   |  918 ++++++++++
 .../sppc/sppc_usecase_l2fwdpktgen_less.svg    |  848 +++++++++
 .../tools/sppc/sppc_usecase_lb_pktgen.svg     | 1573 +++++++++++++++++
 .../images/tools/sppc/sppc_usecase_ring.svg   | 1032 +++++++++++
 .../images/tools/sppc/sppc_usecase_vhost.svg  |  644 +++++++
 docs/guides/tools/index.rst                   |    6 +-
 docs/guides/tools/sppc/app_launcher.rst       | 1058 +++++++++++
 docs/guides/tools/sppc/build_img.rst          |  178 ++
 docs/guides/tools/sppc/getting_started.rst    |  328 ++++
 docs/guides/tools/sppc/howto_launcher.rst     |  318 ++++
 docs/guides/tools/sppc/index.rst              |   20 +
 docs/guides/tools/sppc/install.rst            |   91 +
 docs/guides/tools/sppc/overview.rst           |   28 +
 docs/guides/tools/sppc/usecases.rst           |  673 +++++++
 16 files changed, 9274 insertions(+), 1 deletion(-)
 create mode 100644 docs/guides/images/tools/sppc/sppc_gsg_testpmd.svg
 create mode 100644 docs/guides/images/tools/sppc/sppc_overview.svg
 create mode 100644 docs/guides/images/tools/sppc/sppc_usecase_l2fwdpktgen.svg
 create mode 100644 docs/guides/images/tools/sppc/sppc_usecase_l2fwdpktgen_less.svg
 create mode 100644 docs/guides/images/tools/sppc/sppc_usecase_lb_pktgen.svg
 create mode 100644 docs/guides/images/tools/sppc/sppc_usecase_ring.svg
 create mode 100644 docs/guides/images/tools/sppc/sppc_usecase_vhost.svg
 create mode 100644 docs/guides/tools/sppc/app_launcher.rst
 create mode 100644 docs/guides/tools/sppc/build_img.rst
 create mode 100644 docs/guides/tools/sppc/getting_started.rst
 create mode 100644 docs/guides/tools/sppc/howto_launcher.rst
 create mode 100644 docs/guides/tools/sppc/index.rst
 create mode 100644 docs/guides/tools/sppc/install.rst
 create mode 100644 docs/guides/tools/sppc/overview.rst
 create mode 100644 docs/guides/tools/sppc/usecases.rst

-- 
2.17.1

  parent reply	other threads:[~2018-06-18  6:21 UTC|newest]

Thread overview: 36+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-06-15  7:06 [spp] [PATCH 00/15] Introduction of SPP container tools ogawa.yasufumi
2018-06-15  7:06 ` [spp] [PATCH 01/15] docs: add index of SPP container tool ogawa.yasufumi
2018-06-15  7:06 ` [spp] [PATCH 02/15] docs: add overview of SPP container ogawa.yasufumi
2018-06-15  7:06 ` [spp] [PATCH 03/15] docs: add overview image " ogawa.yasufumi
2018-06-15  7:06 ` [spp] [PATCH 04/15] docs: add getting started guide " ogawa.yasufumi
2018-06-15  7:06 ` [spp] [PATCH 05/15] docs: add image of example for gsg ogawa.yasufumi
2018-06-15  7:06 ` [spp] [PATCH 06/15] docs: add install guide for SPP container ogawa.yasufumi
2018-06-15  7:06 ` [spp] [PATCH 07/15] docs: add build image " ogawa.yasufumi
2018-06-15  7:06 ` [spp] [PATCH 08/15] docs: add manual for app container launchers ogawa.yasufumi
2018-06-15  7:06 ` [spp] [PATCH 09/15] docs: add use cases of SPP container ogawa.yasufumi
2018-06-15  7:06 ` [spp] [PATCH 10/15] docs: add usecase image of testing vhost ogawa.yasufumi
2018-06-15  7:06 ` [spp] [PATCH 11/15] docs: add usecase image of testing ring ogawa.yasufumi
2018-06-15  7:06 ` [spp] [PATCH 12/15] docs: add usecase image of pktgen and l2fwd ogawa.yasufumi
2018-06-15  7:06 ` [spp] [PATCH 13/15] docs: add usecase image of using less lcores ogawa.yasufumi
2018-06-15  7:06 ` [spp] [PATCH 14/15] docs: add usecase image of load balancer ogawa.yasufumi
2018-06-15  7:06 ` [spp] [PATCH 15/15] docs: add how to develop guide for SPP container ogawa.yasufumi
2018-06-15 12:47   ` Nakamura Hioryuki
2018-06-18  2:33     ` Yasufumi Ogawa
2018-06-18  6:21 ` ogawa.yasufumi [this message]
2018-06-18  6:21   ` [spp] [PATCH v2 01/15] docs: add index of SPP container tool ogawa.yasufumi
2018-06-18  6:21   ` [spp] [PATCH v2 02/15] docs: add overview of SPP container ogawa.yasufumi
2018-06-18  6:21   ` [spp] [PATCH v2 03/15] docs: add overview image " ogawa.yasufumi
2018-06-18  6:21   ` [spp] [PATCH v2 04/15] docs: add getting started guide " ogawa.yasufumi
2018-06-18  6:21   ` [spp] [PATCH v2 05/15] docs: add image of example for gsg ogawa.yasufumi
2018-06-18  6:21   ` [spp] [PATCH v2 06/15] docs: add install guide for SPP container ogawa.yasufumi
2018-06-18  6:21   ` [spp] [PATCH v2 07/15] docs: add build image " ogawa.yasufumi
2018-06-18  6:21   ` [spp] [PATCH v2 08/15] docs: add manual for app container launchers ogawa.yasufumi
2018-06-18  6:21   ` [spp] [PATCH v2 10/15] docs: add usecase image of testing vhost ogawa.yasufumi
2018-06-18  6:21   ` [spp] [PATCH v2 11/15] docs: add usecase image of testing ring ogawa.yasufumi
2018-06-18  6:21   ` [spp] [PATCH v2 12/15] docs: add usecase image of pktgen and l2fwd ogawa.yasufumi
2018-06-18  6:21   ` [spp] [PATCH v2 13/15] docs: add usecase image of using less lcores ogawa.yasufumi
2018-06-18  6:21   ` [spp] [PATCH v2 14/15] docs: add usecase image of load balancer ogawa.yasufumi
2018-06-18  6:21   ` [spp] [PATCH v2 15/15] docs: add how to develop guide for SPP container ogawa.yasufumi
2018-08-15 15:39   ` [spp] [PATCH v2 00/15] Fix mistakes of SPP container documentation Ferruh Yigit
2018-07-24  8:00 ` [spp] [PATCH v2 09/15] docs: add use cases of SPP container ogawa.yasufumi
2018-07-24  8:20   ` Yasufumi Ogawa

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=20180618062138.13263-1-ogawa.yasufumi@lab.ntt.co.jp \
    --to=ogawa.yasufumi@lab.ntt.co.jp \
    --cc=ferruh.yigit@intel.com \
    --cc=nakamura.hiroyuki@po.ntt-tx.co.jp \
    --cc=spp@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).