* [dpdk-test-report] |WARNING| pw77824 [PATCH v3 2/5] net/ice: add flow director enabled switch value
[not found] <20200916031002.42122-3-junyux.jiang@intel.com>
@ 2020-09-16 3:27 ` checkpatch
0 siblings, 0 replies; only message in thread
From: checkpatch @ 2020-09-16 3:27 UTC (permalink / raw)
To: test-report; +Cc: Junyu Jiang
Test-Label: checkpatch
Test-Status: WARNING
http://dpdk.org/patch/77824
_coding style issues_
CHECK:MACRO_ARG_REUSE: Macro argument reuse 'ad' - possible side-effects?
#144: FILE: drivers/net/ice/ice_rxtx.h:249:
+#define FDIR_PARSING_ENABLE_PER_QUEUE(ad, on) do { \
+ int i; \
+ for (i = 0; i < (ad)->eth_dev->data->nb_rx_queues; i++) { \
+ struct ice_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?
#144: FILE: drivers/net/ice/ice_rxtx.h:249:
+#define FDIR_PARSING_ENABLE_PER_QUEUE(ad, on) do { \
+ int i; \
+ for (i = 0; i < (ad)->eth_dev->data->nb_rx_queues; i++) { \
+ struct ice_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, 81 lines checked
^ permalink raw reply [flat|nested] only message in thread