aboutsummaryrefslogtreecommitdiffstats
path: root/net/openvswitch/actions.c
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2013-08-15 01:41:10 -0700
committerDavid S. Miller <davem@davemloft.net>2013-08-15 01:41:10 -0700
commit09a8f03197d4799bc9969b35240e5606c026ded6 (patch)
treecdd3f2d2a3eb8c22c57b9e6a5384df824e52417f /net/openvswitch/actions.c
parent2fdac010bdcf10a30711b6924612dfc40daf19b8 (diff)
parent36bf5cc66d60868bcc10aff209defed5a7b71c1d (diff)
downloadkernel_goldelico_gta04-09a8f03197d4799bc9969b35240e5606c026ded6.zip
kernel_goldelico_gta04-09a8f03197d4799bc9969b35240e5606c026ded6.tar.gz
kernel_goldelico_gta04-09a8f03197d4799bc9969b35240e5606c026ded6.tar.bz2
Merge branch 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch
Jesse Gross says: ==================== Three bug fixes that are fairly small either way but resolve obviously incorrect code. For net/3.11. ==================== Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/openvswitch/actions.c')
-rw-r--r--net/openvswitch/actions.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/openvswitch/actions.c b/net/openvswitch/actions.c
index 22c5f39..ab101f7 100644
--- a/net/openvswitch/actions.c
+++ b/net/openvswitch/actions.c
@@ -535,6 +535,7 @@ int ovs_execute_actions(struct datapath *dp, struct sk_buff *skb)
{
struct sw_flow_actions *acts = rcu_dereference(OVS_CB(skb)->flow->sf_acts);
+ OVS_CB(skb)->tun_key = NULL;
return do_execute_actions(dp, skb, acts->actions,
acts->actions_len, false);
}