From: Hugh Dickins Date: Mon, 6 Jun 2011 05:03:13 +0000 (-0700) Subject: mm: fix ENOSPC returned by handle_mm_fault() X-Git-Tag: v2.6.34.12~133 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=411ddb158e3e9eb8c03994551d21c9a2d4f6652e;p=karo-tx-linux.git mm: fix ENOSPC returned by handle_mm_fault() commit e0dcd8a05be438b3d2e49ef61441ea3a463663f8 upstream. Al Viro observes that in the hugetlb case, handle_mm_fault() may return a value of the kind ENOSPC when its caller is expecting a value of the kind VM_FAULT_SIGBUS: fix alloc_huge_page()'s failure returns. Signed-off-by: Hugh Dickins Acked-by: Al Viro Signed-off-by: Linus Torvalds Signed-off-by: Paul Gortmaker --- diff --git a/mm/hugetlb.c b/mm/hugetlb.c index 4c9e6bbf3772..2583bbe60f9e 100644 --- a/mm/hugetlb.c +++ b/mm/hugetlb.c @@ -1026,10 +1026,10 @@ static struct page *alloc_huge_page(struct vm_area_struct *vma, */ chg = vma_needs_reservation(h, vma, addr); if (chg < 0) - return ERR_PTR(chg); + return ERR_PTR(-VM_FAULT_OOM); if (chg) if (hugetlb_get_quota(inode->i_mapping, chg)) - return ERR_PTR(-ENOSPC); + return ERR_PTR(-VM_FAULT_SIGBUS); spin_lock(&hugetlb_lock); page = dequeue_huge_page_vma(h, vma, addr, avoid_reserve);