Commit 1f261ef5 authored by David S. Miller's avatar David S. Miller

[SPARC64]: Allocate TSB node-local.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent c1b1a5f1
...@@ -321,7 +321,8 @@ retry_tsb_alloc: ...@@ -321,7 +321,8 @@ retry_tsb_alloc:
if (new_size > (PAGE_SIZE * 2)) if (new_size > (PAGE_SIZE * 2))
gfp_flags = __GFP_NOWARN | __GFP_NORETRY; gfp_flags = __GFP_NOWARN | __GFP_NORETRY;
new_tsb = kmem_cache_alloc(tsb_caches[new_cache_index], gfp_flags); new_tsb = kmem_cache_alloc_node(tsb_caches[new_cache_index],
gfp_flags, numa_node_id());
if (unlikely(!new_tsb)) { if (unlikely(!new_tsb)) {
/* Not being able to fork due to a high-order TSB /* Not being able to fork due to a high-order TSB
* allocation failure is very bad behavior. Just back * allocation failure is very bad behavior. Just back
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment