aboutsummaryrefslogtreecommitdiff
path: root/lib/odp-util.c
diff options
context:
space:
mode:
authorJustin Pettit <jpettit@nicira.com>2011-06-09 15:43:18 -0700
committerJustin Pettit <jpettit@nicira.com>2011-06-09 16:19:38 -0700
commit6c222e55fa4222c6724094e1e7a0a69addf6b030 (patch)
tree6eba31e8d48db9b933cabb700c102883414e227e /lib/odp-util.c
parenteb3e79c09d3f9fa5507d866b62d93eb09e93d4f3 (diff)
Remove NXAST_DROP_SPOOFED_ARP action.
The NXAST_DROP_SPOOFED_ARP action has been deprecated in favor of defining flows using the NXM_NX_ARP_SHA flow match for a while. This commit removes it. Signed-off-by: Justin Pettit <jpettit@nicira.com> Acked-by: Jesse Gross <jesse@nicira.com>
Diffstat (limited to 'lib/odp-util.c')
-rw-r--r--lib/odp-util.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/odp-util.c b/lib/odp-util.c
index 79f4bfc7..d7a3118b 100644
--- a/lib/odp-util.c
+++ b/lib/odp-util.c
@@ -54,7 +54,6 @@ odp_action_len(uint16_t type)
case ODP_ACTION_ATTR_SET_TUNNEL: return 8;
case ODP_ACTION_ATTR_SET_PRIORITY: return 4;
case ODP_ACTION_ATTR_POP_PRIORITY: return 0;
- case ODP_ACTION_ATTR_DROP_SPOOFED_ARP: return 0;
case ODP_ACTION_ATTR_UNSPEC:
case __ODP_ACTION_ATTR_MAX:
@@ -146,9 +145,6 @@ format_odp_action(struct ds *ds, const struct nlattr *a)
case ODP_ACTION_ATTR_POP_PRIORITY:
ds_put_cstr(ds, "pop_priority");
break;
- case ODP_ACTION_ATTR_DROP_SPOOFED_ARP:
- ds_put_cstr(ds, "drop_spoofed_arp");
- break;
default:
format_generic_odp_action(ds, a);
break;