[dpdk-dev,v3,17/20] testpmd: add a warning if outer ip cksum requested but not supported
Commit Message
Signed-off-by: Olivier Matz <olivier.matz@6wind.com>
---
app/test-pmd/cmdline.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
@@ -2930,7 +2930,11 @@ csum_show(int port_id)
printf("Warning: hardware SCTP checksum enabled but not "
"supported by port %d\n", port_id);
}
-
+ if ((ol_flags & TESTPMD_TX_OFFLOAD_OUTER_IP_CKSUM) &&
+ (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM) == 0) {
+ printf("Warning: hardware outer IP checksum enabled but not "
+ "supported by port %d\n", port_id);
+ }
}
static void