diff options
| author | Jarno Rajahalme <[email protected]> | 2014-05-05 21:15:18 +0000 |
|---|---|---|
| committer | Pravin B Shelar <[email protected]> | 2014-05-22 23:27:35 +0000 |
| commit | eb07265904d6ee95497aba0f3cbd2ae6d9c39a97 (patch) | |
| tree | 33e862cf19ac968d64ff3af86604e6f6e26c08ae /net/openvswitch/flow_table.c | |
| parent | openvswitch: Minimize dp and vport critical sections. (diff) | |
| download | kernel-eb07265904d6ee95497aba0f3cbd2ae6d9c39a97.tar.gz kernel-eb07265904d6ee95497aba0f3cbd2ae6d9c39a97.zip | |
openvswitch: Fix typo.
Incorrect struct name was confusing, even though otherwise
inconsequental.
Signed-off-by: Jarno Rajahalme <[email protected]>
Signed-off-by: Pravin B Shelar <[email protected]>
Diffstat (limited to 'net/openvswitch/flow_table.c')
| -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, |
