DPDK patches and discussions
 help / color / mirror / Atom feed
From: Dmitry Kozlyuk <dmitry.kozliuk@gmail.com>
To: dev@dpdk.org
Cc: Dmitry Kozlyuk <dmitry.kozliuk@gmail.com>
Subject: [PATCH v3 0/4] eal: small rte_common.h fixes and cleanup
Date: Fri, 26 Aug 2022 01:33:51 +0300	[thread overview]
Message-ID: <20220825223355.410540-1-dmitry.kozliuk@gmail.com> (raw)
In-Reply-To: <20220825153709.33181-1-dmitry.kozliuk@gmail.com>

v3: Fix build (CI).

v2:
    * Extend and tidy up the macro unit test (Morten).
    * Remove unneeded includes from rte_common.h (Morten, Bruce).

Dmitry Kozlyuk (4):
  eal: fix pointer arithmetic with an expression argument
  eal: deduplicate roundup code
  eal: uninline rte_str_to_size
  eal: remove unneeded includes from a public header

 app/test-bbdev/test_bbdev_vector.c            |  1 +
 .../cperf_test_vector_parsing.c               |  1 +
 app/test-eventdev/parser.h                    |  1 +
 app/test-pmd/bpf_cmd.c                        |  2 +
 app/test-pmd/cmdline.c                        |  1 +
 app/test-pmd/cmdline_tm.c                     |  2 +
 app/test-pmd/config.c                         |  1 +
 app/test/test.h                               |  2 +
 app/test/test_common.c                        | 58 +++++++++++++------
 drivers/bus/vdev/vdev_params.c                |  1 +
 drivers/common/cnxk/cnxk_telemetry_nix.c      |  1 +
 drivers/common/cnxk/cnxk_telemetry_npa.c      |  1 +
 drivers/crypto/scheduler/scheduler_pmd.c      |  2 +
 drivers/net/cnxk/cnxk_ethdev_sec_telemetry.c  |  2 +
 drivers/net/i40e/i40e_ethdev.c                |  1 +
 drivers/net/iavf/iavf_ethdev.c                |  1 +
 drivers/net/ice/ice_ethdev.c                  |  1 +
 drivers/net/softnic/parser.h                  |  1 +
 examples/eventdev_pipeline/main.c             |  1 +
 examples/fips_validation/fips_validation.c    |  1 +
 examples/ip_pipeline/parser.h                 |  1 +
 examples/ipsec-secgw/parser.h                 |  1 +
 examples/l3fwd-power/perf_core.c              |  1 +
 examples/pipeline/cli.c                       |  1 +
 examples/vhost/main.c                         |  1 +
 lib/dmadev/rte_dmadev.c                       |  1 +
 lib/eal/common/eal_common_debug.c             |  2 +
 lib/eal/common/eal_common_string_fns.c        | 36 +++++++++++-
 lib/eal/freebsd/eal.c                         |  1 +
 lib/eal/include/generic/rte_rwlock.h          |  2 +
 lib/eal/include/rte_common.h                  | 41 ++-----------
 lib/eal/linux/eal.c                           |  1 +
 lib/eal/linux/eal_vfio_mp_sync.c              |  1 +
 lib/eal/unix/eal_unix_timer.c                 |  1 +
 lib/eal/version.map                           |  1 +
 lib/eal/windows/rte_thread.c                  |  2 +
 lib/ethdev/sff_telemetry.c                    |  1 +
 lib/eventdev/rte_event_eth_rx_adapter.c       |  1 +
 lib/eventdev/rte_event_timer_adapter.c        |  1 +
 lib/meter/rte_meter.c                         |  1 +
 lib/pci/rte_pci.c                             |  1 +
 lib/pipeline/rte_swx_ctl.c                    |  1 +
 lib/sched/rte_pie.c                           |  1 +
 lib/security/rte_security.c                   |  2 +
 lib/telemetry/telemetry.c                     |  1 +
 lib/telemetry/telemetry_data.c                |  3 +
 lib/telemetry/telemetry_legacy.c              |  2 +
 47 files changed, 136 insertions(+), 55 deletions(-)

-- 
2.33.1


  parent reply	other threads:[~2022-08-25 22:34 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-08-21 20:50 [PATCH 0/3] " Dmitry Kozlyuk
2022-08-21 20:50 ` [PATCH 1/3] eal: fix pointer arithmetic with an expression argument Dmitry Kozlyuk
2022-08-22  7:14   ` Morten Brørup
2022-08-21 20:50 ` [PATCH 2/3] eal: uninline rte_str_to_size Dmitry Kozlyuk
2022-08-22  7:24   ` Morten Brørup
2022-08-22 14:06     ` Bruce Richardson
2022-08-21 20:50 ` [PATCH 3/3] eal: deduplicate roundup code Dmitry Kozlyuk
2022-08-22  7:25   ` Morten Brørup
2022-08-22 14:06 ` [PATCH 0/3] eal: small rte_common.h fixes and cleanup Bruce Richardson
2022-08-24  3:52 ` fengchengwen
2022-08-25 15:37 ` [PATCH v2 0/4] " Dmitry Kozlyuk
2022-08-25 15:37   ` [PATCH v2 1/4] eal: fix pointer arithmetic with an expression argument Dmitry Kozlyuk
2022-08-25 15:37   ` [PATCH v2 2/4] eal: deduplicate roundup code Dmitry Kozlyuk
2022-08-25 15:37   ` [PATCH v2 3/4] eal: uninline rte_str_to_size Dmitry Kozlyuk
2022-08-25 15:37   ` [PATCH v2 4/4] eal: remove unneeded includes from a public header Dmitry Kozlyuk
2022-08-25 22:33   ` Dmitry Kozlyuk [this message]
2022-08-25 22:33     ` [PATCH v3 1/4] eal: fix pointer arithmetic with an expression argument Dmitry Kozlyuk
2022-08-25 22:33     ` [PATCH v3 2/4] eal: deduplicate roundup code Dmitry Kozlyuk
2022-08-25 22:33     ` [PATCH v3 3/4] eal: uninline rte_str_to_size Dmitry Kozlyuk
2022-08-25 22:33     ` [PATCH v3 4/4] eal: remove unneeded includes from a public header Dmitry Kozlyuk
2022-08-27 11:32     ` [PATCH v4 0/4] eal: small rte_common.h fixes and cleanup Dmitry Kozlyuk
2022-08-27 11:32       ` [PATCH v4 1/4] eal: fix pointer arithmetic with an expression argument Dmitry Kozlyuk
2022-08-27 11:32       ` [PATCH v4 2/4] eal: deduplicate roundup code Dmitry Kozlyuk
2022-08-27 11:32       ` [PATCH v4 3/4] eal: uninline rte_str_to_size Dmitry Kozlyuk
2022-08-27 11:32       ` [PATCH v4 4/4] eal: remove unneeded includes from a public header Dmitry Kozlyuk
2022-08-29  8:29         ` Bruce Richardson
2022-09-21  9:27         ` David Marchand
2022-09-21 11:37         ` David Marchand
2022-09-21 13:30       ` [PATCH v4 0/4] eal: small rte_common.h fixes and cleanup David Marchand

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=20220825223355.410540-1-dmitry.kozliuk@gmail.com \
    --to=dmitry.kozliuk@gmail.com \
    --cc=dev@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).