[PATCH v4 0/5] Consolidate IO memcpy functions

Julian Vetter posted 5 patches 2 months ago
There is a newer version of this series
arch/arm64/Kconfig             |   1 +
arch/arm64/kernel/io.c         |  87 --------------------------
arch/csky/Kconfig              |   1 +
arch/csky/kernel/Makefile      |   2 +-
arch/csky/kernel/io.c          |  91 ---------------------------
arch/loongarch/Kconfig         |   1 +
arch/loongarch/kernel/Makefile |   2 +-
arch/loongarch/kernel/io.c     |  94 ----------------------------
include/asm-generic/io.h       |   6 +-
lib/Kconfig                    |   3 +
lib/Makefile                   |   1 +
lib/io_copy.c                  | 110 +++++++++++++++++++++++++++++++++
12 files changed, 122 insertions(+), 277 deletions(-)
delete mode 100644 arch/csky/kernel/io.c
delete mode 100644 arch/loongarch/kernel/io.c
create mode 100644 lib/io_copy.c
[PATCH v4 0/5] Consolidate IO memcpy functions
Posted by Julian Vetter 2 months ago
Thank you again for your feedback. Sorry for the delay, I didn't see the
remarks you made on v2 of the patchset in regards to the
asm-generic/io.h. This patchset takes your remarks on v2 into account.

Signed-off-by: Julian Vetter <jvetter@kalrayinc.com>

---
Changes for v4:
- Replaced memcpy/memset in asm-generic/io.h by the new
  __memcpy_{to,from}io and __memset_io, so individual architectures can
  use it instead of using their own implementation.
---
Julian Vetter (5):
  Consolidate __memcpy_{to,from}io and __memset_io into a single lib
  Replace generic memcpy and memset by IO memcpy functions
  Use generic io memcpy functions on the arm64 architecture
  Use generic io memcpy functions on the csky architecture
  Use generic io memcpy functions on the loongarch architecture

 arch/arm64/Kconfig             |   1 +
 arch/arm64/kernel/io.c         |  87 --------------------------
 arch/csky/Kconfig              |   1 +
 arch/csky/kernel/Makefile      |   2 +-
 arch/csky/kernel/io.c          |  91 ---------------------------
 arch/loongarch/Kconfig         |   1 +
 arch/loongarch/kernel/Makefile |   2 +-
 arch/loongarch/kernel/io.c     |  94 ----------------------------
 include/asm-generic/io.h       |   6 +-
 lib/Kconfig                    |   3 +
 lib/Makefile                   |   1 +
 lib/io_copy.c                  | 110 +++++++++++++++++++++++++++++++++
 12 files changed, 122 insertions(+), 277 deletions(-)
 delete mode 100644 arch/csky/kernel/io.c
 delete mode 100644 arch/loongarch/kernel/io.c
 create mode 100644 lib/io_copy.c

-- 
2.34.1