linux-um archives
 help / color / mirror / Atom feed
* [PATCH v2] um: add dummy ioremap and iounmap functions
@ 2017-05-25 15:42 Logan Gunthorpe
  2017-05-25 15:48 ` Richard Weinberger
  0 siblings, 1 reply; 11+ messages in thread
From: Logan Gunthorpe @ 2017-05-25 15:42 UTC (permalink / raw)
  To: linux-kernel, user-mode-linux-devel
  Cc: Logan Gunthorpe, Stephen Bates, Jeff Dike, Richard Weinberger,
	Al Viro

The user mode architecture does not provide ioremap or iounmap, and
because of this, the arch won't build when the functions are used in some
core libraries.

I have designs to use these functions in scatterlist.c where they'd
almost certainly never be called on the um architecture but it does need
to compile. Thus, if the function is ever hit it returns NULL.

Signed-off-by: Logan Gunthorpe <logang@deltatee.com>
Signed-off-by: Stephen Bates <sbates@raithlin.com>
Cc: Jeff Dike <jdike@addtoit.com>
Cc: Richard Weinberger <richard@nod.at>
Cc: Al Viro <viro@ZenIV.linux.org.uk>
---

Changes for v2:

* Per feedback from Al Viro, the ioremap function was changed to
  fail if it ever actually gets used.

 arch/um/include/asm/io.h | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
 create mode 100644 arch/um/include/asm/io.h

diff --git a/arch/um/include/asm/io.h b/arch/um/include/asm/io.h
new file mode 100644
index 0000000..f734673
--- /dev/null
+++ b/arch/um/include/asm/io.h
@@ -0,0 +1,17 @@
+#ifndef _ASM_UM_IO_H
+#define _ASM_UM_IO_H
+
+#define ioremap ioremap
+static inline void __iomem *ioremap(phys_addr_t offset, size_t size)
+{
+	return NULL;
+}
+
+#define iounmap iounmap
+static inline void iounmap(void __iomem *addr)
+{
+}
+
+#include <asm-generic/io.h>
+
+#endif
--
2.1.4


^ permalink raw reply related	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2017-06-21 21:36 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-25 15:42 [PATCH v2] um: add dummy ioremap and iounmap functions Logan Gunthorpe
2017-05-25 15:48 ` Richard Weinberger
2017-05-25 15:53   ` Logan Gunthorpe
2017-05-27 18:08     ` Geert Uytterhoeven
2017-05-27 18:15       ` Logan Gunthorpe
2017-06-08 18:53         ` Logan Gunthorpe
2017-06-08 19:17           ` Richard Weinberger
2017-06-21 21:25             ` Logan Gunthorpe
2017-06-21 21:30               ` Richard Weinberger
2017-06-21 21:31                 ` Logan Gunthorpe
2017-06-21 21:36                   ` Arnd Bergmann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox