summaryrefslogtreecommitdiff
path: root/include/asm-alpha
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@home.transmeta.com>2003-04-20 00:47:49 -0700
committerLinus Torvalds <torvalds@home.transmeta.com>2003-04-20 00:47:49 -0700
commit8f421acbbdc3daba1682bdf7b99083f4725ce5d3 (patch)
tree28d8e5910bd466ed487654d5e62269b8446a80bd /include/asm-alpha
parent2d0ed1066cf5dd005c518be917649ca3f3b5c961 (diff)
parentb009a1c6a6c0273f60d96eca2561bc79da3b6614 (diff)
Merge home.transmeta.com:/home/torvalds/v2.5/akpm
into home.transmeta.com:/home/torvalds/v2.5/linux
Diffstat (limited to 'include/asm-alpha')
-rw-r--r--include/asm-alpha/pgalloc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-alpha/pgalloc.h b/include/asm-alpha/pgalloc.h
index fc675efac381..b34194c3d96c 100644
--- a/include/asm-alpha/pgalloc.h
+++ b/include/asm-alpha/pgalloc.h
@@ -40,7 +40,7 @@ pgd_free(pgd_t *pgd)
static inline pmd_t *
pmd_alloc_one(struct mm_struct *mm, unsigned long address)
{
- pmd_t *ret = (pmd_t *)__get_free_page(GFP_KERNEL);
+ pmd_t *ret = (pmd_t *)__get_free_page(GFP_KERNEL|__GFP_REPEAT);
if (ret)
clear_page(ret);
return ret;