[dpdk-test-report] |WARNING| pw68640 [PATCH v5 06/11] net/iavf: add flow director enabled switch value

checkpatch at dpdk.org checkpatch at dpdk.org
Thu Apr 16 10:21:51 CEST 2020


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

_coding style issues_


CHECK:MACRO_ARG_REUSE: Macro argument reuse 'ad' - possible side-effects?
#99: FILE: drivers/net/iavf/iavf_rxtx.h:495:
+#define FDIR_PROC_ENABLE_PER_QUEUE(ad, on) do { \
+	int i; \
+	for (i = 0; i < (ad)->eth_dev->data->nb_rx_queues; i++) { \
+		struct iavf_rx_queue *rxq = (ad)->eth_dev->data->rx_queues[i]; \
+		if (!rxq) \
+			continue; \
+		rxq->fdir_enabled = on; \
+	} \
+	PMD_DRV_LOG(DEBUG, "FDIR processing on RX set to %d", on); \
+} while (0)

CHECK:MACRO_ARG_REUSE: Macro argument reuse 'on' - possible side-effects?
#99: FILE: drivers/net/iavf/iavf_rxtx.h:495:
+#define FDIR_PROC_ENABLE_PER_QUEUE(ad, on) do { \
+	int i; \
+	for (i = 0; i < (ad)->eth_dev->data->nb_rx_queues; i++) { \
+		struct iavf_rx_queue *rxq = (ad)->eth_dev->data->rx_queues[i]; \
+		if (!rxq) \
+			continue; \
+		rxq->fdir_enabled = on; \
+	} \
+	PMD_DRV_LOG(DEBUG, "FDIR processing on RX set to %d", on); \
+} while (0)

total: 0 errors, 0 warnings, 2 checks, 49 lines checked


More information about the test-report mailing list