mirror of
https://github.com/S3NEO/android_kernel_samsung_msm8226.git
synced 2024-11-07 03:47:13 +00:00
mm/migrate.c: pair unlock_page() and lock_page() when migrating huge pages
Avoid unlocking and unlocked page if we failed to lock it. Signed-off-by: Hillf Danton <dhillf@gmail.com> Cc: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com> Cc: Andrea Arcangeli <aarcange@redhat.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
58a84aa927
commit
09761333ed
1 changed files with 1 additions and 1 deletions
|
@ -871,9 +871,9 @@ static int unmap_and_move_huge_page(new_page_t get_new_page,
|
|||
|
||||
if (anon_vma)
|
||||
put_anon_vma(anon_vma);
|
||||
out:
|
||||
unlock_page(hpage);
|
||||
|
||||
out:
|
||||
if (rc != -EAGAIN) {
|
||||
list_del(&hpage->lru);
|
||||
put_page(hpage);
|
||||
|
|
Loading…
Reference in a new issue