From 87e6ccfba9ba8c94a09de1205da4a9f064ac7bd6 Mon Sep 17 00:00:00 2001 From: Jarno Rajahalme Date: Wed, 2 Apr 2014 11:14:58 -0700 Subject: [PATCH] datapath: Fix typo. Incorrect struct name was confusing, even though otherwise inconsequental. Signed-off-by: Jarno Rajahalme Signed-off-by: Pravin B Shelar --- datapath/flow_table.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datapath/flow_table.c b/datapath/flow_table.c index a680895e7..159572b59 100644 --- a/datapath/flow_table.c +++ b/datapath/flow_table.c @@ -141,7 +141,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, -- 2.43.0