diff options
author | Suresh Siddha <suresh.b.siddha@intel.com> | 2009-04-09 14:26:51 -0700 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-04-10 13:55:48 +0200 |
commit | b6ff32d9aaeeeecf98f9a852d715569183585312 (patch) | |
tree | cd7ae3c0d0e20d96874c95a36403f54720d05fa6 /arch/x86/mm/ioremap.c | |
parent | 3869c4aa18835c8c61b44bd0f3ace36e9d3b5bd0 (diff) | |
download | blackbird-op-linux-b6ff32d9aaeeeecf98f9a852d715569183585312.tar.gz blackbird-op-linux-b6ff32d9aaeeeecf98f9a852d715569183585312.zip |
x86, PAT: Consolidate code in pat_x_mtrr_type() and reserve_memtype()
Fix pat_x_mtrr_type() to use UC_MINUS when the mtrr type return UC. This
is to be consistent with ioremap() and ioremap_nocache() which uses
UC_MINUS.
Consolidate the code such that reserve_memtype() also uses
pat_x_mtrr_type() when the caller doesn't specify any special attribute
(non WB attribute).
Signed-off-by: Suresh Siddha <suresh.b.siddha@intel.com>
Signed-off-by: Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>
LKML-Reference: <20090409212708.939936000@intel.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/mm/ioremap.c')
-rw-r--r-- | arch/x86/mm/ioremap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/x86/mm/ioremap.c b/arch/x86/mm/ioremap.c index 329387eca12a..d4c4b2c4dbbe 100644 --- a/arch/x86/mm/ioremap.c +++ b/arch/x86/mm/ioremap.c @@ -375,7 +375,8 @@ static void __iomem *ioremap_default(resource_size_t phys_addr, * - UC_MINUS for non-WB-able memory with no other conflicting mappings * - Inherit from confliting mappings otherwise */ - err = reserve_memtype(phys_addr, phys_addr + size, -1, &flags); + err = reserve_memtype(phys_addr, phys_addr + size, + _PAGE_CACHE_WB, &flags); if (err < 0) return NULL; |