From: Mel Gorman Date: Wed, 26 Sep 2012 01:33:17 +0000 (+1000) Subject: mempolicy-fix-a-memory-corruption-by-refcount-imbalance-in-alloc_pages_vma-v2 X-Git-Tag: next-20120927~1^2~329 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=b60213f38e7bfd487f804ad869d9174c99a94486;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 3c23d89fe06d..10ad3b36d035 100644 --- a/mm/mempolicy.c +++ b/mm/mempolicy.c @@ -1588,16 +1588,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;