Skip to content

Commit

Permalink
dpif-netlink: Fix report_loss() message.
Browse files Browse the repository at this point in the history
Fixes: 1579cf6 ("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>
  • Loading branch information
markdgray authored and igsilya committed Jul 16, 2021
1 parent 5d2c850 commit bbdf047
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/dpif-netlink.c
Expand Up @@ -4676,7 +4676,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);
}

0 comments on commit bbdf047

Please sign in to comment.