X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Fodp-execute.c;h=12ad67981d3ae325a46a1681d2082e6b42bef178;hb=28c5588e8e1a8d091c5d2275232c35f2968a97fa;hp=cf33eb779dde8789150151a8959bf9126472ca95;hpb=df1e5a3bc7d772237de0ca19663e4a5a9b8f403b;p=sliver-openvswitch.git diff --git a/lib/odp-execute.c b/lib/odp-execute.c index cf33eb779..12ad67981 100644 --- a/lib/odp-execute.c +++ b/lib/odp-execute.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2009, 2010, 2011, 2012, 2013 Nicira, Inc. + * Copyright (c) 2009, 2010, 2011, 2012, 2013, 2014 Nicira, Inc. * Copyright (c) 2013 Simon Horman * * Licensed under the Apache License, Version 2.0 (the "License"); @@ -33,10 +33,12 @@ static void odp_eth_set_addrs(struct ofpbuf *packet, const struct ovs_key_ethernet *eth_key) { - struct eth_header *eh = packet->l2; + struct eth_header *eh = ofpbuf_l2(packet); - memcpy(eh->eth_src, eth_key->eth_src, sizeof eh->eth_src); - memcpy(eh->eth_dst, eth_key->eth_dst, sizeof eh->eth_dst); + if (eh) { + memcpy(eh->eth_src, eth_key->eth_src, sizeof eh->eth_src); + memcpy(eh->eth_dst, eth_key->eth_dst, sizeof eh->eth_dst); + } } static void @@ -51,7 +53,7 @@ odp_set_tunnel_action(const struct nlattr *a, struct flow_tnl *tun_key) static void set_arp(struct ofpbuf *packet, const struct ovs_key_arp *arp_key) { - struct arp_eth_header *arp = packet->l3; + struct arp_eth_header *arp = ofpbuf_l3(packet); arp->ar_op = arp_key->arp_op; memcpy(arp->ar_sha, arp_key->arp_sha, ETH_ADDR_LEN); @@ -125,6 +127,14 @@ odp_execute_set_action(struct ofpbuf *packet, const struct nlattr *a, set_arp(packet, nl_attr_get_unspec(a, sizeof(struct ovs_key_arp))); break; + case OVS_KEY_ATTR_DP_HASH: + md->dp_hash = nl_attr_get_u32(a); + break; + + case OVS_KEY_ATTR_RECIRC_ID: + md->recirc_id = nl_attr_get_u32(a); + break; + case OVS_KEY_ATTR_UNSPEC: case OVS_KEY_ATTR_ENCAP: case OVS_KEY_ATTR_ETHERTYPE: @@ -197,11 +207,14 @@ odp_execute_actions__(void *dp, struct ofpbuf *packet, bool steal, /* These only make sense in the context of a datapath. */ case OVS_ACTION_ATTR_OUTPUT: case OVS_ACTION_ATTR_USERSPACE: + case OVS_ACTION_ATTR_RECIRC: + case OVS_ACTION_ATTR_HASH: if (dp_execute_action) { - bool may_steal; /* Allow 'dp_execute_action' to steal the packet data if we do * not need it any more. */ - may_steal = steal && (!more_actions && left <= NLA_ALIGN(a->nla_len)); + bool may_steal = steal && (!more_actions + && left <= NLA_ALIGN(a->nla_len) + && type != OVS_ACTION_ATTR_RECIRC); dp_execute_action(dp, packet, md, a, may_steal); } break;