Re: [PATCH v5 08/11] thp: setup huge zero page on non-write page fault

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Wed, 7 Nov 2012, Kirill A. Shutemov wrote:

> diff --git a/mm/huge_memory.c b/mm/huge_memory.c
> index f36bc7d..41f05f1 100644
> --- a/mm/huge_memory.c
> +++ b/mm/huge_memory.c
> @@ -726,6 +726,16 @@ int do_huge_pmd_anonymous_page(struct mm_struct *mm, struct vm_area_struct *vma,
>  			return VM_FAULT_OOM;
>  		if (unlikely(khugepaged_enter(vma)))
>  			return VM_FAULT_OOM;
> +		if (!(flags & FAULT_FLAG_WRITE)) {
> +			pgtable_t pgtable;
> +			pgtable = pte_alloc_one(mm, haddr);
> +			if (unlikely(!pgtable))
> +				goto out;

No use in retrying, just return VM_FAULT_OOM.

> +			spin_lock(&mm->page_table_lock);
> +			set_huge_zero_page(pgtable, mm, vma, haddr, pmd);
> +			spin_unlock(&mm->page_table_lock);
> +			return 0;
> +		}
>  		page = alloc_hugepage_vma(transparent_hugepage_defrag(vma),
>  					  vma, haddr, numa_node_id(), 0);
>  		if (unlikely(!page)) {

--
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>


[Index of Archives]     [Linux ARM Kernel]     [Linux ARM]     [Linux Omap]     [Fedora ARM]     [IETF Annouce]     [Bugtraq]     [Linux]     [Linux OMAP]     [Linux MIPS]     [ECOS]     [Asterisk Internet PBX]     [Linux API]