]> git.droids-corp.org - dpdk.git/commitdiff
net/bnxt: fix type casting
authorShahaji Bhosle <sbhosle@broadcom.com>
Wed, 3 Nov 2021 00:52:42 +0000 (17:52 -0700)
committerAjit Khaparde <ajit.khaparde@broadcom.com>
Thu, 4 Nov 2021 21:12:13 +0000 (22:12 +0100)
Typecast flow_item type, action_item type and the ENUMs to uint32_t
before comparing.

Bugzilla ID: 821
Fixes: bdf4a3c6316b ("net/bnxt: support tunnel offload")
Signed-off-by: Shahaji Bhosle <sbhosle@broadcom.com>
Signed-off-by: Venkat Duvvuru <venkatkumar.duvvuru@broadcom.com>
Reviewed-by: Ajit Khaparde <ajit.khaparde@broadcom.com>
drivers/net/bnxt/tf_ulp/ulp_rte_parser.c

index 605c29223cd9a68acdc70844ec5ec62f6dda574a..d21c088d596d7ae0d87f491c9b29009f0fc74488 100644 (file)
@@ -137,10 +137,10 @@ bnxt_ulp_rte_parser_hdr_parse(const struct rte_flow_item pattern[],
 
        /* Parse all the items in the pattern */
        while (item && item->type != RTE_FLOW_ITEM_TYPE_END) {
-               if (item->type >= (uint32_t)
+               if (item->type >= (typeof(item->type))
                    BNXT_RTE_FLOW_ITEM_TYPE_END) {
                        if (item->type >=
-                           (uint32_t)BNXT_RTE_FLOW_ITEM_TYPE_LAST)
+                           (typeof(item->type))BNXT_RTE_FLOW_ITEM_TYPE_LAST)
                                goto hdr_parser_error;
                        /* get the header information */
                        hdr_info = &ulp_vendor_hdr_info[item->type -
@@ -186,9 +186,9 @@ bnxt_ulp_rte_parser_act_parse(const struct rte_flow_action actions[],
        /* Parse all the items in the pattern */
        while (action_item && action_item->type != RTE_FLOW_ACTION_TYPE_END) {
                if (action_item->type >=
-                   (uint32_t)BNXT_RTE_FLOW_ACTION_TYPE_END) {
+                   (typeof(action_item->type))BNXT_RTE_FLOW_ACTION_TYPE_END) {
                        if (action_item->type >=
-                           (uint32_t)BNXT_RTE_FLOW_ACTION_TYPE_LAST)
+                           (typeof(action_item->type))BNXT_RTE_FLOW_ACTION_TYPE_LAST)
                                goto act_parser_error;
                        /* get the header information from bnxt actinfo table */
                        hdr_info = &ulp_vendor_act_info[action_item->type -