public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v4 0/2] x86: Allow variable-sized event frame
@ 2025-05-12  6:43 Xin Li (Intel)
  2025-05-12  6:43 ` [PATCH v4 1/2] x86/fred: " Xin Li (Intel)
  2025-05-12  6:43 ` [PATCH v4 2/2] x86: Remove the padding space at top of the init stack Xin Li (Intel)
  0 siblings, 2 replies; 6+ messages in thread
From: Xin Li (Intel) @ 2025-05-12  6:43 UTC (permalink / raw)
  To: linux-kernel
  Cc: luto, tglx, mingo, bp, dave.hansen, x86, hpa, peterz, brgerst

This was initially posted as part of the FRED patch series and turned
down due to its unacceptable quality:
  https://lore.kernel.org/lkml/20230410081438.1750-31-xin3.li@intel.com/

Now comes another attempt to meet the bar.


A FRED event frame could contain different amount of information for
different event types, e.g., #MCE could push extra bytes of information,
or perhaps even for different instances of the same event type. Thus
the size of an event frame pushed by a FRED CPU is not fixed and the
address of a pt_regs structure that is used to save the user level
context of current task is not at a fixed offset from top of current
task kernel stack.

This patch set adds a new field named 'user_pt_regs' in the thread_info
structure to save the address of user level context pt_regs structure,
thus to eliminate the need of any advance information of event frame
size and allow a FRED CPU to push variable-sized event frame.

With the above change, we can remove the padding space at top of the
init stack because there is no user level context for init task.


Link to v3: https://lore.kernel.org/lkml/20250321053735.2479875-1-xin@zytor.com/

Change in v4:
* Drop the patch that zaps TOP_OF_KERNEL_STACK_PADDING on x86_64
  (Brian Gerst, hpa).

Change in v3:
* Replace "(struct pt_regs *)TOP_OF_INIT_STACK - 1" with
  (struct pt_regs *)__top_init_kernel_stack (Brian Gerst).
* Add declaration for __top_init_kernel_stack[] (Intel lkp).

Change in v2:
* Rebase on latest tip/master.


Xin Li (Intel) (2):
  x86/fred: Allow variable-sized event frame
  x86: Remove the padding space at top of the init stack

 arch/x86/entry/entry_fred.c        | 10 ++++++++++
 arch/x86/include/asm/processor.h   | 28 ++++++++++++++++++++--------
 arch/x86/include/asm/thread_info.h | 11 ++++++++---
 arch/x86/kernel/process.c          | 22 ++++++++++++++++++++++
 arch/x86/kernel/vmlinux.lds.S      |  7 +++++--
 include/linux/thread_info.h        |  1 +
 kernel/fork.c                      |  6 ++++++
 7 files changed, 72 insertions(+), 13 deletions(-)


base-commit: 8e3f385164626dc6bbf000decf04aa98e943e07e
-- 
2.49.0


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

end of thread, other threads:[~2025-05-13  5:03 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-12  6:43 [PATCH v4 0/2] x86: Allow variable-sized event frame Xin Li (Intel)
2025-05-12  6:43 ` [PATCH v4 1/2] x86/fred: " Xin Li (Intel)
2025-05-12  9:30   ` Peter Zijlstra
2025-05-12 12:10     ` Brian Gerst
2025-05-13  5:02       ` Xin Li
2025-05-12  6:43 ` [PATCH v4 2/2] x86: Remove the padding space at top of the init stack Xin Li (Intel)

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