projects
/
openvswitch
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7f32948
)
ofproto: Cleanup bridge/dump-flows output
author
Justin Pettit
<jpettit@nicira.com>
Sat, 29 Aug 2009 22:54:28 +0000
(15:54 -0700)
committer
Justin Pettit
<jpettit@nicira.com>
Tue, 1 Sep 2009 21:48:33 +0000
(14:48 -0700)
Add separator that was missing from the output of the "bridge/dump-flows"
command from ovs-appctl.
secchan/ofproto.c
patch
|
blob
|
history
diff --git
a/secchan/ofproto.c
b/secchan/ofproto.c
index b3fef1b71427874c1dadc1d46a56f1c244a0e7ab..c29ddfb14266ea62c5ab521e35aba5844e92cd60 100644
(file)
--- a/
secchan/ofproto.c
+++ b/
secchan/ofproto.c
@@
-2516,7
+2516,7
@@
flow_stats_ds_cb(struct cls_rule *rule_, void *cbdata_)
ds_put_format(results, "duration=%llds, ",
(time_msec() - rule->created) / 1000);
- ds_put_format(results, "priority=%u", rule->cr.priority);
+ ds_put_format(results, "priority=%u
,
", rule->cr.priority);
ds_put_format(results, "n_packets=%"PRIu64", ", packet_count);
ds_put_format(results, "n_bytes=%"PRIu64", ", byte_count);
ofp_print_match(results, &match, true);