Skip to content

Commit

Permalink
net/ena: remove unused macro
Browse files Browse the repository at this point in the history
[ upstream commit 8bb7b19 ]

This assert macro is not called anymore.
This also fixes an invalid reference to RTE_LOGTYPE_ERR that does not
exist.

Fixes: 3adcba9 ("net/ena: update HAL to the newer version")
Fixes: 6f1c9df ("net/ena: use dynamic log type for debug logging")

Signed-off-by: David Marchand <david.marchand@redhat.com>
Acked-by: Michal Krawczyk <mk@semihalf.com>
  • Loading branch information
david-marchand authored and bluca committed Nov 9, 2020
1 parent 4a20f64 commit df6c635
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions drivers/net/ena/base/ena_plat_dpdk.h
Original file line number Diff line number Diff line change
Expand Up @@ -71,19 +71,6 @@ typedef uint64_t dma_addr_t;
(rte_get_timer_cycles() * US_PER_S / rte_get_timer_hz())

extern int ena_logtype_com;
#if RTE_LOG_DP_LEVEL >= RTE_LOG_DEBUG
#define ENA_ASSERT(cond, format, arg...) \
do { \
if (unlikely(!(cond))) { \
rte_log(RTE_LOGTYPE_ERR, ena_logtype_com, \
format, ##arg); \
rte_panic("line %d\tassert \"" #cond "\"" \
"failed\n", __LINE__); \
} \
} while (0)
#else
#define ENA_ASSERT(cond, format, arg...) do {} while (0)
#endif

#define ENA_MAX_T(type, x, y) RTE_MAX((type)(x), (type)(y))
#define ENA_MAX32(x, y) ENA_MAX_T(uint32_t, (x), (y))
Expand Down

0 comments on commit df6c635

Please sign in to comment.