The Linux Kernel Mailing List
 help / color / mirror / Atom feed
* [GIT PULL] x86/entry for 7.0-rc1
@ 2026-02-09 21:09 Dave Hansen
  2026-02-11  3:57 ` pr-tracker-bot
  2026-02-11  4:24 ` Linus Torvalds
  0 siblings, 2 replies; 13+ messages in thread
From: Dave Hansen @ 2026-02-09 21:09 UTC (permalink / raw)
  To: torvalds; +Cc: x86, linux-kernel, Dave Hansen

Hi Linus,

Please pull some x86/entry changes for 7.0-rc1. This is entirely
composed of a set of long overdue VDSO cleanups. They makes the VDSO
build much more logical and zap quite a bit of old cruft. It also
results in a coveted net-code-removal diffstat.

There have been a few bumps along the way with this series, thus the
bug fixes on top. But nothing too scary.

--

The following changes since commit 0f61b1860cc3f52aef9036d7235ed1f017632193:

  Linux 6.19-rc5 (2026-01-11 17:03:14 -1000)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git tags/x86_entry_for_7.0-rc1

for you to fetch changes up to ce9b1c10c3f1c723c3cc7b63aa8331fdb6c57a04:

  x86/entry/vdso: Add vdso2c to .gitignore (2026-01-27 23:27:51 +0100)

----------------------------------------------------------------
 * VDSO rework and cleanups

----------------------------------------------------------------
Borislav Petkov (AMD) (1):
      x86/entry/vdso: Add vdso2c to .gitignore

H. Peter Anvin (13):
      x86/entry/vdso: Rename vdso_image_* to vdso*_image
      x86/entry/vdso: Move vdso2c to arch/x86/tools
      x86/entry/vdso: Refactor the vdso build
      x86/entry/vdso32: Don't rely on int80_landing_pad for adjusting ip
      x86/entry/vdso32: Remove SYSCALL_ENTER_KERNEL macro in sigreturn.S
      x86/entry/vdso32: Remove open-coded DWARF in sigreturn.S
      x86/entry/vdso: Include GNU_PROPERTY and GNU_STACK PHDRs
      x86/vdso: Abstract out vdso system call internals
      x86/cpufeature: Replace X86_FEATURE_SYSENTER32 with X86_FEATURE_SYSFAST32
      x86/entry/vdso32: When using int $0x80, use it directly
      x86/entry/vdso: Update the object paths for "make vdso_install"
      x86/entry/vdso: Fix filtering of vdso compiler flags
      x86/entry/vdso/selftest: Update location of vgetrandom-chacha.S

Lukas Bulwahn (1):
      MAINTAINERS: Adjust vdso file entry in INTEL SGX

