diff options
author | Pravin B Shelar <pshelar@nicira.com> | 2015-08-29 20:44:06 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-08-29 22:07:15 -0400 |
commit | 3eedb41fb43461b5fde3f72fd00a7706f0b90103 (patch) | |
tree | 96851bd448a2878fac5ba1e8e0c21b049f585547 /net/openvswitch/datapath.c | |
parent | 24d43f32d86026a0e318fee736380e164d85eefa (diff) |
openvswitch: Remove egress_tun_info.
tun info is passed using skb-dst pointer. Now we have
converted all vports to netdev based implementation so
Now we can remove redundant pointer to tun-info from OVS_CB.
Signed-off-by: Pravin B Shelar <pshelar@nicira.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/openvswitch/datapath.c')
-rw-r--r-- | net/openvswitch/datapath.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/openvswitch/datapath.c b/net/openvswitch/datapath.c index ec0f8d9cee73..60c2ab8e6bc3 100644 --- a/net/openvswitch/datapath.c +++ b/net/openvswitch/datapath.c | |||
@@ -610,7 +610,6 @@ static int ovs_packet_cmd_execute(struct sk_buff *skb, struct genl_info *info) | |||
610 | goto err_flow_free; | 610 | goto err_flow_free; |
611 | 611 | ||
612 | rcu_assign_pointer(flow->sf_acts, acts); | 612 | rcu_assign_pointer(flow->sf_acts, acts); |
613 | OVS_CB(packet)->egress_tun_info = NULL; | ||
614 | packet->priority = flow->key.phy.priority; | 613 | packet->priority = flow->key.phy.priority; |
615 | packet->mark = flow->key.phy.skb_mark; | 614 | packet->mark = flow->key.phy.skb_mark; |
616 | 615 | ||