diff options
author | David S. Miller <davem@davemloft.net> | 2014-07-07 19:39:34 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-07-07 19:39:34 -0700 |
commit | edc1bb0bd7d409f62ed7ba462ca5313be95cbed3 (patch) | |
tree | 1b3bd0ce4f3041365d31495fba900d1dccf9da55 /net/openvswitch/flow.c | |
parent | 11ef7a8996d5d433c9cd75d80651297eccbf6d42 (diff) | |
parent | 4a46b24e147dfa9b858026da02cad0bdd4e149d2 (diff) |
Merge branch 'net_ovs_fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/pshelar/openvswitch
Pravin B Shelar says:
====================
Open vSwitch
A set of fixes for net.
First bug is related flow-table management. Second one is in sample
action. Third is related flow stats and last one add gre-err handler for ovs.
====================
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/openvswitch/flow.c')
-rw-r--r-- | net/openvswitch/flow.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/openvswitch/flow.c b/net/openvswitch/flow.c index 334751cb152..d07ab538fc9 100644 --- a/net/openvswitch/flow.c +++ b/net/openvswitch/flow.c @@ -61,10 +61,10 @@ u64 ovs_flow_used_time(unsigned long flow_jiffies) #define TCP_FLAGS_BE16(tp) (*(__be16 *)&tcp_flag_word(tp) & htons(0x0FFF)) -void ovs_flow_stats_update(struct sw_flow *flow, struct sk_buff *skb) +void ovs_flow_stats_update(struct sw_flow *flow, __be16 tcp_flags, + struct sk_buff *skb) { struct flow_stats *stats; - __be16 tcp_flags = flow->key.tp.flags; int node = numa_node_id(); stats = rcu_dereference(flow->stats[node]); |