Searched hist:"598 c12d0ba6de9060f04999746eb1e015774044b" (Results 1 – 1 of 1) sorted by relevance
/openbmc/linux/net/openvswitch/ |
H A D | flow_table.c | diff 598c12d0ba6de9060f04999746eb1e015774044b Fri Oct 02 05:18:22 CDT 2015 Konstantin Khlebnikov <khlebnikov@yandex-team.ru> ovs: do not allocate memory from offline numa node
When openvswitch tries allocate memory from offline numa node 0: stats = kmem_cache_alloc_node(flow_stats_cache, GFP_KERNEL | __GFP_ZERO, 0) It catches VM_BUG_ON(nid < 0 || nid >= MAX_NUMNODES || !node_online(nid)) [ replaced with VM_WARN_ON(!node_online(nid)) recently ] in linux/gfp.h This patch disables numa affinity in this case.
Signed-off-by: Konstantin Khlebnikov <khlebnikov@yandex-team.ru> Acked-by: Pravin B Shelar <pshelar@nicira.com> Signed-off-by: David S. Miller <davem@davemloft.net>
|