All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/6] Clean up Shadow Call Stack patches for 5.8
@ 2020-05-15 17:27 ` Will Deacon
  0 siblings, 0 replies; 54+ messages in thread
From: Will Deacon @ 2020-05-15 17:27 UTC (permalink / raw)
  To: linux-kernel
  Cc: linux-arm-kernel, Will Deacon, Sami Tolvanen, Kees Cook,
	Catalin Marinas, Mark Rutland, Jann Horn, Ard Biesheuvel,
	Peter Zijlstra, kernel-team

Hi all,

Here's a series of cleanups I hacked together on top of a modified v13
of the Shadow Call Stack patches from Sami:

  https://lore.kernel.org/r/20200515172355.GD23334@willie-the-truck

The main changes are:

  * Move code out of arch/arm64 and into the core implementation
  * Store the full SCS stack pointer instead of the offset
  * Code simplification and general style things

I'd like to queue this on top early next week so that it can spend some
quality time in linux-next.

Cheers,

Will

Cc: Sami Tolvanen <samitolvanen@google.com>
Cc: Kees Cook <keescook@chromium.org>
Cc: Catalin Marinas <catalin.marinas@arm.com>
Cc: Mark Rutland <mark.rutland@am.com>
Cc: Jann Horn <jannh@google.com>
Cc: Ard Biesheuvel <ardb@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: <kernel-team@android.com>

--->8

Will Deacon (6):
  arm64: scs: Store absolute SCS stack pointer value in thread_info
  scs: Move accounting into alloc/free functions
  arm64: scs: Use 'scs_sp' register alias for x18
  scs: Move scs_overflow_check() out of architecture code
  scs: Remove references to asm/scs.h from core code
  scs: Move DEFINE_SCS macro into core code

 arch/Kconfig                         |  4 +--
 arch/arm64/include/asm/scs.h         | 29 ++++------------
 arch/arm64/include/asm/thread_info.h |  4 +--
 arch/arm64/kernel/asm-offsets.c      |  2 +-
 arch/arm64/kernel/entry.S            | 10 +++---
 arch/arm64/kernel/head.S             |  2 +-
 arch/arm64/kernel/process.c          |  2 --
 arch/arm64/kernel/scs.c              |  6 +---
 include/linux/scs.h                  | 16 +++++----
 kernel/sched/core.c                  |  3 ++
 kernel/scs.c                         | 52 +++++++++++++---------------
 11 files changed, 55 insertions(+), 75 deletions(-)

-- 
2.26.2.761.g0e0b3e54be-goog


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

end of thread, other threads:[~2020-05-18 16:49 UTC | newest]

Thread overview: 54+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-15 17:27 [PATCH 0/6] Clean up Shadow Call Stack patches for 5.8 Will Deacon
2020-05-15 17:27 ` Will Deacon
2020-05-15 17:27 ` [PATCH 1/6] arm64: scs: Store absolute SCS stack pointer value in thread_info Will Deacon
2020-05-15 17:27   ` Will Deacon
2020-05-18 11:37   ` Mark Rutland
2020-05-18 11:37     ` Mark Rutland
2020-05-18 13:37     ` Will Deacon
2020-05-18 13:37       ` Will Deacon
2020-05-15 17:27 ` [PATCH 2/6] scs: Move accounting into alloc/free functions Will Deacon
2020-05-15 17:27   ` Will Deacon
2020-05-18 11:38   ` Mark Rutland
2020-05-18 11:38     ` Mark Rutland
2020-05-18 13:39     ` Will Deacon
2020-05-18 13:39       ` Will Deacon
2020-05-15 17:27 ` [PATCH 3/6] arm64: scs: Use 'scs_sp' register alias for x18 Will Deacon
2020-05-15 17:27   ` Will Deacon
2020-05-18 11:55   ` Mark Rutland
2020-05-18 11:55     ` Mark Rutland
2020-05-18 13:03     ` Will Deacon
2020-05-18 13:03       ` Will Deacon
2020-05-18 13:13       ` Mark Rutland
2020-05-18 13:13         ` Mark Rutland
2020-05-15 17:27 ` [PATCH 4/6] scs: Move scs_overflow_check() out of architecture code Will Deacon
2020-05-15 17:27   ` Will Deacon
2020-05-18 12:12   ` Mark Rutland
2020-05-18 12:12     ` Mark Rutland
2020-05-18 13:23     ` Will Deacon
2020-05-18 13:23       ` Will Deacon
2020-05-18 13:32       ` Mark Rutland
2020-05-18 13:32         ` Mark Rutland
2020-05-18 15:31         ` Kees Cook
2020-05-18 15:31           ` Kees Cook
2020-05-18 16:44           ` Will Deacon
2020-05-18 16:44             ` Will Deacon
2020-05-15 17:27 ` [PATCH 5/6] scs: Remove references to asm/scs.h from core code Will Deacon
2020-05-15 17:27   ` Will Deacon
2020-05-18 12:15   ` Mark Rutland
2020-05-18 12:15     ` Mark Rutland
2020-05-15 17:27 ` [PATCH 6/6] scs: Move DEFINE_SCS macro into " Will Deacon
2020-05-15 17:27   ` Will Deacon
2020-05-18 12:14   ` Mark Rutland
2020-05-18 12:14     ` Mark Rutland
2020-05-18 13:26     ` Will Deacon
2020-05-18 13:26       ` Will Deacon
2020-05-18 13:37       ` Mark Rutland
2020-05-18 13:37         ` Mark Rutland
2020-05-15 20:42 ` [PATCH 0/6] Clean up Shadow Call Stack patches for 5.8 Sami Tolvanen
2020-05-15 20:42   ` Sami Tolvanen
2020-05-18 13:52   ` Will Deacon
2020-05-18 13:52     ` Will Deacon
2020-05-18 15:43     ` Sami Tolvanen
2020-05-18 15:43       ` Sami Tolvanen
2020-05-18 16:49       ` Will Deacon
2020-05-18 16:49         ` Will Deacon

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.