Skip to content

Commit e7ebdb5

Browse files
committed
Merge tag 'linux_kselftest-next-6.12-rc1-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest
Pull kselftest fix from Shuah Khan: "One urgent fix to vDSO as automated testing is failing due to this bug" * tag 'linux_kselftest-next-6.12-rc1-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest: selftests: vDSO: align stack for O2-optimized memcpy
2 parents 3efc573 + 4b721fc commit e7ebdb5

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tools/testing/selftests/vDSO/vdso_standalone_test_x86.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,8 @@ asm (
131131
"_start:\n\t"
132132
#ifdef __x86_64__
133133
"mov %rsp,%rdi\n\t"
134+
"and $-16,%rsp\n\t"
135+
"sub $8,%rsp\n\t"
134136
"jmp c_main"
135137
#else
136138
"push %esp\n\t"

0 commit comments

Comments
 (0)