|
@@ -43,7 +43,7 @@ static inline void pgd_ctor(void *x)
|
|
|
*/
|
|
|
static inline pgd_t *pgd_alloc(struct mm_struct *mm)
|
|
|
{
|
|
|
- return quicklist_alloc(QUICK_PGD, GFP_KERNEL | __GFP_REPEAT, pgd_ctor);
|
|
|
+ return quicklist_alloc(QUICK_PGD, GFP_KERNEL, pgd_ctor);
|
|
|
}
|
|
|
|
|
|
static inline void pgd_free(struct mm_struct *mm, pgd_t *pgd)
|
|
@@ -54,7 +54,7 @@ static inline void pgd_free(struct mm_struct *mm, pgd_t *pgd)
|
|
|
static inline pte_t *pte_alloc_one_kernel(struct mm_struct *mm,
|
|
|
unsigned long address)
|
|
|
{
|
|
|
- return quicklist_alloc(QUICK_PT, GFP_KERNEL | __GFP_REPEAT, NULL);
|
|
|
+ return quicklist_alloc(QUICK_PT, GFP_KERNEL, NULL);
|
|
|
}
|
|
|
|
|
|
static inline pgtable_t pte_alloc_one(struct mm_struct *mm,
|
|
@@ -63,7 +63,7 @@ static inline pgtable_t pte_alloc_one(struct mm_struct *mm,
|
|
|
struct page *page;
|
|
|
void *pg;
|
|
|
|
|
|
- pg = quicklist_alloc(QUICK_PT, GFP_KERNEL | __GFP_REPEAT, NULL);
|
|
|
+ pg = quicklist_alloc(QUICK_PT, GFP_KERNEL, NULL);
|
|
|
if (!pg)
|
|
|
return NULL;
|
|
|
|