From: Mel Gorman Date: Thu, 13 Sep 2012 00:58:34 +0000 (+1000) Subject: mempolicy-fix-a-memory-corruption-by-refcount-imbalance-in-alloc_pages_vma-v2 X-Git-Tag: next-20120919~1^2~209 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=62f4b3bcfdf119a1998d1d5364040a540aa047c5;p=karo-tx-linux.git mempolicy-fix-a-memory-corruption-by-refcount-imbalance-in-alloc_pages_vma-v2 Signed-off-by: KOSAKI Motohiro Signed-off-by: Mel Gorman Reviewed-by: Christoph Lameter Cc: Josh Boyer Signed-off-by: Andrew Morton --- diff --git a/mm/mempolicy.c b/mm/mempolicy.c index 6434033f962d..3d64b369180d 100644 --- a/mm/mempolicy.c +++ b/mm/mempolicy.c @@ -1545,16 +1545,13 @@ struct mempolicy *get_vma_policy(struct task_struct *task, struct vm_area_struct *vma, unsigned long addr) { struct mempolicy *pol = task->mempolicy; - int got_ref; if (vma) { if (vma->vm_ops && vma->vm_ops->get_policy) { struct mempolicy *vpol = vma->vm_ops->get_policy(vma, addr); - if (vpol) { + if (vpol) pol = vpol; - got_ref = 1; - } } else if (vma->vm_policy) { pol = vma->vm_policy;