aboutsummaryrefslogtreecommitdiff
path: root/utilities
diff options
context:
space:
mode:
authorJustin Pettit <jpettit@nicira.com>2011-08-18 10:35:40 -0700
committerJustin Pettit <jpettit@nicira.com>2011-08-19 22:48:23 -0700
commitdf2c07f4338faac04f4969f243fe4e8083b309ac (patch)
tree33d2b377ab21c76a122e656a032e340105d16ef9 /utilities
parent1c313b88e1ba908b4f30ce2b3702d57e8f4d9a38 (diff)
datapath: Use "OVS_*" as opposed to "ODP_*" for user<->kernel interactions.
The prefix "ODP_*" is not overly descriptive in the context of the larger Linux tree. This commit changes the prefix to "OVS_*" for the userpace to kernel interactions. The userspace libraries still use "ODP_" in many of their interfaces since it is more descriptive in the OVS oeuvre. Feature #6904 Signed-off-by: Justin Pettit <jpettit@nicira.com> Acked-by: Jesse Gross <jesse@nicira.com>
Diffstat (limited to 'utilities')
-rw-r--r--utilities/ovs-dpctl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utilities/ovs-dpctl.c b/utilities/ovs-dpctl.c
index e0848681..0e6c16fa 100644
--- a/utilities/ovs-dpctl.c
+++ b/utilities/ovs-dpctl.c
@@ -366,7 +366,7 @@ show_dpif(struct dpif *dpif)
{
struct dpif_port_dump dump;
struct dpif_port dpif_port;
- struct odp_stats stats;
+ struct ovs_dp_stats stats;
printf("%s:\n", dpif_name(dpif));
if (!dpif_get_dp_stats(dpif, &stats)) {