All of lore.kernel.org
 help / color / mirror / Atom feed
* + io-mapping-remove-fallback-for-writecombine.patch added to -mm tree
@ 2021-10-20 21:05 akpm
  0 siblings, 0 replies; only message in thread
From: akpm @ 2021-10-20 21:05 UTC (permalink / raw)
  To: chris, daniel.vetter, joonas.lahtinen, lucas.demarchi,
	mm-commits, peterz


The patch titled
     Subject: include/linux/io-mapping.h: remove fallback for writecombine
has been added to the -mm tree.  Its filename is
     io-mapping-remove-fallback-for-writecombine.patch

This patch should soon appear at
    https://ozlabs.org/~akpm/mmots/broken-out/io-mapping-remove-fallback-for-writecombine.patch
and later at
    https://ozlabs.org/~akpm/mmotm/broken-out/io-mapping-remove-fallback-for-writecombine.patch

Before you just go and hit "reply", please:
   a) Consider who else should be cc'ed
   b) Prefer to cc a suitable mailing list as well
   c) Ideally: find the original patch on the mailing list and do a
      reply-to-all to that, adding suitable additional cc's

*** Remember to use Documentation/process/submit-checklist.rst when testing your code ***

The -mm tree is included into linux-next and is updated
there every 3-4 working days

------------------------------------------------------
From: Lucas De Marchi <lucas.demarchi@intel.com>
Subject: include/linux/io-mapping.h: remove fallback for writecombine

The fallback was introduced in commit 80c33624e472 ("io-mapping: Fixup for
different names of writecombine") to fix the build on microblaze.

5 years later, it seems all archs now provide a pgprot_writecombine(), so
just remove the other possible fallbacks.  For microblaze,
pgprot_writecombine() is available since commit 97ccedd793ac ("microblaze:
Provide pgprot_device/writecombine macros for nommu").

This is build-tested on microblaze with a hack to always build
mm/io-mapping.o and without DIYing on an x86-only macro (_PAGE_CACHE_MASK)

Link: https://lkml.kernel.org/r/20211020204838.1142908-1-lucas.demarchi@intel.com
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 include/linux/io-mapping.h |    6 ------
 1 file changed, 6 deletions(-)

--- a/include/linux/io-mapping.h~io-mapping-remove-fallback-for-writecombine
+++ a/include/linux/io-mapping.h
@@ -132,13 +132,7 @@ io_mapping_init_wc(struct io_mapping *io
 
 	iomap->base = base;
 	iomap->size = size;
-#if defined(pgprot_noncached_wc) /* archs can't agree on a name ... */
-	iomap->prot = pgprot_noncached_wc(PAGE_KERNEL);
-#elif defined(pgprot_writecombine)
 	iomap->prot = pgprot_writecombine(PAGE_KERNEL);
-#else
-	iomap->prot = pgprot_noncached(PAGE_KERNEL);
-#endif
 
 	return iomap;
 }
_

Patches currently in -mm which might be from lucas.demarchi@intel.com are

io-mapping-remove-fallback-for-writecombine.patch
lib-string_helpers-add-linux-stringh-for-strlen.patch


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2021-10-20 21:05 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-20 21:05 + io-mapping-remove-fallback-for-writecombine.patch added to -mm tree akpm

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.