uml: fix order of pud and pmd_free()
If pmd_alloc() fails we should only free the prior allocated pud, if pte_alloc_map() fails, we should free pmd as well. Signed-off-by: Roel Kluin <roel.kluin@gmail.com> Cc: Jeff Dike <jdike@addtoit.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
committed by
Linus Torvalds
parent
db4e5cbe2f
commit
4d04c70754
@@ -38,10 +38,10 @@ static int init_stub_pte(struct mm_struct *mm, unsigned long proc,
|
|||||||
*pte = pte_mkread(*pte);
|
*pte = pte_mkread(*pte);
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
out_pmd:
|
|
||||||
pud_free(mm, pud);
|
|
||||||
out_pte:
|
out_pte:
|
||||||
pmd_free(mm, pmd);
|
pmd_free(mm, pmd);
|
||||||
|
out_pmd:
|
||||||
|
pud_free(mm, pud);
|
||||||
out:
|
out:
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user