summaryrefslogtreecommitdiff
path: root/lib/netdev-dpdk.c
diff options
context:
space:
mode:
authorKevin Traynor <ktraynor@redhat.com>2017-06-26 22:51:51 +0100
committerBen Pfaff <blp@ovn.org>2017-07-11 22:09:22 -0700
commit2cfe866fb3978bfe98ea8d2b4b9e4f55ace56278 (patch)
tree4b5777b6e4ac5a7188e8edcac8dcc094ae786a7b /lib/netdev-dpdk.c
parentd4f5282cf17d6a5f1d080f4c41a9523cbe499fa7 (diff)
downloadopenvswitch-2cfe866fb3978bfe98ea8d2b4b9e4f55ace56278.tar.gz
netdev-dpdk: Log Rx checksum offload not supported.
Rx checksum offload is enabled by default on DPDK NICs where supported. Previously Rx checksum offload not supported was logged only once. It meant that if multiple NICs did not support Rx checksum offload, it was only reported for the first NIC configured. Fixes: 1a2bb11817a4 ("netdev-dpdk: Enable Rx checksum offloading feature on DPDK physical ports.") Reported-by: Darrell Ball <dlu998@gmail.com> Signed-off-by: Kevin Traynor <ktraynor@redhat.com> Signed-off-by: Ben Pfaff <blp@ovn.org>
Diffstat (limited to 'lib/netdev-dpdk.c')
-rw-r--r--lib/netdev-dpdk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/netdev-dpdk.c b/lib/netdev-dpdk.c
index 5caf91370..ea17b97e7 100644
--- a/lib/netdev-dpdk.c
+++ b/lib/netdev-dpdk.c
@@ -744,7 +744,7 @@ dpdk_eth_dev_init(struct netdev_dpdk *dev)
if ((info.rx_offload_capa & rx_chksm_offload_capa) !=
rx_chksm_offload_capa) {
- VLOG_WARN_ONCE("Rx checksum offload is not supported on device %"PRIu8,
+ VLOG_WARN("Rx checksum offload is not supported on port %"PRIu8,
dev->port_id);
dev->hw_ol_features &= ~NETDEV_RX_CHECKSUM_OFFLOAD;
} else {