aboutsummaryrefslogtreecommitdiffstats
path: root/net/openvswitch
diff options
context:
space:
mode:
authorJarno Rajahalme <jrajahalme@nicira.com>2014-05-05 17:15:18 -0400
committerPravin B Shelar <pshelar@nicira.com>2014-05-22 19:27:35 -0400
commiteb07265904d6ee95497aba0f3cbd2ae6d9c39a97 (patch)
tree33e862cf19ac968d64ff3af86604e6f6e26c08ae /net/openvswitch
parent6093ae9abac18871afd0bbc5cf093dff53112fcb (diff)
openvswitch: Fix typo.
Incorrect struct name was confusing, even though otherwise inconsequental. Signed-off-by: Jarno Rajahalme <jrajahalme@nicira.com> Signed-off-by: Pravin B Shelar <pshelar@nicira.com>
Diffstat (limited to 'net/openvswitch')
-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 c80df6f42fee..574c3abc9b30 100644
--- a/net/openvswitch/flow_table.c
+++ b/net/openvswitch/flow_table.c
@@ -139,7 +139,7 @@ static void flow_free(struct sw_flow *flow)
139{ 139{
140 int node; 140 int node;
141 141
142 kfree((struct sf_flow_acts __force *)flow->sf_acts); 142 kfree((struct sw_flow_actions __force *)flow->sf_acts);
143 for_each_node(node) 143 for_each_node(node)
144 if (flow->stats[node]) 144 if (flow->stats[node])
145 kmem_cache_free(flow_stats_cache, 145 kmem_cache_free(flow_stats_cache,