x86, mm: rename TASK_SIZE64 => TASK_SIZE_MAX
Impact: cleanup Rename TASK_SIZE64 to TASK_SIZE_MAX, and provide the define on 32-bit too. (mapped to TASK_SIZE) This allows 32-bit code to make use of the (former-) TASK_SIZE64 symbol as well, in a clean way. Cc: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Ingo Molnar <mingo@elte.hu>
这个提交包含在:
@@ -963,7 +963,7 @@ static int fault_in_kernel_space(unsigned long address)
|
||||
#ifdef CONFIG_X86_32
|
||||
return address >= TASK_SIZE;
|
||||
#else
|
||||
return address >= TASK_SIZE64;
|
||||
return address >= TASK_SIZE_MAX;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
在新工单中引用
屏蔽一个用户