diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2025-09-04 11:49:04 +0200 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2025-09-23 16:17:59 -0700 |
| commit | b9baf09512756943ced419aa5ec71bf435681e09 (patch) | |
| tree | dcc5bf0d072a638918c9ad0d5bb37b7245cebb0d /linux-user/ppc | |
| parent | ee3b39c92454b0360a614bd017eb5e545ea61f4e (diff) | |
| download | focaccia-qemu-b9baf09512756943ced419aa5ec71bf435681e09.tar.gz focaccia-qemu-b9baf09512756943ced419aa5ec71bf435681e09.zip | |
linux-user: Populate sigreturn_region_{start,end} in all vdso.S
Mark the regions which contain sigreturn syscalls within each vdso. Rebuild the shared objects. Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'linux-user/ppc')
| -rwxr-xr-x | linux-user/ppc/vdso-32.so | bin | 3020 -> 3140 bytes | |||
| -rwxr-xr-x | linux-user/ppc/vdso-64.so | bin | 3896 -> 4048 bytes | |||
| -rwxr-xr-x | linux-user/ppc/vdso-64le.so | bin | 3896 -> 4048 bytes | |||
| -rw-r--r-- | linux-user/ppc/vdso.S | 2 |
4 files changed, 2 insertions, 0 deletions
diff --git a/linux-user/ppc/vdso-32.so b/linux-user/ppc/vdso-32.so index 0dc55e0ddd..03476052fb 100755 --- a/linux-user/ppc/vdso-32.so +++ b/linux-user/ppc/vdso-32.so Binary files differdiff --git a/linux-user/ppc/vdso-64.so b/linux-user/ppc/vdso-64.so index ac1ab2582e..b89f2a0e01 100755 --- a/linux-user/ppc/vdso-64.so +++ b/linux-user/ppc/vdso-64.so Binary files differdiff --git a/linux-user/ppc/vdso-64le.so b/linux-user/ppc/vdso-64le.so index 424abb4290..22499d2701 100755 --- a/linux-user/ppc/vdso-64le.so +++ b/linux-user/ppc/vdso-64le.so Binary files differdiff --git a/linux-user/ppc/vdso.S b/linux-user/ppc/vdso.S index 2e79ea9808..e9256a2dea 100644 --- a/linux-user/ppc/vdso.S +++ b/linux-user/ppc/vdso.S @@ -220,6 +220,7 @@ endf __kernel_sync_dicache nop +sigreturn_region_start: __kernel_sigtramp_rt: raw_syscall __NR_rt_sigreturn endf __kernel_sigtramp_rt @@ -235,5 +236,6 @@ __kernel_sigtramp32: raw_syscall __NR_sigreturn endf __kernel_sigtramp32 #endif +sigreturn_region_end: .cfi_endproc |