net/dpaa2: fix loop increment
authorShreyansh Jain <shreyansh.jain@nxp.com>
Thu, 25 Apr 2019 13:34:56 +0000 (19:04 +0530)
committerFerruh Yigit <ferruh.yigit@intel.com>
Fri, 3 May 2019 16:45:23 +0000 (18:45 +0200)
Identified by LGTM, the loop was incorrectly incrementing a different
variable and conditional on another.

Fixes: fe2b986ac662 ("net/dpaa2: support generic flow")

Suggested-by: Ferruh Yigit <ferruh.yigit@intel.com>
Signed-off-by: Shreyansh Jain <shreyansh.jain@nxp.com>
drivers/net/dpaa2/dpaa2_flow.c

index 98f6813..9ef46d4 100644 (file)
@@ -1734,7 +1734,7 @@ dpaa2_dev_verify_patterns(struct dpaa2_dev_priv *dev_priv,
        /* more than DPKG_MAX_NUM_OF_EXTRACTS. Verify this limitation too. */
        for (i = 0; pattern[i].type != RTE_FLOW_ITEM_TYPE_END; i++) {
                for (j = 0; j < MAX_TCS + 1; j++) {
-                               for (k = 0; k < DPKG_MAX_NUM_OF_EXTRACTS; j++) {
+                               for (k = 0; k < DPKG_MAX_NUM_OF_EXTRACTS; k++) {
                                        if (dev_priv->pattern[j].pattern_type[k] == pattern[i].type)
                                                break;
                                }