diff options
Diffstat (limited to 'arch/openrisc/include/asm/pgalloc.h')
| -rw-r--r-- | arch/openrisc/include/asm/pgalloc.h | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/openrisc/include/asm/pgalloc.h b/arch/openrisc/include/asm/pgalloc.h index 21484e5b9e9a..87eebd185089 100644 --- a/arch/openrisc/include/asm/pgalloc.h +++ b/arch/openrisc/include/asm/pgalloc.h @@ -77,7 +77,7 @@ static inline struct page *pte_alloc_one(struct mm_struct *mm,  					 unsigned long address)  {  	struct page *pte; -	pte = alloc_pages(GFP_KERNEL|__GFP_REPEAT, 0); +	pte = alloc_pages(GFP_KERNEL, 0);  	if (!pte)  		return NULL;  	clear_page(page_address(pte));  |