Nathan Chancellor (1):
      x86/entry/vdso32: Omit '.cfi_offset eflags' for LLVM < 16

 MAINTAINERS                                        |   2 +-
 arch/x86/Kconfig.cpufeatures                       |   8 +
 arch/x86/Makefile                                  |   8 +-
 arch/x86/entry/syscall_32.c                        |   2 +-
 arch/x86/entry/vdso/.gitignore                     |  11 +-
 arch/x86/entry/vdso/Makefile                       | 162 +--------------------
 arch/x86/entry/vdso/common/Makefile.include        |  89 +++++++++++
 arch/x86/entry/vdso/{vdso-note.S => common/note.S} |   5 +-
 arch/x86/entry/vdso/{ => common}/vclock_gettime.c  |   0
 arch/x86/entry/vdso/{ => common}/vdso-layout.lds.S |  38 +++--
 arch/x86/entry/vdso/{ => common}/vgetcpu.c         |   0
 arch/x86/entry/vdso/vdso32/Makefile                |  24 +++
 arch/x86/entry/vdso/vdso32/note.S                  |  19 +--
 arch/x86/entry/vdso/vdso32/sigreturn.S             | 160 ++++++--------------
 arch/x86/entry/vdso/vdso32/system_call.S           |  22 ++-
 arch/x86/entry/vdso/vdso32/vclock_gettime.c        |   5 +-
 arch/x86/entry/vdso/vdso32/vdso32.lds.S            |   2 +-
 arch/x86/entry/vdso/vdso32/vgetcpu.c               |   4 +-
 arch/x86/entry/vdso/vdso64/Makefile                |  46 ++++++
 arch/x86/entry/vdso/vdso64/note.S                  |   1 +
 arch/x86/entry/vdso/vdso64/vclock_gettime.c        |   1 +
 .../entry/vdso/{vdso.lds.S => vdso64/vdso64.lds.S} |   2 +-
 arch/x86/entry/vdso/{ => vdso64}/vdsox32.lds.S     |   2 +-
 arch/x86/entry/vdso/vdso64/vgetcpu.c               |   1 +
 .../entry/vdso/{ => vdso64}/vgetrandom-chacha.S    |   0
 arch/x86/entry/vdso/{ => vdso64}/vgetrandom.c      |   2 +-
 arch/x86/entry/vdso/{ => vdso64}/vsgx.S            |   0
 arch/x86/entry/vdso/vma.c                          |  24 ++-
 arch/x86/include/asm/cpufeatures.h                 |   2 +-
 arch/x86/include/asm/dwarf2.h                      |   1 +
 arch/x86/include/asm/elf.h                         |   2 +-
 arch/x86/include/asm/vdso.h                        |   6 +-
 arch/x86/include/asm/vdso/gettimeofday.h           | 108 +-------------
 arch/x86/include/asm/vdso/sys_call.h               | 105 +++++++++++++
 arch/x86/kernel/asm-offsets.c                      |   6 +
 arch/x86/kernel/cpu/centaur.c                      |   3 -
 arch/x86/kernel/cpu/common.c                       |   8 +
 arch/x86/kernel/cpu/intel.c                        |   4 +-
 arch/x86/kernel/cpu/zhaoxin.c                      |   4 +-
 arch/x86/kernel/fred.c                             |   2 +-
 arch/x86/kernel/process_64.c                       |   6 +-
 arch/x86/kernel/signal_32.c                        |   4 +-
 arch/x86/tools/.gitignore                          |   1 +
 arch/x86/tools/Makefile                            |  15 +-
 arch/x86/{entry/vdso => tools}/vdso2c.c            |   0
 arch/x86/{entry/vdso => tools}/vdso2c.h            |   0
 arch/x86/xen/setup.c                               |  28 ++--
 arch/x86/xen/smp_pv.c                              |   5 +-
 arch/x86/xen/xen-ops.h                             |   1 -
 tools/testing/selftests/vDSO/vgetrandom-chacha.S   |   2 +-
 50 files changed, 459 insertions(+), 494 deletions(-)
 create mode 100644 arch/x86/entry/vdso/common/Makefile.include
 rename arch/x86/entry/vdso/{vdso-note.S => common/note.S} (62%)
 rename arch/x86/entry/vdso/{ => common}/vclock_gettime.c (100%)
 rename arch/x86/entry/vdso/{ => common}/vdso-layout.lds.S (77%)
 rename arch/x86/entry/vdso/{ => common}/vgetcpu.c (100%)
 create mode 100644 arch/x86/entry/vdso/vdso32/Makefile
 create mode 100644 arch/x86/entry/vdso/vdso64/Makefile
 create mode 100644 arch/x86/entry/vdso/vdso64/note.S
 create mode 100644 arch/x86/entry/vdso/vdso64/vclock_gettime.c
 rename arch/x86/entry/vdso/{vdso.lds.S => vdso64/vdso64.lds.S} (94%)
 rename arch/x86/entry/vdso/{ => vdso64}/vdsox32.lds.S (92%)
 create mode 100644 arch/x86/entry/vdso/vdso64/vgetcpu.c
 rename arch/x86/entry/vdso/{ => vdso64}/vgetrandom-chacha.S (100%)
 rename arch/x86/entry/vdso/{ => vdso64}/vgetrandom.c (91%)
 rename arch/x86/entry/vdso/{ => vdso64}/vsgx.S (100%)
 create mode 100644 arch/x86/include/asm/vdso/sys_call.h
 rename arch/x86/{entry/vdso => tools}/vdso2c.c (100%)
 rename arch/x86/{entry/vdso => tools}/vdso2c.h (100%)

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

end of thread, other threads:[~2026-02-11 19:23 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-09 21:09 [GIT PULL] x86/entry for 7.0-rc1 Dave Hansen
2026-02-11  3:57 ` pr-tracker-bot
2026-02-11  4:24 ` Linus Torvalds
2026-02-11  4:39   ` Linus Torvalds
2026-02-11  6:15     ` H. Peter Anvin
2026-02-11  6:34       ` Linus Torvalds
2026-02-11 16:30         ` H. Peter Anvin
2026-02-11 17:05           ` Linus Torvalds
2026-02-11 17:39             ` H. Peter Anvin
2026-02-11 17:52               ` Linus Torvalds
2026-02-11 19:22                 ` H. Peter Anvin
2026-02-11 18:16   ` Andy Shevchenko
2026-02-11 18:35     ` Linus Torvalds

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