DPDK patches and discussions
 help / color / mirror / Atom feed
From: Jerin Jacob <jerinjacobk@gmail.com>
To: Hemant Agrawal <hemant.agrawal@nxp.com>
Cc: dpdk-dev <dev@dpdk.org>, Xiaoyun Li <xiaoyun.li@intel.com>,
	 "Richardson, Bruce" <bruce.richardson@intel.com>,
	Jingjing Wu <jingjing.wu@intel.com>
Subject: Re: [dpdk-dev] [PATCH 2/2] examples: move vendor specific apps to drivers sub directory
Date: Mon, 5 Jul 2021 14:19:24 +0530	[thread overview]
Message-ID: <CALBAE1NfJZPXNqN7c4uyaik8u8L5s0qFKk7nPCE2ehQP7iRB6A@mail.gmail.com> (raw)
In-Reply-To: <20210526074712.9270-2-hemant.agrawal@nxp.com>

On Wed, May 26, 2021 at 1:19 PM Hemant Agrawal <hemant.agrawal@nxp.com> wrote:
>
> As approved by DPDK technical board on 2021-03-24 NTB and IOAT

You could add a link to the MoM of the TB meeting.

> raw driver's example application will be moved to
> example/drivers/raw/ to avoid PMD specific example application
> to show up in examples directory.
>
> Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com>
> ---
>  doc/guides/sample_app_ug/ioat.rst           | 2 +-
>  doc/guides/sample_app_ug/ntb.rst            | 2 +-
>  examples/{ => drivers/raw}/ioat/Makefile    | 0
>  examples/{ => drivers/raw}/ioat/ioatfwd.c   | 0
>  examples/{ => drivers/raw}/ioat/meson.build | 0
>  examples/{ => drivers/raw}/ntb/Makefile     | 0
>  examples/{ => drivers/raw}/ntb/meson.build  | 0
>  examples/{ => drivers/raw}/ntb/ntb_fwd.c    | 0
>  examples/meson.build                        | 4 ++--
>  9 files changed, 4 insertions(+), 4 deletions(-)
>  rename examples/{ => drivers/raw}/ioat/Makefile (100%)
>  rename examples/{ => drivers/raw}/ioat/ioatfwd.c (100%)
>  rename examples/{ => drivers/raw}/ioat/meson.build (100%)
>  rename examples/{ => drivers/raw}/ntb/Makefile (100%)
>  rename examples/{ => drivers/raw}/ntb/meson.build (100%)
>  rename examples/{ => drivers/raw}/ntb/ntb_fwd.c (100%)
>
> diff --git a/doc/guides/sample_app_ug/ioat.rst b/doc/guides/sample_app_ug/ioat.rst
> index 7eb557f91c..72d5d17c07 100644
> --- a/doc/guides/sample_app_ug/ioat.rst
> +++ b/doc/guides/sample_app_ug/ioat.rst
> @@ -29,7 +29,7 @@ Compiling the Application
>
>  To compile the sample application see :doc:`compiling`.
>
> -The application is located in the ``ioat`` sub-directory.
> +The ``ioat`` application code is located in the ``drivers/raw`` sub-directory.
>
>
>  Running the Application
> diff --git a/doc/guides/sample_app_ug/ntb.rst b/doc/guides/sample_app_ug/ntb.rst
> index f80b221db7..20e1f55a2f 100644
> --- a/doc/guides/sample_app_ug/ntb.rst
> +++ b/doc/guides/sample_app_ug/ntb.rst
> @@ -22,7 +22,7 @@ Compiling the Application
>
>  To compile the sample application see :doc:`compiling`.
>
> -The application is located in the ``ntb`` sub-directory.
> +The ``ntb`` application code is located in the ``drivers/raw`` sub-directory.
>
>  Running the Application
>  -----------------------
> diff --git a/examples/ioat/Makefile b/examples/drivers/raw/ioat/Makefile
> similarity index 100%
> rename from examples/ioat/Makefile
> rename to examples/drivers/raw/ioat/Makefile
> diff --git a/examples/ioat/ioatfwd.c b/examples/drivers/raw/ioat/ioatfwd.c
> similarity index 100%
> rename from examples/ioat/ioatfwd.c
> rename to examples/drivers/raw/ioat/ioatfwd.c
> diff --git a/examples/ioat/meson.build b/examples/drivers/raw/ioat/meson.build
> similarity index 100%
> rename from examples/ioat/meson.build
> rename to examples/drivers/raw/ioat/meson.build
> diff --git a/examples/ntb/Makefile b/examples/drivers/raw/ntb/Makefile
> similarity index 100%
> rename from examples/ntb/Makefile
> rename to examples/drivers/raw/ntb/Makefile
> diff --git a/examples/ntb/meson.build b/examples/drivers/raw/ntb/meson.build
> similarity index 100%
> rename from examples/ntb/meson.build
> rename to examples/drivers/raw/ntb/meson.build
> diff --git a/examples/ntb/ntb_fwd.c b/examples/drivers/raw/ntb/ntb_fwd.c
> similarity index 100%
> rename from examples/ntb/ntb_fwd.c
> rename to examples/drivers/raw/ntb/ntb_fwd.c
> diff --git a/examples/meson.build b/examples/meson.build
> index 07e682401b..e0664c09df 100644
> --- a/examples/meson.build
> +++ b/examples/meson.build
> @@ -12,13 +12,14 @@ all_examples = [
>          'bond',
>          'cmdline',
>          'distributor',
> +        'drivers/raw/ioat',
> +        'drivers/raw/ntb',
>          'ethtool',
>          'eventdev_pipeline',
>          'fips_validation',
>          'flow_classify',
>          'flow_filtering',
>          'helloworld',
> -        'ioat',
>          'ip_fragmentation',
>          'ip_pipeline',
>          'ip_reassembly',
> @@ -41,7 +42,6 @@ all_examples = [
>          'multi_process/hotplug_mp',
>          'multi_process/simple_mp',
>          'multi_process/symmetric_mp',
> -        'ntb',
>          'packet_ordering',
>          'performance-thread/l3fwd-thread',
>          'performance-thread/pthread_shim',
> --
> 2.17.1
>

  parent reply	other threads:[~2021-07-05  8:49 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-26  7:47 [dpdk-dev] [PATCH 1/2] doc: add policy for adding vendor PMD specific examples Hemant Agrawal
2021-05-26  7:47 ` [dpdk-dev] [PATCH 2/2] examples: move vendor specific apps to drivers sub directory Hemant Agrawal
2021-06-17  7:17   ` Thomas Monjalon
2021-07-05  8:53     ` Jerin Jacob
2021-11-17 11:02       ` Thomas Monjalon
2021-07-05  8:49   ` Jerin Jacob [this message]
2021-11-17 11:01   ` Thomas Monjalon
2021-07-05  8:47 ` [dpdk-dev] [PATCH 1/2] doc: add policy for adding vendor PMD specific examples Jerin Jacob
2021-11-17 10:57 ` Thomas Monjalon
2023-07-03 23:30   ` Stephen Hemminger
2023-07-05  9:56 ` [v2 " Hemant Agrawal
2023-07-05  9:56   ` [v2 2/2] examples: move vendor specific apps to drivers sub directory Hemant Agrawal
2023-07-06  5:00   ` [v2 1/2] doc: add policy for adding vendor PMD specific examples Jerin Jacob
2023-10-31 20:02     ` Stephen Hemminger

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=CALBAE1NfJZPXNqN7c4uyaik8u8L5s0qFKk7nPCE2ehQP7iRB6A@mail.gmail.com \
    --to=jerinjacobk@gmail.com \
    --cc=bruce.richardson@intel.com \
    --cc=dev@dpdk.org \
    --cc=hemant.agrawal@nxp.com \
    --cc=jingjing.wu@intel.com \
    --cc=xiaoyun.li@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).