diff options
Diffstat (limited to 'net/openvswitch/flow_table.c')
-rw-r--r-- | net/openvswitch/flow_table.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/openvswitch/flow_table.c b/net/openvswitch/flow_table.c index f2ea83ba4763..c7f74aab34b9 100644 --- a/net/openvswitch/flow_table.c +++ b/net/openvswitch/flow_table.c | |||
@@ -93,7 +93,8 @@ struct sw_flow *ovs_flow_alloc(void) | |||
93 | 93 | ||
94 | /* Initialize the default stat node. */ | 94 | /* Initialize the default stat node. */ |
95 | stats = kmem_cache_alloc_node(flow_stats_cache, | 95 | stats = kmem_cache_alloc_node(flow_stats_cache, |
96 | GFP_KERNEL | __GFP_ZERO, 0); | 96 | GFP_KERNEL | __GFP_ZERO, |
97 | node_online(0) ? 0 : NUMA_NO_NODE); | ||
97 | if (!stats) | 98 | if (!stats) |
98 | goto err; | 99 | goto err; |
99 | 100 | ||