Skip to content

Commit b8d6c3e

Browse files
committed
ovn-trace: Note that no match means drop.
ovn-trace will tell you when a packet processing ends because no flow is matched in a given logical flow table. Update the output to clarify that when this occurs, the packet is implicitly dropped. The output now looks like this: ingress(dp="sw0", inport="sw0-port1") ------------------------------------- 0. ls_in_port_sec_l2: no match (implicit drop) Signed-off-by: Russell Bryant <russell@ovn.org> Acked-by: Ben Pfaff <blp@ovn.org>
1 parent 4f3f690 commit b8d6c3e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ovn/utilities/ovn-trace.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1359,7 +1359,7 @@ trace__(const struct ovntrace_datapath *dp, struct flow *uflow,
13591359
ds_put_format(&s, "%s, priority %d", f->match_s, f->priority);
13601360
} else {
13611361
char *stage_name = ovntrace_stage_name(dp, table_id, pipeline);
1362-
ds_put_format(&s, "%s%sno match",
1362+
ds_put_format(&s, "%s%sno match (implicit drop)",
13631363
stage_name ? stage_name : "",
13641364
stage_name ? ": " : "");
13651365
free(stage_name);

0 commit comments

Comments
 (0)