소스 검색

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

White space and coding style clenaup.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Thomas Gleixner 17 년 전
부모
커밋
5bafb671e2
1개의 변경된 파일5개의 추가작업 그리고 5개의 파일을 삭제
  1. 5 5
      arch/x86/ia32/mmap32.c

+ 5 - 5
arch/x86/ia32/mmap32.c

@@ -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;