net/octeontx2: update max packet length for inline IPsec
authorTejasree Kondoj <ktejasree@marvell.com>
Sat, 16 May 2020 09:26:54 +0000 (14:56 +0530)
committerAkhil Goyal <akhil.goyal@nxp.com>
Sun, 17 May 2020 14:10:44 +0000 (16:10 +0200)
Update max packet length supported by Inline IPsec Rx to
NIX_MAX_FRS

Signed-off-by: Anoob Joseph <anoobj@marvell.com>
Signed-off-by: Tejasree Kondoj <ktejasree@marvell.com>
drivers/net/octeontx2/otx2_ethdev_sec.c

index 3858218..5f6140f 100644 (file)
@@ -20,8 +20,6 @@
 #include "otx2_ipsec_fp.h"
 #include "otx2_sec_idev.h"
 
-#define ETH_SEC_MAX_PKT_LEN    1450
-
 #define AH_HDR_LEN     12
 #define AES_GCM_IV_LEN 8
 #define AES_GCM_MAC_LEN        16
@@ -745,7 +743,7 @@ eth_sec_ipsec_cfg(struct rte_eth_dev *eth_dev, uint8_t tt)
 
        req->ipsec_cfg0.sa_pow2_size =
                        rte_log2_u32(sizeof(struct otx2_ipsec_fp_in_sa));
-       req->ipsec_cfg0.lenm1_max = ETH_SEC_MAX_PKT_LEN - 1;
+       req->ipsec_cfg0.lenm1_max = NIX_MAX_FRS - 1;
 
        req->ipsec_cfg1.sa_idx_w = rte_log2_u32(dev->ipsec_in_max_spi);
        req->ipsec_cfg1.sa_idx_max = dev->ipsec_in_max_spi - 1;