aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZhang Yanfei <zhangyanfei@cn.fujitsu.com>2013-04-29 18:07:42 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2013-04-29 18:54:34 -0400
commitee5df0570c8af2610b28ab79bd8f8f8195687773 (patch)
tree988aaab853c133f7dbee9bcb7efdd016ef36f275
parent13ba3fcbbe31068b1ee7c39a0b58ecbed03c4d72 (diff)
mmap: find_vma: remove the WARN_ON_ONCE(!mm) check
Remove the WARN_ON_ONCE(!mm) check as the comment suggested. Kernel code calls find_vma only when it is absolutely sure that the mm_struct arg to it is non-NULL. Signed-off-by: Zhang Yanfei <zhangyanfei@cn.fujitsu.com> Cc: k80c <k80ck80c@gmail.com> Cc: Michel Lespinasse <walken@google.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r--mm/mmap.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/mm/mmap.c b/mm/mmap.c
index 0db0de1c2fbe..b2c363f7ae54 100644
--- a/mm/mmap.c
+++ b/mm/mmap.c
@@ -1935,9 +1935,6 @@ struct vm_area_struct *find_vma(struct mm_struct *mm, unsigned long addr)
1935{ 1935{
1936 struct vm_area_struct *vma = NULL; 1936 struct vm_area_struct *vma = NULL;
1937 1937
1938 if (WARN_ON_ONCE(!mm)) /* Remove this in linux-3.6 */
1939 return NULL;
1940
1941 /* Check the cache first. */ 1938 /* Check the cache first. */
1942 /* (Cache hit rate is typically around 35%.) */ 1939 /* (Cache hit rate is typically around 35%.) */
1943 vma = ACCESS_ONCE(mm->mmap_cache); 1940 vma = ACCESS_ONCE(mm->mmap_cache);