DPDK patches and discussions
 help / color / mirror / Atom feed
From: David Marchand <david.marchand@redhat.com>
To: Ciara Power <ciara.power@intel.com>
Cc: dev <dev@dpdk.org>, techboard@dpdk.org
Subject: Re: [dpdk-dev] [PATCH v3 0/6] remove a few example applications
Date: Sat, 26 Oct 2019 22:35:31 +0200	[thread overview]
Message-ID: <CAJFAV8yuF0mY4fBdGWyGrzmqnnL1YEkVf=CoEuQrqmsWEmEyyg@mail.gmail.com> (raw)
In-Reply-To: <20191025095608.49548-1-ciara.power@intel.com>

On Fri, Oct 25, 2019 at 11:59 AM Ciara Power <ciara.power@intel.com> wrote:
>
> As discussed by the DPDK technical board e.g. [1][2] and on the DPDK
> mailing list [3], we have a lot of example applications shipped with
> DPDK - a number which increases with each DPDK release, and not all of
> which are probably needed any more. Therefore, this set removes 5
> example applications from the repository.
>
> v3:
>   - Document removed applications in release notes.
>   - Removed "from DPDK" in patch titles.
>
> v2: Remove the table listing sample applications
>
> [1] https://mails.dpdk.org/archives/dev/2019-May/132288.html
> [2] https://mails.dpdk.org/archives/dev/2019-June/135847.html
> [3] https://mails.dpdk.org/archives/dev/2019-July/138676.html
>
>
> Bruce Richardson (2):
>   examples/exception_path: remove example
>   examples/l3fwd-vf: remove example
>
> Ciara Power (4):
>   doc: remove unnecessary sample app guide table
>   examples/quota-watermark: remove example
>   examples/netmap-compat: remove example
>   examples/load_balancer: remove example
>
>  MAINTAINERS                                   |   15 -
>  doc/guides/rel_notes/release_19_11.rst        |   12 +
>  doc/guides/sample_app_ug/exception_path.rst   |  281 -----
>  doc/guides/sample_app_ug/index.rst            |    5 -
>  doc/guides/sample_app_ug/intro.rst            |   44 +-
>  .../sample_app_ug/l3_forward_virtual.rst      |   98 --
>  doc/guides/sample_app_ug/load_balancer.rst    |  201 ---
>  .../sample_app_ug/netmap_compatibility.rst    |  130 --
>  doc/guides/sample_app_ug/quota_watermark.rst  |  465 -------
>  examples/Makefile                             |    5 -
>  examples/exception_path/Makefile              |   57 -
>  examples/exception_path/main.c                |  605 ---------
>  examples/exception_path/meson.build           |   11 -
>  examples/l3fwd-vf/Makefile                    |   62 -
>  examples/l3fwd-vf/main.c                      | 1077 -----------------
>  examples/l3fwd-vf/meson.build                 |   12 -
>  examples/load_balancer/Makefile               |   62 -
>  examples/load_balancer/config.c               | 1030 ----------------
>  examples/load_balancer/init.c                 |  537 --------
>  examples/load_balancer/main.c                 |   76 --
>  examples/load_balancer/main.h                 |  351 ------
>  examples/load_balancer/meson.build            |   12 -
>  examples/load_balancer/runtime.c              |  642 ----------
>  examples/meson.build                          |    9 +-
>  examples/netmap_compat/Makefile               |   22 -
>  examples/netmap_compat/bridge/Makefile        |   35 -
>  examples/netmap_compat/bridge/bridge.c        |  347 ------
>  examples/netmap_compat/lib/compat_netmap.c    |  906 --------------
>  examples/netmap_compat/lib/compat_netmap.h    |   51 -
>  examples/netmap_compat/meson.build            |   10 -
>  examples/netmap_compat/netmap/netmap.h        |  289 -----
>  examples/netmap_compat/netmap/netmap_user.h   |   95 --
>  examples/quota_watermark/Makefile             |   16 -
>  examples/quota_watermark/include/conf.h       |   19 -
>  examples/quota_watermark/meson.build          |   10 -
>  examples/quota_watermark/qw/Makefile          |   22 -
>  examples/quota_watermark/qw/args.c            |   78 --
>  examples/quota_watermark/qw/args.h            |   12 -
>  examples/quota_watermark/qw/init.c            |  168 ---
>  examples/quota_watermark/qw/init.h            |   14 -
>  examples/quota_watermark/qw/main.c            |  373 ------
>  examples/quota_watermark/qw/main.h            |   31 -
>  examples/quota_watermark/qwctl/Makefile       |   22 -
>  examples/quota_watermark/qwctl/commands.c     |  196 ---
>  examples/quota_watermark/qwctl/commands.h     |   12 -
>  examples/quota_watermark/qwctl/qwctl.c        |   67 -
>  examples/quota_watermark/qwctl/qwctl.h        |   12 -
>  47 files changed, 17 insertions(+), 8589 deletions(-)
>  delete mode 100644 doc/guides/sample_app_ug/exception_path.rst
>  delete mode 100644 doc/guides/sample_app_ug/l3_forward_virtual.rst
>  delete mode 100644 doc/guides/sample_app_ug/load_balancer.rst
>  delete mode 100644 doc/guides/sample_app_ug/netmap_compatibility.rst
>  delete mode 100644 doc/guides/sample_app_ug/quota_watermark.rst
>  delete mode 100644 examples/exception_path/Makefile
>  delete mode 100644 examples/exception_path/main.c
>  delete mode 100644 examples/exception_path/meson.build
>  delete mode 100644 examples/l3fwd-vf/Makefile
>  delete mode 100644 examples/l3fwd-vf/main.c
>  delete mode 100644 examples/l3fwd-vf/meson.build
>  delete mode 100644 examples/load_balancer/Makefile
>  delete mode 100644 examples/load_balancer/config.c
>  delete mode 100644 examples/load_balancer/init.c
>  delete mode 100644 examples/load_balancer/main.c
>  delete mode 100644 examples/load_balancer/main.h
>  delete mode 100644 examples/load_balancer/meson.build
>  delete mode 100644 examples/load_balancer/runtime.c
>  delete mode 100644 examples/netmap_compat/Makefile
>  delete mode 100644 examples/netmap_compat/bridge/Makefile
>  delete mode 100644 examples/netmap_compat/bridge/bridge.c
>  delete mode 100644 examples/netmap_compat/lib/compat_netmap.c
>  delete mode 100644 examples/netmap_compat/lib/compat_netmap.h
>  delete mode 100644 examples/netmap_compat/meson.build
>  delete mode 100644 examples/netmap_compat/netmap/netmap.h
>  delete mode 100644 examples/netmap_compat/netmap/netmap_user.h
>  delete mode 100644 examples/quota_watermark/Makefile
>  delete mode 100644 examples/quota_watermark/include/conf.h
>  delete mode 100644 examples/quota_watermark/meson.build
>  delete mode 100644 examples/quota_watermark/qw/Makefile
>  delete mode 100644 examples/quota_watermark/qw/args.c
>  delete mode 100644 examples/quota_watermark/qw/args.h
>  delete mode 100644 examples/quota_watermark/qw/init.c
>  delete mode 100644 examples/quota_watermark/qw/init.h
>  delete mode 100644 examples/quota_watermark/qw/main.c
>  delete mode 100644 examples/quota_watermark/qw/main.h
>  delete mode 100644 examples/quota_watermark/qwctl/Makefile
>  delete mode 100644 examples/quota_watermark/qwctl/commands.c
>  delete mode 100644 examples/quota_watermark/qwctl/commands.h
>  delete mode 100644 examples/quota_watermark/qwctl/qwctl.c
>  delete mode 100644 examples/quota_watermark/qwctl/qwctl.h
>
> --
> 2.17.1
>

