drivers/net: redefine array size macros
Replace copies of size(arr)/size(arr[0]) with RTE_DIM(). Eventually all of these macro definitions should be removed. Signed-off-by: Andrew Boyer <aboyer@pensando.io> Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
This commit is contained in:
parent
a954b37a4c
commit
a3c9a11ab2
@ -26,7 +26,7 @@
|
||||
|
||||
#define mdelay rte_delay_ms
|
||||
#define udelay rte_delay_us
|
||||
#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
|
||||
#define ARRAY_SIZE(arr) RTE_DIM(arr)
|
||||
#define BIT(x) (1UL << (x))
|
||||
|
||||
#define AQ_HW_WAIT_FOR(_B_, _US_, _N_) \
|
||||
|
@ -42,7 +42,7 @@
|
||||
|
||||
#define BIT(nr) (1 << (nr))
|
||||
#ifndef ARRAY_SIZE
|
||||
#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
|
||||
#define ARRAY_SIZE(arr) RTE_DIM(arr)
|
||||
#endif
|
||||
|
||||
#define AXGBE_HZ 250
|
||||
|
@ -81,7 +81,7 @@
|
||||
#endif
|
||||
|
||||
#ifndef ARRAY_SIZE
|
||||
#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
|
||||
#define ARRAY_SIZE(arr) RTE_DIM(arr)
|
||||
#endif
|
||||
#ifndef DIV_ROUND_UP
|
||||
#define DIV_ROUND_UP(n, d) (((n) + (d) - 1) / (d))
|
||||
|
@ -86,7 +86,7 @@ extern void elink_cb_notify_link_changed(struct bnx2x_softc *sc);
|
||||
#define ELINK_EVENT_ID_SFP_UNQUALIFIED_MODULE 1
|
||||
#define ELINK_EVENT_ID_SFP_POWER_FAULT 2
|
||||
|
||||
#define ARRAY_SIZE(x) (sizeof(x)/sizeof(x[0]))
|
||||
#define ARRAY_SIZE(x) RTE_DIM(x)
|
||||
/* Debug prints */
|
||||
#ifdef ELINK_DEBUG
|
||||
|
||||
|
@ -47,7 +47,7 @@
|
||||
#define ENA_HASH_KEY_SIZE 40
|
||||
#define ETH_GSTRING_LEN 32
|
||||
|
||||
#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
|
||||
#define ARRAY_SIZE(x) RTE_DIM(x)
|
||||
|
||||
#define ENA_MIN_RING_DESC 128
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
||||
#define _CMD_VTYPE(cmd) (((cmd) >> _CMD_VTYPESHIFT) & _CMD_VTYPEMASK)
|
||||
#define _CMD_N(cmd) (((cmd) >> _CMD_NSHIFT) & _CMD_NMASK)
|
||||
|
||||
#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
|
||||
#define ARRAY_SIZE(x) RTE_DIM(x)
|
||||
|
||||
enum vnic_devcmd_cmd {
|
||||
CMD_NONE = _CMDC(_CMD_DIR_NONE, _CMD_VTYPE_NONE, 0),
|
||||
|
@ -887,7 +887,7 @@ static inline uint32_t hns3_read_reg(void *base, uint32_t reg)
|
||||
#define hns3_read_dev(a, reg) \
|
||||
hns3_read_reg((a)->io_base, (reg))
|
||||
|
||||
#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
|
||||
#define ARRAY_SIZE(x) RTE_DIM(x)
|
||||
|
||||
#define NEXT_ITEM_OF_ACTION(act, actions, index) \
|
||||
do { \
|
||||
|
@ -175,7 +175,7 @@ static inline uint64_t i40e_read64_addr(volatile void *addr)
|
||||
I40E_PCI_REG_WRITE(I40E_PCI_REG_ADDR((a), (reg)), (value))
|
||||
#define flush(a) i40e_read_addr(I40E_PCI_REG_ADDR((a), (I40E_GLGEN_STAT)))
|
||||
|
||||
#define ARRAY_SIZE(arr) (sizeof(arr)/sizeof(arr[0]))
|
||||
#define ARRAY_SIZE(arr) RTE_DIM(arr)
|
||||
|
||||
/* memory allocation tracking */
|
||||
struct i40e_dma_mem {
|
||||
|
@ -23,7 +23,7 @@
|
||||
#endif
|
||||
|
||||
#ifndef ARRAY_SIZE
|
||||
#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
|
||||
#define ARRAY_SIZE(x) RTE_DIM(x)
|
||||
#endif
|
||||
|
||||
#define NFP_ERRNO(err) (errno = (err), -1)
|
||||
|
@ -17,7 +17,7 @@
|
||||
#define PCI_SUB_DEVICE_ID_CN81XX_NICVF 0xA234
|
||||
#define PCI_SUB_DEVICE_ID_CN83XX_NICVF 0xA334
|
||||
|
||||
#define NICVF_ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
|
||||
#define NICVF_ARRAY_SIZE(arr) RTE_DIM(arr)
|
||||
|
||||
#define NICVF_GET_RX_STATS(reg) \
|
||||
nicvf_reg_read(nic, NIC_VNIC_RX_STAT_0_13 | (reg << 3))
|
||||
|
Loading…
Reference in New Issue
Block a user