All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 0/3] vmalloc kernel mapping and relocatable kernel
@ 2020-05-24  8:52 Alexandre Ghiti
  2020-05-24  8:52 ` [PATCH v3 1/3] riscv: Move kernel mapping to vmalloc zone Alexandre Ghiti
                   ` (2 more replies)
  0 siblings, 3 replies; 30+ messages in thread
From: Alexandre Ghiti @ 2020-05-24  8:52 UTC (permalink / raw)
  To: Michael Ellerman, Benjamin Herrenschmidt, Paul Mackerras,
	Paul Walmsley, Palmer Dabbelt, Albert Ou, Anup Patel,
	Atish Patra, Zong Li, linux-kernel, linuxppc-dev, linux-riscv
  Cc: Alexandre Ghiti

This patchset originally implemented relocatable kernel support but now
also moves the kernel mapping into the vmalloc zone.

The first patch explains why we need to move the kernel into vmalloc
zone (instead of memcpying it around). That patch should ease KASLR
implementation a lot.

The second patch allows to build relocatable kernels but is not selected
by default.

The third patch takes advantage of an already existing powerpc script
that checks relocations at compile-time, and uses it for riscv.

Alexandre Ghiti (3):
  riscv: Move kernel mapping to vmalloc zone
  riscv: Introduce CONFIG_RELOCATABLE
  arch, scripts: Add script to check relocations at compile time

 arch/powerpc/tools/relocs_check.sh |  18 +----
 arch/riscv/Kconfig                 |  12 +++
 arch/riscv/Makefile                |   5 +-
 arch/riscv/Makefile.postlink       |  36 +++++++++
 arch/riscv/boot/loader.lds.S       |   3 +-
 arch/riscv/include/asm/page.h      |  10 ++-
 arch/riscv/include/asm/pgtable.h   |  37 ++++++---
 arch/riscv/kernel/head.S           |   3 +-
 arch/riscv/kernel/module.c         |   4 +-
 arch/riscv/kernel/vmlinux.lds.S    |   9 ++-
 arch/riscv/mm/Makefile             |   4 +
 arch/riscv/mm/init.c               | 121 +++++++++++++++++++++++++----
 arch/riscv/mm/physaddr.c           |   2 +-
 arch/riscv/tools/relocs_check.sh   |  26 +++++++
 scripts/relocs_check.sh            |  20 +++++
 15 files changed, 258 insertions(+), 52 deletions(-)
 create mode 100644 arch/riscv/Makefile.postlink
 create mode 100755 arch/riscv/tools/relocs_check.sh
 create mode 100755 scripts/relocs_check.sh

-- 
2.20.1


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

end of thread, other threads:[~2020-05-29 12:34 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-24  8:52 [PATCH v3 0/3] vmalloc kernel mapping and relocatable kernel Alexandre Ghiti
2020-05-24  8:52 ` [PATCH v3 1/3] riscv: Move kernel mapping to vmalloc zone Alexandre Ghiti
2020-05-26  9:43   ` Zong Li
2020-05-26  9:43     ` Zong Li
2020-05-26  9:43     ` Zong Li
2020-05-26 17:06     ` Alex Ghiti
2020-05-26 17:06       ` Alex Ghiti
2020-05-26 17:06       ` Alex Ghiti
2020-05-27  6:05       ` Zong Li
2020-05-27  6:05         ` Zong Li
2020-05-27  6:05         ` Zong Li
2020-05-27  7:29         ` Alex Ghiti
2020-05-27  7:29           ` Alex Ghiti
2020-05-27  7:29           ` Alex Ghiti
2020-05-28 13:07           ` Alex Ghiti
2020-05-28 13:07             ` Alex Ghiti
2020-05-28 13:07             ` Alex Ghiti
2020-05-27  7:33   ` kbuild test robot
2020-05-27  7:33     ` kbuild test robot
2020-05-24  8:52 ` [PATCH v3 2/3] riscv: Introduce CONFIG_RELOCATABLE Alexandre Ghiti
2020-05-26  9:05   ` Zong Li
2020-05-26  9:05     ` Zong Li
2020-05-26  9:05     ` Zong Li
2020-05-29 12:04   ` Anup Patel
2020-05-29 12:04     ` Anup Patel
2020-05-29 12:04     ` Anup Patel
2020-05-24  8:52 ` [PATCH v3 3/3] arch, scripts: Add script to check relocations at compile time Alexandre Ghiti
2020-05-29 12:08   ` Anup Patel
2020-05-29 12:08     ` Anup Patel
2020-05-29 12:08     ` Anup Patel

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.