net/bnxt: fix endianness
authorKalesh AP <kalesh-anakkur.purayil@broadcom.com>
Thu, 25 Jul 2019 04:59:48 +0000 (10:29 +0530)
committerFerruh Yigit <ferruh.yigit@intel.com>
Thu, 25 Jul 2019 15:54:57 +0000 (17:54 +0200)
Use rte_cpu_to_le_16/32 while parsing the hwrm command response.

Fixes: 11e5e19695c7 ("net/bnxt: support redirecting tunnel packets to VF")

Signed-off-by: Kalesh AP <kalesh-anakkur.purayil@broadcom.com>
Signed-off-by: Somnath Kotur <somnath.kotur@broadcom.com>
drivers/net/bnxt/bnxt_hwrm.c

index c1b117e..6128f0f 100644 (file)
@@ -4571,7 +4571,7 @@ int bnxt_hwrm_tunnel_redirect_query(struct bnxt *bp, uint32_t *type)
        HWRM_CHECK_RESULT();
 
        if (type)
-               *type = resp->tunnel_mask;
+               *type = rte_le_to_cpu_32(resp->tunnel_mask);
 
        HWRM_UNLOCK();
 
@@ -4593,7 +4593,7 @@ int bnxt_hwrm_tunnel_redirect_info(struct bnxt *bp, uint8_t tun_type,
        HWRM_CHECK_RESULT();
 
        if (dst_fid)
-               *dst_fid = resp->dest_fid;
+               *dst_fid = rte_le_to_cpu_16(resp->dest_fid);
 
        PMD_DRV_LOG(DEBUG, "dst_fid: %x\n", resp->dest_fid);