diff options
author | Ingo Molnar <[email protected]> | 2008-04-18 21:32:22 +0200 |
---|---|---|
committer | Ingo Molnar <[email protected]> | 2008-04-18 23:40:49 +0200 |
commit | d1a4be630fb068f251d64b62919f143c49ca8057 (patch) | |
tree | fbd9727874d3377e2c2d0699fabb6c12427408a9 | |
parent | 2cca775baecbfede2fec20c99add709232311fe7 (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.c | 2 |
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)) { |