]> git.proxmox.com Git - ovs.git/commit
datapath: Fix ovs_flow_key_update()
authorYi-Hung Wei <yihung.wei@gmail.com>
Mon, 1 May 2017 17:24:34 +0000 (10:24 -0700)
committerSimon Horman <simon.horman@netronome.com>
Wed, 3 May 2017 15:49:13 +0000 (17:49 +0200)
commit8bc50076948b4ab677b405bd437317a5293e2db3
tree22736253045b1da759a140c190f90243b7a5a6d5
parent279ecabe32f026bf15915e761c362739908e1ea1
datapath: Fix ovs_flow_key_update()

Upstream commit:
    commit 6f56f6186c18e3fd54122b73da68e870687b8c59
    Author: Yi-Hung Wei <yihung.wei@gmail.com>
    Date:   Thu Mar 30 12:36:03 2017 -0700

    ovs_flow_key_update() is called when the flow key is invalid, and it is
    used to update and revalidate the flow key. Commit 329f45bc4f19
    ("openvswitch: add mac_proto field to the flow key") introduces mac_proto
    field to flow key and use it to determine whether the flow key is valid.
    However, the commit does not update the code path in ovs_flow_key_update()
    to revalidate the flow key which may cause BUG_ON() on execute_recirc().
    This patch addresses the aforementioned issue.

Fixes: 329f45bc4f19 ("openvswitch: add mac_proto field to the flow key")
Signed-off-by: Yi-Hung Wei <yihung.wei@gmail.com>
Acked-by: Jiri Benc <jbenc@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Yi-Hung Wei <yihung.wei@gmail.com>
Acked-by: Simon Horman <simon.horman@netronome.com>
Signed-off-by: Simon Horman <simon.horman@netronome.com>
datapath/flow.c