Numerous components independently define the DIV_ROUND_UP macro, using
the same definition. Attempt to commonize by introducing
RTE_DIV_ROUND_UP to rte_common.h and replacing usages of DIV_ROUND_UP
with RTE_DIV_ROUND_UP. Similarly, replace DIV_CEIL, which is
functionally identical, to RTE_DIV_ROUND_UP.

Changes in v3:
  - eal: Add unit tests in app/test/test_common.c.
  - eal: Add release notes entry for RTE_DIV_ROUND_UP.
  - eal: Expand Doxygen documentation with parameters and caveats
    (divisor evaluation, non-negative inputs, wraparound).
  - base code (qede, cxgbe, ena): Keep DIV_ROUND_UP macro in osdep/platform
    headers and avoid modifying call sites under base/.
  - nfp: Change commit subject prefix from "drivers:" to "net/nfp:".
  - qede, nfp: Drop unnecessary line rewraps.
  - ena: Remove extraneous blank line in ena_plat_dpdk.h.
  - app: Convert DIV_CEIL in app/test and app/test-compress-perf to
    RTE_DIV_ROUND_UP.

Changes in v2:
  - Split single patch into series.

Joshua Washington (16):
  eal: introduce division round up macro
  net/i40e: use common division round up macro
  net/idpf: use common division round up macro
  net/ice: use common division round up macro
  net/qede: use common division round up macro
  net/rnp: use common division round up macro
  net/hns3: use common division round up macro
  net/hinic: use common division round up macro
  net/bnx2x: use common division round up macro
  net/cxgbe: use common division round up macro
  net/ena: use common division round up macro
  raw/ifpga/base: use common division round up macro
  net/nfp: use common division round up macro
  app/procinfo: use common division round up macro
  app/test: use common division round up macro
  app/test-compress-perf: use common division round up macro

 app/proc-info/main.c                           |  3 +--
 app/test-compress-perf/comp_perf_test_common.c | 13 +++++--------
 app/test/test_common.c                         | 10 ++++++++++
 app/test/test_compressdev.c                    |  4 +---
 doc/guides/rel_notes/release_26_11.rst         |  5 +++++
 drivers/common/nfp/nfp_platform.h              |  2 --
 drivers/net/bnx2x/bnx2x.c                      |  4 ++--
 drivers/net/bnx2x/bnx2x.h                      | 11 ++++-------
 drivers/net/cxgbe/cxgbe_compat.h               |  2 +-
 drivers/net/cxgbe/cxgbe_filter.c               |  6 +++---
 drivers/net/cxgbe/cxgbe_ofld.h                 |  4 ++--
 drivers/net/cxgbe/sge.c                        | 14 +++++++-------
 drivers/net/ena/base/ena_plat_dpdk.h           |  2 +-
 drivers/net/hinic/base/hinic_compat.h          |  5 +----
 drivers/net/hns3/hns3_ethdev.h                 |  2 --
 drivers/net/hns3/hns3_fdir.c                   |  2 +-
 drivers/net/hns3/hns3_regs.c                   |  8 ++++----
 drivers/net/hns3/hns3_rss.c                    |  8 ++++----
 drivers/net/intel/i40e/base/i40e_osdep.h       |  3 +--
 drivers/net/intel/ice/base/ice_osdep.h         |  3 +--
 drivers/net/intel/idpf/base/idpf_osdep.h       |  3 +--
 drivers/net/nfp/nfdk/nfp_nfdk.h                |  2 +-
 drivers/net/nfp/nfdk/nfp_nfdk_dp.c             |  2 +-
 drivers/net/nfp/nfpcore/nfp_nsp.c              |  2 +-
 drivers/net/qede/base/bcm_osal.h               |  1 -
 drivers/net/qede/qede_debug.c                  | 16 ++++++++--------
 drivers/net/rnp/base/rnp_osdep.h               |  5 ++---
 drivers/net/rnp/rnp_rxtx.c                     |  2 +-
 drivers/raw/ifpga/base/opae_osdep.h            |  3 +--
 lib/eal/include/rte_common.h                   | 18 ++++++++++++++++++
 30 files changed, 88 insertions(+), 77 deletions(-)

-- 
2.55.0.1082.g2b9226bbc0-goog

Reply via email to