summaryrefslogtreecommitdiff
path: root/lib/dpif-netlink.c
diff options
context:
space:
mode:
authorMark Gray <mark.d.gray@redhat.com>2021-07-16 06:17:35 -0400
committerIlya Maximets <i.maximets@ovn.org>2021-07-16 20:05:03 +0200
commit485e3a13a6ead01df5ae68931b36d9845b8ea61c (patch)
treefd0f19752a534668b0701afba985e91fedf0a308 /lib/dpif-netlink.c
parent1325debb45955da14ecb35295c2cdfdf046f3dc3 (diff)
downloadopenvswitch-485e3a13a6ead01df5ae68931b36d9845b8ea61c.tar.gz
dpif-netlink: Fix report_loss() message.
Fixes: 1579cf677fcb ("dpif-linux: Implement the API functions to allow multiple handler threads read upcall.") Signed-off-by: Mark Gray <mark.d.gray@redhat.com> Acked-by: Flavio Leitner <fbl@sysclose.org> Acked-by: Aaron Conole <aconole@redhat.com> Signed-off-by: Ilya Maximets <i.maximets@ovn.org>
Diffstat (limited to 'lib/dpif-netlink.c')
-rw-r--r--lib/dpif-netlink.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/dpif-netlink.c b/lib/dpif-netlink.c
index 39dc8300e..e6cb3ca7f 100644
--- a/lib/dpif-netlink.c
+++ b/lib/dpif-netlink.c
@@ -4681,7 +4681,7 @@ report_loss(struct dpif_netlink *dpif, struct dpif_channel *ch, uint32_t ch_idx,
time_msec() - ch->last_poll);
}
- VLOG_WARN("%s: lost packet on port channel %u of handler %u",
- dpif_name(&dpif->dpif), ch_idx, handler_id);
+ VLOG_WARN("%s: lost packet on port channel %u of handler %u%s",
+ dpif_name(&dpif->dpif), ch_idx, handler_id, ds_cstr(&s));
ds_destroy(&s);
}