> >> @@ -2504,6 +2498,8 @@ static int hugetlb_cow(struct mm_struct *mm, struct vm_area_struct *vma, > >> struct hstate *h = hstate_vma(vma); > >> struct page *old_page, *new_page; > >> int outside_reserve = 0; > >> + long chg; > >> + bool use_reserve; > >> unsigned long mmun_start; /* For mmu_notifiers */ > >> unsigned long mmun_end; /* For mmu_notifiers */ > >> > >> @@ -2535,7 +2531,17 @@ retry_avoidcopy: > >> > >> /* Drop page_table_lock as buddy allocator may be called */ > >> spin_unlock(&mm->page_table_lock); > >> - new_page = alloc_huge_page(vma, address, outside_reserve); > >> + chg = vma_needs_reservation(h, vma, address); > >> + if (chg == -ENOMEM) { > > > > why not > > > > if (chg < 0) ? > > > > Should we try to unmap the page from child and avoid cow here ?. May be > > with outside_reserve = 1 we will never have vma_needs_reservation fail. > > Any how it would be nice to document why this error case is different > > from alloc_huge_page error case. > > > > I guess patch 16 address this . So if we do if (chg < 0) we are good > here. Okay! I will change it. > > Reviewed-by: Aneesh Kumar K.V <aneesh.kumar@xxxxxxxxxxxxxxxxxx> Thanks. -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>