提交 5bafb671 编写于 作者: T Thomas Gleixner 提交者: Ingo Molnar

x86: clean up arch/x86/ia32/mmap32.c

White space and coding style clenaup.
Signed-off-by: NThomas Gleixner <tglx@linutronix.de>
Signed-off-by: NIngo Molnar <mingo@elte.hu>
上级 6ec87566
......@@ -36,8 +36,8 @@
*
* Leave an at least ~128 MB hole.
*/
#define MIN_GAP (128*1024*1024)
#define MAX_GAP (TASK_SIZE/6*5)
#define MIN_GAP (128 * 1024 * 1024)
#define MAX_GAP (TASK_SIZE / 6 * 5)
static inline unsigned long mmap_base(struct mm_struct *mm)
{
......@@ -45,7 +45,7 @@ static inline unsigned long mmap_base(struct mm_struct *mm)
unsigned long random_factor = 0;
if (current->flags & PF_RANDOMIZE)
random_factor = get_random_int() % (1024*1024);
random_factor = get_random_int() % (1024 * 1024);
if (gap < MIN_GAP)
gap = MIN_GAP;
......@@ -66,8 +66,8 @@ void ia32_pick_mmap_layout(struct mm_struct *mm)
* bit is set, or if the expected stack growth is unlimited:
*/
if (sysctl_legacy_va_layout ||
(current->personality & ADDR_COMPAT_LAYOUT) ||
current->signal->rlim[RLIMIT_STACK].rlim_cur == RLIM_INFINITY) {
(current->personality & ADDR_COMPAT_LAYOUT) ||
current->signal->rlim[RLIMIT_STACK].rlim_cur == RLIM_INFINITY) {
mm->mmap_base = TASK_UNMAPPED_BASE;
mm->get_unmapped_area = arch_get_unmapped_area;
mm->unmap_area = arch_unmap_area;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册