[PATCH 0/5] x86/entry: Break up common.c

Brian Gerst posted 5 patches 9 months, 1 week ago
There is a newer version of this series
arch/x86/entry/Makefile      |   8 +-
arch/x86/entry/common.c      | 524 -----------------------------------
arch/x86/entry/syscall_32.c  | 336 +++++++++++++++++++++-
arch/x86/entry/syscall_64.c  | 116 +++++++-
arch/x86/entry/syscall_x32.c |  25 --
arch/x86/kernel/process.c    |   5 +
arch/x86/xen/enlighten_pv.c  |  46 +++
include/xen/xen-ops.h        |  19 ++
8 files changed, 522 insertions(+), 557 deletions(-)
delete mode 100644 arch/x86/entry/common.c
delete mode 100644 arch/x86/entry/syscall_x32.c
[PATCH 0/5] x86/entry: Break up common.c
Posted by Brian Gerst 9 months, 1 week ago
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.

This is code reorganization only, no functional changes.

Brian Gerst (5):
  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()

 arch/x86/entry/Makefile      |   8 +-
 arch/x86/entry/common.c      | 524 -----------------------------------
 arch/x86/entry/syscall_32.c  | 336 +++++++++++++++++++++-
 arch/x86/entry/syscall_64.c  | 116 +++++++-
 arch/x86/entry/syscall_x32.c |  25 --
 arch/x86/kernel/process.c    |   5 +
 arch/x86/xen/enlighten_pv.c  |  46 +++
 include/xen/xen-ops.h        |  19 ++
 8 files changed, 522 insertions(+), 557 deletions(-)
 delete mode 100644 arch/x86/entry/common.c
 delete mode 100644 arch/x86/entry/syscall_x32.c


base-commit: d08c0d55110b7cbac186e5fa94b0c6d5f4d7905e
-- 
2.48.1