summaryrefslogtreecommitdiff
path: root/tests/test-odp.c
diff options
context:
space:
mode:
authorGurucharan Shetty <gshetty@nicira.com>2013-09-23 22:58:46 -0700
committerGurucharan Shetty <gshetty@nicira.com>2013-10-01 18:09:38 -0700
commit0a37839c03307cc4cc726d27a7348c05d469c5eb (patch)
tree6bf284bda19f723cc29f152af5e95a247d0cde3c /tests/test-odp.c
parent363591508db8f17045c9159522ad9511e63cba2e (diff)
downloadopenvswitch-0a37839c03307cc4cc726d27a7348c05d469c5eb.tar.gz
ovs-dpctl, ofproto/trace: Show and handle the in_port name in flows.
With this commit, whenever the verbosity is enabled with '-m' option, the ovs-dpctl dump-flows command will display the flows with in_port field showing the name instead of a port number. Conversely, one can also use a name in the in_port field with del-flow, add-flow and mod-flow commands of ovs-dpctl. One should also be able to use the port name when supplying the datapath flow as an input to ofproto/trace command. Signed-off-by: Gurucharan Shetty <gshetty@nicira.com> Acked-by: Ben Pfaff <blp@nicira.com>
Diffstat (limited to 'tests/test-odp.c')
-rw-r--r--tests/test-odp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test-odp.c b/tests/test-odp.c
index 45605e4b9..183a3b3cd 100644
--- a/tests/test-odp.c
+++ b/tests/test-odp.c
@@ -86,7 +86,7 @@ parse_keys(bool wc_keys)
ds_init(&out);
if (wc_keys) {
odp_flow_format(odp_key.data, odp_key.size,
- odp_mask.data, odp_mask.size, &out, false);
+ odp_mask.data, odp_mask.size, NULL, &out, false);
} else {
odp_flow_key_format(odp_key.data, odp_key.size, &out);
}