Re: [PATCH v2 24/25] arch: remove ioremap_wt, replace with arch_memremap

2015-07-29 Thread Dan Williams
On Mon, Jul 27, 2015 at 1:03 AM, Christoph Hellwig wrote: >> +++ b/arch/frv/include/asm/io.h >> @@ -17,8 +17,6 @@ >> >> #ifdef __KERNEL__ >> >> -#define ARCH_HAS_IOREMAP_WT >> - >> #include >> #include >> #include >> @@ -267,20 +265,17 @@ static inline void __iomem

Re: [PATCH v2 24/25] arch: remove ioremap_wt, replace with arch_memremap

2015-07-29 Thread Dan Williams
On Mon, Jul 27, 2015 at 1:03 AM, Christoph Hellwig h...@lst.de wrote: +++ b/arch/frv/include/asm/io.h @@ -17,8 +17,6 @@ #ifdef __KERNEL__ -#define ARCH_HAS_IOREMAP_WT - #include linux/types.h #include asm/virtconvert.h #include asm/string.h @@ -267,20 +265,17 @@ static inline void

Re: [PATCH v2 24/25] arch: remove ioremap_wt, replace with arch_memremap

2015-07-27 Thread Christoph Hellwig
> +++ b/arch/frv/include/asm/io.h > @@ -17,8 +17,6 @@ > > #ifdef __KERNEL__ > > -#define ARCH_HAS_IOREMAP_WT > - > #include > #include > #include > @@ -267,20 +265,17 @@ static inline void __iomem *ioremap_nocache(unsigned > long physaddr, unsigned lon > return

Re: [PATCH v2 24/25] arch: remove ioremap_wt, replace with arch_memremap

2015-07-27 Thread Christoph Hellwig
+++ b/arch/frv/include/asm/io.h @@ -17,8 +17,6 @@ #ifdef __KERNEL__ -#define ARCH_HAS_IOREMAP_WT - #include linux/types.h #include asm/virtconvert.h #include asm/string.h @@ -267,20 +265,17 @@ static inline void __iomem *ioremap_nocache(unsigned long physaddr, unsigned lon

Re: [PATCH v2 24/25] arch: remove ioremap_wt, replace with arch_memremap

2015-07-26 Thread Christoph Hellwig
Documentation/x86/pat.txt needs to be updated for this change as well. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at

Re: [PATCH v2 24/25] arch: remove ioremap_wt, replace with arch_memremap

2015-07-26 Thread Christoph Hellwig
Documentation/x86/pat.txt needs to be updated for this change as well. -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at

[PATCH v2 24/25] arch: remove ioremap_wt, replace with arch_memremap

2015-07-24 Thread Dan Williams
Now that all call sites for ioremap_wt() have been converted to memremap(MEMREMAP_WT) we can now proceed with removing the implementation in the archs. This amounts to replacing the per-arch ioremap_wt() implementation with arch_memremap. Cc: Arnd Bergmann Cc: Russell King Cc: Tony Luck Cc:

[PATCH v2 24/25] arch: remove ioremap_wt, replace with arch_memremap

2015-07-24 Thread Dan Williams
Now that all call sites for ioremap_wt() have been converted to memremap(MEMREMAP_WT) we can now proceed with removing the implementation in the archs. This amounts to replacing the per-arch ioremap_wt() implementation with arch_memremap. Cc: Arnd Bergmann a...@arndb.de Cc: Russell King