aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIngo Molnar <[email protected]>2008-04-18 21:32:22 +0200
committerIngo Molnar <[email protected]>2008-04-18 23:40:49 +0200
commitd1a4be630fb068f251d64b62919f143c49ca8057 (patch)
treefbd9727874d3377e2c2d0699fabb6c12427408a9
parent2cca775baecbfede2fec20c99add709232311fe7 (diff)
x86 PAT: fix mmap() of holes
do not return a -EINVAL when mmap()-ing PCI holes. Signed-off-by: Ingo Molnar <[email protected]> Acked-by: Venkatesh Pallipadi <[email protected]> Acked-by: Suresh Siddha <[email protected]> Acked-by: H. Peter Anvin <[email protected]> Acked-by: Thomas Gleixner <[email protected]> Acked-by: Arjan van de Ven <[email protected]>
-rw-r--r--arch/x86/mm/pageattr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/mm/pageattr.c b/arch/x86/mm/pageattr.c
index 7d9517abc9af..f7823a172868 100644
--- a/arch/x86/mm/pageattr.c
+++ b/arch/x86/mm/pageattr.c
@@ -542,7 +542,7 @@ static int __change_page_attr(struct cpa_data *cpa, int primary)
repeat:
kpte = lookup_address(address, &level);
if (!kpte)
- return primary ? -EINVAL : 0;
+ return 0;
old_pte = *kpte;
if (!pte_val(old_pte)) {