Moved vhost-scsi removal notice into the list of removed example
introduced by this patchset.
Sorted this list alphabetically.

Applied, thanks.


-- 
David Marchand


      parent reply	other threads:[~2019-10-26 20:35 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-10-03 13:19 [dpdk-dev] [PATCH " Bruce Richardson
2019-10-03 13:19 ` [dpdk-dev] [PATCH 1/6] examples/exception_path: remove example from DPDK Bruce Richardson
2019-10-03 13:19 ` [dpdk-dev] [PATCH 2/6] examples/l3fwd-vf: " Bruce Richardson
2019-10-03 13:19 ` [dpdk-dev] [PATCH 3/6] examples/quota-watermark: " Bruce Richardson
2019-10-03 13:19 ` [dpdk-dev] [PATCH 4/6] examples/netmap-compat: " Bruce Richardson
2019-10-03 13:19 ` [dpdk-dev] [PATCH 5/6] examples/load_balancer: " Bruce Richardson
2019-10-03 13:19 ` [dpdk-dev] [PATCH 6/6] doc: close up gaps in sample app guide table Bruce Richardson
2019-10-23 15:19   ` Thomas Monjalon
2019-10-23 15:21 ` [dpdk-dev] [dpdk-techboard] [PATCH 0/6] remove a few example applications Stephen Hemminger
2019-10-23 15:53   ` Hemant Agrawal
2019-10-24 13:31 ` [dpdk-dev] [PATCH v2 " Ciara Power
2019-10-24 13:31   ` [dpdk-dev] [PATCH v2 1/6] doc: remove unnecessary sample app guide table Ciara Power
2019-10-24 13:31   ` [dpdk-dev] [PATCH v2 2/6] examples/exception_path: remove example from DPDK Ciara Power
2019-10-24 13:31   ` [dpdk-dev] [PATCH v2 3/6] examples/l3fwd-vf: " Ciara Power
2019-10-24 13:31   ` [dpdk-dev] [PATCH v2 4/6] examples/quota-watermark: " Ciara Power
2019-10-24 13:31   ` [dpdk-dev] [PATCH v2 5/6] examples/netmap-compat: " Ciara Power
2019-10-24 13:31   ` [dpdk-dev] [PATCH v2 6/6] examples/load_balancer: " Ciara Power
2019-10-24 14:12   ` [dpdk-dev] [PATCH v2 0/6] remove a few example applications David Marchand
2019-10-25  9:56 ` [dpdk-dev] [PATCH v3 " Ciara Power
2019-10-25  9:56   ` [dpdk-dev] [PATCH v3 1/6] doc: remove unnecessary sample app guide table Ciara Power
2019-10-25 10:26     ` [dpdk-dev] [dpdk-techboard] " Bruce Richardson
2019-10-25  9:56   ` [dpdk-dev] [PATCH v3 2/6] examples/exception_path: remove example Ciara Power
2019-10-25  9:56   ` [dpdk-dev] [PATCH v3 3/6] examples/l3fwd-vf: " Ciara Power
2019-10-25  9:56   ` [dpdk-dev] [PATCH v3 4/6] examples/quota-watermark: " Ciara Power
2019-10-25  9:56   ` [dpdk-dev] [PATCH v3 5/6] examples/netmap-compat: " Ciara Power
2019-10-25  9:56   ` [dpdk-dev] [PATCH v3 6/6] examples/load_balancer: " Ciara Power
2019-10-26 20:35   ` David Marchand [this message]

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='CAJFAV8yuF0mY4fBdGWyGrzmqnnL1YEkVf=CoEuQrqmsWEmEyyg@mail.gmail.com' \
    --to=david.marchand@redhat.com \
    --cc=ciara.power@intel.com \
    --cc=dev@dpdk.org \
    --cc=techboard@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).