diff options
author | Jarno Rajahalme <jrajahalme@nicira.com> | 2014-05-06 01:15:18 +0400 |
---|---|---|
committer | Pravin B Shelar <pshelar@nicira.com> | 2014-05-23 03:27:35 +0400 |
commit | eb07265904d6ee95497aba0f3cbd2ae6d9c39a97 (patch) | |
tree | 33e862cf19ac968d64ff3af86604e6f6e26c08ae /net/openvswitch | |
parent | 6093ae9abac18871afd0bbc5cf093dff53112fcb (diff) | |
download | linux-eb07265904d6ee95497aba0f3cbd2ae6d9c39a97.tar.xz |
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.c | 2 |
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) { int node; - kfree((struct sf_flow_acts __force *)flow->sf_acts); + kfree((struct sw_flow_actions __force *)flow->sf_acts); for_each_node(node) if (flow->stats[node]) kmem_cache_free(flow_stats_cache, |