aboutsummaryrefslogtreecommitdiff
path: root/tests/test-odp.c
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 /tests/test-odp.c
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 '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 9db27bf5..9a2bc0ae 100644
--- a/tests/test-odp.c
+++ b/tests/test-odp.c
@@ -50,7 +50,7 @@ main(void)
continue;
}
- /* Convert string to ODP key. */
+ /* Convert string to OVS DP key. */
ofpbuf_init(&odp_key, 0);
error = odp_flow_key_from_string(ds_cstr(&in), &odp_key);
if (error) {