aboutsummaryrefslogtreecommitdiffstats
path: root/net/openvswitch/flow_table.c
diff options
context:
space:
mode:
authorJiri Benc <jbenc@redhat.com>2015-08-20 07:56:23 -0400
committerDavid S. Miller <davem@davemloft.net>2015-08-20 18:42:36 -0400
commitc1ea5d672aaff08da337dee735dbb548e3415585 (patch)
tree7e5e9a74d7e55be37c1ecea8c0cdeb1211791586 /net/openvswitch/flow_table.c
parent376534a3d17002d608985bd67c3b0880eacadd14 (diff)
ip_tunnels: add IPv6 addresses to ip_tunnel_key
Add the IPv6 addresses as an union with IPv4 ones. When using IPv4, the newly introduced padding after the IPv4 addresses needs to be zeroed out. Signed-off-by: Jiri Benc <jbenc@redhat.com> Acked-by: Thomas Graf <tgraf@suug.ch> Acked-by: Alexei Starovoitov <ast@plumgrid.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/openvswitch/flow_table.c')
-rw-r--r--net/openvswitch/flow_table.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/openvswitch/flow_table.c b/net/openvswitch/flow_table.c
index 3a9d1dde76ed..d22d8e948d0f 100644
--- a/net/openvswitch/flow_table.c
+++ b/net/openvswitch/flow_table.c
@@ -426,7 +426,7 @@ static u32 flow_hash(const struct sw_flow_key *key,
426 426
427static int flow_key_start(const struct sw_flow_key *key) 427static int flow_key_start(const struct sw_flow_key *key)
428{ 428{
429 if (key->tun_key.ipv4_dst) 429 if (key->tun_key.u.ipv4.dst)
430 return 0; 430 return 0;
431 else 431 else
432 return rounddown(offsetof(struct sw_flow_key, phy), 432 return rounddown(offsetof(struct sw_flow_key, phy),