[dpdk-test-report] |WARNING| pw97169 [RFC 3/7] eth: make drivers to use new API for Tx

checkpatch at dpdk.org checkpatch at dpdk.org
Fri Aug 20 18:30:28 CEST 2021


Test-Label: checkpatch
Test-Status: WARNING
http://dpdk.org/patch/97169

_coding style issues_


CHECK:OPEN_ENDED_LINE: Lines should not end with a '('
#242: FILE: drivers/net/i40e/i40e_rxtx.c:3574:
+					_RTE_ETH_FUNC(

ERROR:COMPLEX_MACRO: Macros with complex values should be enclosed in parentheses
#841: FILE: lib/ethdev/ethdev_driver.h:1715:
+#define _RTE_ETH_TX_DEF(fn) \
+_RTE_ETH_TX_PROTO(fn) \
+{ \
+	void *txq = _rte_eth_tx_prolog(port_id, queue_id, tx_pkts, &nb_pkts); \
+	if (txq == NULL) \
+		return 0; \
+	return fn(txq, tx_pkts, nb_pkts); \
+}

WARNING:MACRO_WITH_FLOW_CONTROL: Macros with flow control statements should be avoided
#841: FILE: lib/ethdev/ethdev_driver.h:1715:
+#define _RTE_ETH_TX_DEF(fn) \
+_RTE_ETH_TX_PROTO(fn) \
+{ \
+	void *txq = _rte_eth_tx_prolog(port_id, queue_id, tx_pkts, &nb_pkts); \
+	if (txq == NULL) \
+		return 0; \
+	return fn(txq, tx_pkts, nb_pkts); \
+}

total: 1 errors, 1 warnings, 747 lines checked
Please only put __rte_experimental tags in headers (b/lib/ethdev/rte_ethdev.c)
Please only put __rte_experimental tags in headers (b/lib/ethdev/rte_ethdev.c)


More information about the test-report mailing list