DPDK patches and discussions
 help / color / mirror / Atom feed
From: David Marchand <david.marchand@redhat.com>
To: Tyler Retzlaff <roretzla@linux.microsoft.com>
Cc: dev@dpdk.org, Ajit Khaparde <ajit.khaparde@broadcom.com>,
	 Akhil Goyal <gakhil@marvell.com>,
	Andrew Rybchenko <andrew.rybchenko@oktetlabs.ru>,
	 Anoob Joseph <anoobj@marvell.com>,
	Bruce Richardson <bruce.richardson@intel.com>,
	 Chaoyong He <chaoyong.he@corigine.com>,
	Chenbo Xia <chenbox@nvidia.com>,
	 David Hunt <david.hunt@intel.com>,
	Ferruh Yigit <ferruh.yigit@amd.com>,
	 Harry van Haaren <harry.van.haaren@intel.com>,
	Hemant Agrawal <hemant.agrawal@nxp.com>,
	 Honnappa Nagarahalli <honnappa.nagarahalli@arm.com>,
	Jerin Jacob <jerinj@marvell.com>,
	 Jingjing Wu <jingjing.wu@intel.com>,
	Jochen Behrens <jbehrens@vmware.com>,
	 John McNamara <john.mcnamara@intel.com>,
	Kiran Kumar K <kirankumark@marvell.com>,
	 Konstantin Ananyev <konstantin.v.ananyev@yandex.ru>,
	 Maxime Coquelin <maxime.coquelin@redhat.com>,
	Nicolas Chautru <nicolas.chautru@intel.com>,
	 Nithin Dabilpuram <ndabilpuram@marvell.com>,
	Ori Kam <orika@nvidia.com>,
	 Pavan Nikhilesh <pbhagavatula@marvell.com>,
	Sachin Saxena <sachin.saxena@nxp.com>,
	 Somnath Kotur <somnath.kotur@broadcom.com>,
	Thomas Monjalon <thomas@monjalon.net>,
	 Volodymyr Fialko <vfialko@marvell.com>,
	Zhirun Yan <zhirun.yan@intel.com>
Subject: Re: [PATCH v2 00/21] use C11 alignof
Date: Wed, 14 Feb 2024 13:19:21 +0100	[thread overview]
Message-ID: <CAJFAV8x6LMJodz0XtJhadn3QotpaC5NBB1x29JYTCs0SQ8qHAA@mail.gmail.com> (raw)
In-Reply-To: <1707849292-19519-1-git-send-email-roretzla@linux.microsoft.com>

On Tue, Feb 13, 2024 at 7:35 PM Tyler Retzlaff
<roretzla@linux.microsoft.com> wrote:
>
> Replace use of __alignof__(T) and __alignof__(e) with C11 alignof(T)
> and alignof(typeof(e)) respectively to improve portability of the code
> between toolchains.
>
> v2:
>     * expand series to replace use in entire source tree, now
>       includes app, drivers, examples in addition to lib.
>
> Tyler Retzlaff (21):
>   ring: use C11 alignof
>   mbuf: use C11 alignof
>   ethdev: use C11 alignof
>   eventdev: use C11 alignof
>   stack: use C11 alignof
>   node: use C11 alignof
>   pdcp: use C11 alignof
>   reorder: use C11 alignof
>   security: use C11 alignof
>   test: use C11 alignof
>   examples: use C11 alignof
>   app/eventdev: use C11 alignof
>   drivers/bus: use C11 alignof
>   event/sw: use C11 alignof
>   net/bnxt: use C11 alignof
>   net/iavf: use C11 alignof
>   net/nfp: use C11 alignof
>   net/sfc: use C11 alignof
>   net/virtio: use C11 alignof
>   net/vmxnet3: use C11 alignof
>   devtools: forbid direct use of compiler alignof and typeof
>
>  app/test-eventdev/test_order_common.c |  6 ++++--
>  app/test/test_distributor.c           |  3 ++-
>  app/test/test_graph.c                 |  3 ++-
>  app/test/test_mbuf.c                  |  9 +++++----
>  app/test/test_ring_stress_impl.h      |  6 ++++--
>  devtools/checkpatches.sh              | 16 ++++++++++++++++
>  drivers/bus/dpaa/dpaa_bus.c           |  3 ++-
>  drivers/bus/fslmc/fslmc_bus.c         |  3 ++-
>  drivers/event/sw/sw_evdev_selftest.c  |  3 ++-
>  drivers/net/bnxt/bnxt_ethdev.c        |  3 ++-
>  drivers/net/iavf/iavf_ethdev.c        |  3 ++-
>  drivers/net/iavf/iavf_ipsec_crypto.c  |  4 +++-
>  drivers/net/iavf/iavf_testpmd.c       |  3 ++-
>  drivers/net/nfp/nfp_ipsec.c           |  4 +++-
>  drivers/net/sfc/sfc_dp.c              |  5 +++--
>  drivers/net/virtio/virtio_rxtx.c      |  7 ++++---
>  drivers/net/vmxnet3/vmxnet3_ethdev.c  |  3 ++-
>  examples/bbdev_app/main.c             |  3 ++-
>  examples/rxtx_callbacks/main.c        |  3 ++-
>  lib/ethdev/ethdev_driver.c            |  3 ++-
>  lib/ethdev/rte_flow.c                 |  3 ++-
>  lib/eventdev/rte_eventdev.c           |  3 ++-
>  lib/mbuf/rte_mbuf_dyn.c               |  3 ++-
>  lib/node/node_private.h               |  4 +++-
>  lib/pdcp/rte_pdcp.c                   |  4 +++-
>  lib/reorder/rte_reorder.c             |  3 ++-
>  lib/ring/rte_ring.c                   |  3 ++-
>  lib/security/rte_security.c           |  5 +++--
>  lib/stack/rte_stack.c                 |  3 ++-
>  29 files changed, 87 insertions(+), 37 deletions(-)

