[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1441252346-2323-1-git-send-email-gang.chen.5i5j@gmail.com>
Date: Thu, 3 Sep 2015 11:52:26 +0800
From: gang.chen.5i5j@...il.com
To: akpm@...ux-foundation.org, mhocko@...e.cz
Cc: linux-mm@...ck.org, linux-kernel@...r.kernel.org,
gchen_5i5j@...n.com, Chen Gang <gang.chen.5i5j@...il.com>
Subject: [PATCH] mm/mmap.c: Remove useless statement "vma = NULL" in find_vma()
From: Chen Gang <gang.chen.5i5j@...il.com>
Before the main looping, vma is already is NULL, so need not set it to
NULL, again.
Signed-off-by: Chen Gang <gang.chen.5i5j@...il.com>
---
mm/mmap.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/mm/mmap.c b/mm/mmap.c
index df6d5f0..4db7cf0 100644
--- a/mm/mmap.c
+++ b/mm/mmap.c
@@ -2054,7 +2054,6 @@ struct vm_area_struct *find_vma(struct mm_struct *mm, unsigned long addr)
return vma;
rb_node = mm->mm_rb.rb_node;
- vma = NULL;
while (rb_node) {
struct vm_area_struct *tmp;
--
1.9.3
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists