mirror of
https://github.com/openvswitch/ovs
synced 2025-08-31 06:15:47 +00:00
netdev-linux: Translate errno value to name in log message.
Signed-off-by: Ben Pfaff <blp@nicira.com>
This commit is contained in:
@@ -1244,8 +1244,8 @@ get_stats_via_vport(const struct netdev *netdev_,
|
||||
|
||||
error = netdev_vport_get_stats(netdev_, stats);
|
||||
if (error) {
|
||||
VLOG_WARN_RL(&rl, "%s: obtaining netdev stats via vport failed %d",
|
||||
netdev_get_name(netdev_), error);
|
||||
VLOG_WARN_RL(&rl, "%s: obtaining netdev stats via vport failed "
|
||||
"(%s)", netdev_get_name(netdev_), strerror(error));
|
||||
}
|
||||
netdev_dev->have_vport_stats = !error;
|
||||
netdev_dev->cache_valid |= VALID_HAVE_VPORT_STATS;
|
||||
|
Reference in New Issue
Block a user