Currently ovs-appctl dpctl/show only shows the Rx checksum offload status when true. Change to also show the status when false.
CC: Sugesh Chandran <[email protected]> Signed-off-by: Kevin Traynor <[email protected]> --- lib/netdev-dpdk.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/netdev-dpdk.c b/lib/netdev-dpdk.c index 79afda5..c4f32ac 100644 --- a/lib/netdev-dpdk.c +++ b/lib/netdev-dpdk.c @@ -1103,4 +1103,6 @@ netdev_dpdk_get_config(const struct netdev *netdev, struct smap *args) if (dev->hw_ol_features & NETDEV_RX_CHECKSUM_OFFLOAD) { smap_add(args, "rx_csum_offload", "true"); + } else { + smap_add(args, "rx_csum_offload", "false"); } } -- 1.8.3.1 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
