Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cc71aba3 authored by vishnu.ps's avatar vishnu.ps Committed by Linus Torvalds
Browse files

mm/mmap.c: whitespace fixes

parent bf0dea23
Loading
Loading
Loading
Loading
+19 −18
Original line number Diff line number Diff line
@@ -2512,7 +2512,8 @@ int do_munmap(struct mm_struct *mm, unsigned long start, size_t len)
	if ((start & ~PAGE_MASK) || start > TASK_SIZE || len > TASK_SIZE-start)
		return -EINVAL;

	if ((len = PAGE_ALIGN(len)) == 0)
	len = PAGE_ALIGN(len);
	if (len == 0)
		return -EINVAL;

	/* Find the first overlapping VMA */