Skip to content

Commit

Permalink
lflow.c: Reapply the dbg log fix for handling a lflow for a non-local…
Browse files Browse the repository at this point in the history
… DP.

Reapply commit 385aedb ("lflow.c: Improve the debug log when handling
a lflow for a non-local DP.") which was dropped during the merge of the
commit 979fecc.

Fixes: 979fecc ("controller: Use precomputed is_switch instead of querying external IDs.")
Signed-off-by: Han Zhou <hzhou@ovn.org>
Acked-by: Numan Siddique <numans@ovn.org>
  • Loading branch information
hzhou8 committed Feb 24, 2022
1 parent 7c0b538 commit cf506a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions controller/lflow.c
Expand Up @@ -1291,8 +1291,8 @@ consider_logical_flow__(const struct sbrec_logical_flow *lflow,
struct local_datapath *ldp = get_local_datapath(l_ctx_in->local_datapaths,
dp->tunnel_key);
if (!ldp) {
VLOG_DBG("lflow "UUID_FMT" is not for local datapath, skip",
UUID_ARGS(&lflow->header_.uuid));
VLOG_DBG("Skip lflow "UUID_FMT" for non-local datapath %"PRId64,
UUID_ARGS(&lflow->header_.uuid), dp->tunnel_key);
return;
}

Expand Down

0 comments on commit cf506a0

Please sign in to comment.