提交 71c9d8b6 编写于 作者: T Tejun Heo 提交者: Ingo Molnar

x86: Remove remap percpu allocator for the time being

Remap percpu allocator has subtle bug when combined with page
attribute changing.  Remap percpu allocator aliases PMD pages for the
first chunk and as pageattr doesn't know about the alias it ends up
updating page attributes of the original mapping thus leaving the
alises in inconsistent state which might lead to subtle data
corruption.  Please read the following threads for more information:

  http://thread.gmane.org/gmane.linux.kernel/835783

The following is the proposed fix which teaches pageattr about percpu
aliases.

  http://thread.gmane.org/gmane.linux.kernel/837157

However, the above changes are deemed too pervasive for upstream
inclusion for 2.6.30 release, so this patch essentially disables
the remap allocator for the time being.
Signed-off-by: NTejun Heo <tj@kernel.org>
LKML-Reference: <4A1A0A27.4050301@kernel.org>
Signed-off-by: NIngo Molnar <mingo@elte.hu>
上级 0af48f42
...@@ -160,8 +160,10 @@ static ssize_t __init setup_pcpu_remap(size_t static_size) ...@@ -160,8 +160,10 @@ static ssize_t __init setup_pcpu_remap(size_t static_size)
/* /*
* If large page isn't supported, there's no benefit in doing * If large page isn't supported, there's no benefit in doing
* this. Also, on non-NUMA, embedding is better. * this. Also, on non-NUMA, embedding is better.
*
* NOTE: disabled for now.
*/ */
if (!cpu_has_pse || !pcpu_need_numa()) if (true || !cpu_has_pse || !pcpu_need_numa())
return -EINVAL; return -EINVAL;
/* /*
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册