The Linux Kernel Mailing List
 help / color / mirror / Atom feed
* [PATCH v2 0/7] x86/entry: Break up common.c
@ 2025-03-14 15:12 Brian Gerst
  2025-03-14 15:12 ` [PATCH v2 1/7] x86/xen: Move Xen upcall handler Brian Gerst
                   ` (7 more replies)
  0 siblings, 8 replies; 27+ messages in thread
From: Brian Gerst @ 2025-03-14 15:12 UTC (permalink / raw)
  To: linux-kernel, x86
  Cc: Ingo Molnar, H . Peter Anvin, Thomas Gleixner, Borislav Petkov,
	Andy Lutomirski, Juergen Gross, Boris Ostrovsky, Brian Gerst

The syscall dispatch code originally was put into entry/common.c so that
common code for entry from and exit to userspace could be inlined.  That
entry code has since been moved to the core kernel.  There is no longer
a need to keep this code together, so move it to more appropriate
places.

No functional changes.

Changes in v2:
- Move Xen inlines to enlighten_pv.c (Juergen Gross)
- Don't copy comments on the code's origins.  Git history has that
  information already (Sohil Mehta)
- Added cleanup patches (Sohil Mehta)

Brian Gerst (7):
  x86/xen: Move Xen upcall handler
  x86/syscall/32: Move 32-bit syscall dispatch code
  x86/syscall/64: Move 64-bit syscall dispatch code
  x86/syscall/x32: Move x32 syscall table
  x86/syscall: Move sys_ni_syscall()
  x86/syscall: Remove stray semicolons
  x86/syscall/32: Add comment to conditional

 arch/x86/entry/Makefile      |   8 +-
 arch/x86/entry/common.c      | 524 -----------------------------------
 arch/x86/entry/syscall_32.c  | 332 +++++++++++++++++++++-
 arch/x86/entry/syscall_64.c  | 111 +++++++-
 arch/x86/entry/syscall_x32.c |  25 --
 arch/x86/kernel/process.c    |   5 +
 arch/x86/xen/enlighten_pv.c  |  69 +++++
 7 files changed, 515 insertions(+), 559 deletions(-)
 delete mode 100644 arch/x86/entry/common.c
 delete mode 100644 arch/x86/entry/syscall_x32.c


base-commit: d08c0d55110b7cbac186e5fa94b0c6d5f4d7905e
-- 
2.48.1


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

end of thread, other threads:[~2025-03-19 11:03 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-14 15:12 [PATCH v2 0/7] x86/entry: Break up common.c Brian Gerst
2025-03-14 15:12 ` [PATCH v2 1/7] x86/xen: Move Xen upcall handler Brian Gerst
2025-03-14 15:16   ` Juergen Gross
2025-03-16 11:01   ` [tip: x86/cpu] " tip-bot2 for Brian Gerst
2025-03-19 11:03   ` [tip: x86/core] " tip-bot2 for Brian Gerst
2025-03-14 15:12 ` [PATCH v2 2/7] x86/syscall/32: Move 32-bit syscall dispatch code Brian Gerst
2025-03-16 11:01   ` [tip: x86/cpu] " tip-bot2 for Brian Gerst
2025-03-19 11:03   ` [tip: x86/core] " tip-bot2 for Brian Gerst
2025-03-14 15:12 ` [PATCH v2 3/7] x86/syscall/64: Move 64-bit " Brian Gerst
2025-03-16 11:01   ` [tip: x86/cpu] " tip-bot2 for Brian Gerst
2025-03-19 11:03   ` [tip: x86/core] " tip-bot2 for Brian Gerst
2025-03-14 15:12 ` [PATCH v2 4/7] x86/syscall/x32: Move x32 syscall table Brian Gerst
2025-03-16 11:01   ` [tip: x86/cpu] " tip-bot2 for Brian Gerst
2025-03-19 11:03   ` [tip: x86/core] " tip-bot2 for Brian Gerst
2025-03-14 15:12 ` [PATCH v2 5/7] x86/syscall: Move sys_ni_syscall() Brian Gerst
2025-03-16 11:01   ` [tip: x86/cpu] " tip-bot2 for Brian Gerst
2025-03-19 11:03   ` [tip: x86/core] " tip-bot2 for Brian Gerst
2025-03-14 15:12 ` [PATCH v2 6/7] x86/syscall: Remove stray semicolons Brian Gerst
2025-03-16 11:01   ` [tip: x86/cpu] " tip-bot2 for Brian Gerst
2025-03-19 11:03   ` [tip: x86/core] " tip-bot2 for Brian Gerst
2025-03-14 15:12 ` [PATCH v2 7/7] x86/syscall/32: Add comment to conditional Brian Gerst
2025-03-14 17:19   ` Sohil Mehta
2025-03-14 17:43     ` Brian Gerst
2025-03-14 18:30       ` H. Peter Anvin
2025-03-16 11:01   ` [tip: x86/cpu] " tip-bot2 for Brian Gerst
2025-03-19 11:03   ` [tip: x86/core] " tip-bot2 for Brian Gerst
2025-03-14 17:22 ` [PATCH v2 0/7] x86/entry: Break up common.c Sohil Mehta

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