diff options
author | Pravin B Shelar <pshelar@nicira.com> | 2015-02-12 12:58:48 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-02-14 23:20:40 -0500 |
commit | 26ad0b83587fb6e9a20eef388b0587ada3da5d06 (patch) | |
tree | 7d22cac315134610c591bd8a2ba49a61efd3b410 /net/openvswitch/flow_netlink.c | |
parent | 65bab84c79077f3acbf7dcf2aec0588226d43663 (diff) |
openvswitch: Fix key serialization.
Fix typo where mask is used rather than key.
Fixes: 74ed7ab9264("openvswitch: Add support for unique flow IDs.")
Reported-by: Joe Stringer <joestringer@nicira.com>
Signed-off-by: Pravin B Shelar <pshelar@nicira.com>
Acked-by: Joe Stringer <joestringer@nicira.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/openvswitch/flow_netlink.c')
-rw-r--r-- | net/openvswitch/flow_netlink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/openvswitch/flow_netlink.c b/net/openvswitch/flow_netlink.c index 3829328c5a76..216f20b90aa5 100644 --- a/net/openvswitch/flow_netlink.c +++ b/net/openvswitch/flow_netlink.c | |||
@@ -1516,7 +1516,7 @@ int ovs_nla_put_identifier(const struct sw_flow *flow, struct sk_buff *skb) | |||
1516 | /* Called with ovs_mutex or RCU read lock. */ | 1516 | /* Called with ovs_mutex or RCU read lock. */ |
1517 | int ovs_nla_put_masked_key(const struct sw_flow *flow, struct sk_buff *skb) | 1517 | int ovs_nla_put_masked_key(const struct sw_flow *flow, struct sk_buff *skb) |
1518 | { | 1518 | { |
1519 | return ovs_nla_put_key(&flow->mask->key, &flow->key, | 1519 | return ovs_nla_put_key(&flow->key, &flow->key, |
1520 | OVS_FLOW_ATTR_KEY, false, skb); | 1520 | OVS_FLOW_ATTR_KEY, false, skb); |
1521 | } | 1521 | } |
1522 | 1522 | ||