From: Ingo Molnar Date: Wed, 30 Jan 2008 12:34:09 +0000 (+0100) Subject: x86: make ioremap() UC by default X-Git-Tag: v3.12-rc1~24034^2~24 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9af993a92623e022c176459fa6607a564b9a7eaf;p=kernel%2Fkernel-generic.git x86: make ioremap() UC by default Yes! A mere 120 c_p_a() fixing and rewriting patches later, we are now confident that we can enable UC by default for ioremap(), on x86 too. Every other architectures was doing this already. Doing so makes Linux more robust against MTRR mixups (which might go unnoticed if BIOS writers test other OSs only - where PAT might override bad MTRRs defaults). Signed-off-by: Ingo Molnar Signed-off-by: Thomas Gleixner --- diff --git a/include/asm-x86/io_64.h b/include/asm-x86/io_64.h index ee7a5c9..f64a59c 100644 --- a/include/asm-x86/io_64.h +++ b/include/asm-x86/io_64.h @@ -166,7 +166,7 @@ extern void __iomem *ioremap_cache(unsigned long offset, unsigned long size); */ static inline void __iomem *ioremap(unsigned long offset, unsigned long size) { - return ioremap_cache(offset, size); + return ioremap_nocache(offset, size); } extern void iounmap(volatile void __iomem *addr);