eventdev/eth_rx: fix telemetry Rx stats reset
authorDavid Marchand <david.marchand@redhat.com>
Thu, 24 Mar 2022 15:28:30 +0000 (16:28 +0100)
committerJerin Jacob <jerinj@marvell.com>
Tue, 17 May 2022 14:42:23 +0000 (16:42 +0200)
Caught by covscan:

1. dpdk-21.11/lib/eventdev/rte_event_eth_rx_adapter.c:3279:
logical_vs_bitwise: "~(*__ctype_b_loc()[(int)*params] & 2048 /*
(unsigned short)_ISdigit */)" is always 1/true regardless of the values
of its operand. This occurs as the logical second operand of "||".
2. dpdk-21.11/lib/eventdev/rte_event_eth_rx_adapter.c:3279: remediation:
Did you intend to use "!" rather than "~"?

While isdigit return value should be compared as an int to 0,
prefer ! since all of this file uses this convention.

Fixes: 814d01709328 ("eventdev/eth_rx: support telemetry")
Cc: stable@dpdk.org
Signed-off-by: David Marchand <david.marchand@redhat.com>
Acked-by: Jay Jayatheerthan <jay.jayatheerthan@intel.com>
lib/eventdev/rte_event_eth_rx_adapter.c

index ff83ce8..bf8741d 100644 (file)
@@ -3334,7 +3334,7 @@ handle_rxa_stats_reset(const char *cmd __rte_unused,
 {
        uint8_t rx_adapter_id;
 
-       if (params == NULL || strlen(params) == 0 || ~isdigit(*params))
+       if (params == NULL || strlen(params) == 0 || !isdigit(*params))
                return -1;
 
        /* Get Rx adapter ID from parameter string */