Thanks Tyler.
Series applied.


-- 
David Marchand


      parent reply	other threads:[~2024-02-14 12:19 UTC|newest]

Thread overview: 40+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-24 23:17 [PATCH 0/9] " Tyler Retzlaff
2024-01-24 23:17 ` [PATCH 1/9] ring: " Tyler Retzlaff
2024-01-24 23:17 ` [PATCH 2/9] mbuf: " Tyler Retzlaff
2024-01-24 23:17 ` [PATCH 3/9] ethdev: " Tyler Retzlaff
2024-01-24 23:17 ` [PATCH 4/9] eventdev: " Tyler Retzlaff
2024-01-24 23:17 ` [PATCH 5/9] stack: " Tyler Retzlaff
2024-01-24 23:17 ` [PATCH 6/9] node: " Tyler Retzlaff
2024-01-24 23:17 ` [PATCH 7/9] pdcp: " Tyler Retzlaff
2024-01-25  4:36   ` [EXT] " Anoob Joseph
2024-01-24 23:17 ` [PATCH 8/9] reorder: " Tyler Retzlaff
2024-01-25  0:36   ` [EXT] " Volodymyr Fialko
2024-01-24 23:17 ` [PATCH 9/9] security: " Tyler Retzlaff
2024-01-25  6:28   ` [EXT] " Akhil Goyal
2024-01-25  7:19 ` [PATCH 0/9] " Morten Brørup
2024-01-25 12:51 ` fengchengwen
2024-02-13 11:04 ` David Marchand
2024-02-13 18:34 ` [PATCH v2 00/21] " Tyler Retzlaff
2024-02-13 18:34   ` [PATCH v2 01/21] ring: " Tyler Retzlaff
2024-02-13 18:34   ` [PATCH v2 02/21] mbuf: " Tyler Retzlaff
2024-02-13 18:34   ` [PATCH v2 03/21] ethdev: " Tyler Retzlaff
2024-02-13 18:34   ` [PATCH v2 04/21] eventdev: " Tyler Retzlaff
2024-02-13 18:34   ` [PATCH v2 05/21] stack: " Tyler Retzlaff
2024-02-13 18:34   ` [PATCH v2 06/21] node: " Tyler Retzlaff
2024-02-13 18:34   ` [PATCH v2 07/21] pdcp: " Tyler Retzlaff
2024-02-13 18:34   ` [PATCH v2 08/21] reorder: " Tyler Retzlaff
2024-02-13 18:34   ` [PATCH v2 09/21] security: " Tyler Retzlaff
2024-02-13 18:34   ` [PATCH v2 10/21] test: " Tyler Retzlaff
2024-02-13 18:34   ` [PATCH v2 11/21] examples: " Tyler Retzlaff
2024-02-13 18:34   ` [PATCH v2 12/21] app/eventdev: " Tyler Retzlaff
2024-02-13 18:34   ` [PATCH v2 13/21] drivers/bus: " Tyler Retzlaff
2024-02-13 18:34   ` [PATCH v2 14/21] event/sw: " Tyler Retzlaff
2024-02-13 18:34   ` [PATCH v2 15/21] net/bnxt: " Tyler Retzlaff
2024-02-13 19:19     ` Ajit Khaparde
2024-02-13 18:34   ` [PATCH v2 16/21] net/iavf: " Tyler Retzlaff
2024-02-13 18:34   ` [PATCH v2 17/21] net/nfp: " Tyler Retzlaff
2024-02-13 18:34   ` [PATCH v2 18/21] net/sfc: " Tyler Retzlaff
2024-02-13 18:34   ` [PATCH v2 19/21] net/virtio: " Tyler Retzlaff
2024-02-13 18:34   ` [PATCH v2 20/21] net/vmxnet3: " Tyler Retzlaff
2024-02-13 18:34   ` [PATCH v2 21/21] devtools: forbid direct use of compiler alignof and typeof Tyler Retzlaff
2024-02-14 12:19   ` 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=CAJFAV8x6LMJodz0XtJhadn3QotpaC5NBB1x29JYTCs0SQ8qHAA@mail.gmail.com \
    --to=david.marchand@redhat.com \
    --cc=ajit.khaparde@broadcom.com \
    --cc=andrew.rybchenko@oktetlabs.ru \
    --cc=anoobj@marvell.com \
    --cc=bruce.richardson@intel.com \
    --cc=chaoyong.he@corigine.com \
    --cc=chenbox@nvidia.com \
    --cc=david.hunt@intel.com \
    --cc=dev@dpdk.org \
    --cc=ferruh.yigit@amd.com \
    --cc=gakhil@marvell.com \
    --cc=harry.van.haaren@intel.com \
    --cc=hemant.agrawal@nxp.com \
    --cc=honnappa.nagarahalli@arm.com \
    --cc=jbehrens@vmware.com \
    --cc=jerinj@marvell.com \
    --cc=jingjing.wu@intel.com \
    --cc=john.mcnamara@intel.com \
    --cc=kirankumark@marvell.com \
    --cc=konstantin.v.ananyev@yandex.ru \
    --cc=maxime.coquelin@redhat.com \
    --cc=ndabilpuram@marvell.com \
    --cc=nicolas.chautru@intel.com \
    --cc=orika@nvidia.com \
    --cc=pbhagavatula@marvell.com \
    --cc=roretzla@linux.microsoft.com \
    --cc=sachin.saxena@nxp.com \
    --cc=somnath.kotur@broadcom.com \
    --cc=thomas@monjalon.net \
    --cc=vfialko@marvell.com \
    --cc=zhirun.yan@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).