diff options
author | pravin shelar <pshelar@ovn.org> | 2016-09-19 22:51:00 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-09-21 04:54:35 +0200 |
commit | 2279994d07ab67ff7a1d09bfbd65588332dfb6d8 (patch) | |
tree | 6d7b081fca05a44e0fd991b35d5c9ed39c74832f /net/openvswitch/flow.c | |
parent | openvswitch: Fix Frame-size larger than 1024 bytes warning. (diff) | |
download | linux-2279994d07ab67ff7a1d09bfbd65588332dfb6d8.tar.xz linux-2279994d07ab67ff7a1d09bfbd65588332dfb6d8.zip |
openvswitch: avoid resetting flow key while installing new flow.
since commit commit db74a3335e0f6 ("openvswitch: use percpu
flow stats") flow alloc resets flow-key. So there is no need
to reset the flow-key again if OVS is using newly allocated
flow-key.
Signed-off-by: Pravin B Shelar <pshelar@ovn.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/openvswitch/flow.c')
-rw-r--r-- | net/openvswitch/flow.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/net/openvswitch/flow.c b/net/openvswitch/flow.c index 0fa45439def1..634cc10d6dee 100644 --- a/net/openvswitch/flow.c +++ b/net/openvswitch/flow.c @@ -767,8 +767,6 @@ int ovs_flow_key_extract_userspace(struct net *net, const struct nlattr *attr, { int err; - memset(key, 0, OVS_SW_FLOW_KEY_METADATA_SIZE); - /* Extract metadata from netlink attributes. */ err = ovs_nla_get_flow_metadata(net, attr, key, log); if (err) |