From: Dave Hansen <dave.hansen@linux.intel.com>
To: torvalds@linux-foundation.org
Cc: x86@kernel.org, linux-kernel@vger.kernel.org,
Dave Hansen <dave.hansen@linux.intel.com>
Subject: [GIT PULL] x86/entry for 7.0-rc1
Date: Mon, 9 Feb 2026 13:09:24 -0800 [thread overview]
Message-ID: <20260209210924.2330728-1-dave.hansen@linux.intel.com> (raw)
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%)
next reply other threads:[~2026-02-09 21:09 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-09 21:09 Dave Hansen [this message]
2026-02-11 3:57 ` [GIT PULL] x86/entry for 7.0-rc1 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
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260209210924.2330728-1-dave.hansen@linux.intel.com \
--to=dave.hansen@linux.intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=torvalds@linux-foundation.org \
--cc=x86@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox