linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 3.16] Backport of x86/vdso: Fix vDSO syscall fallback asm constraint regression
@ 2019-01-19 12:40 Matthew Whitehead
  2019-01-29 18:06 ` Ben Hutchings
  0 siblings, 1 reply; 2+ messages in thread
From: Matthew Whitehead @ 2019-01-19 12:40 UTC (permalink / raw)
  To: Andy Lutomirski, Ben Hutchings, linux-kernel; +Cc: Matthew Whitehead

On Fri, Jan 18, 2019 at 9:07 PM tedheadster <tedheadster@gmail.com> wrote:
>
> I do not see this problem with the upstream kernel, so 3.16 probably
> needs a missing upstream patch.

This was indeed fixed by Andy Lutomirski's follow-up patch "x86/vdso: Fix vDSO syscall fallback asm constraint regression". I tested part of Andy's patch and it resolved the failure.

The 3.16 LTS kernel does not have the tools/testing/selftests/x86/test_vdso.c code, so a partial patch is indicated, unless Andy wants to provide that.

Kindly backport to 3.16 LTS series.

reported-by: Matthew Whitehead <tedheadster@gmail.com>
tested-by: Matthew Whitehead <tedheadster@gmail.com>
---
 arch/x86/vdso/vclock_gettime.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/arch/x86/vdso/vclock_gettime.c b/arch/x86/vdso/vclock_gettime.c
index 00b5ea4..a3d5326 100644
--- a/arch/x86/vdso/vclock_gettime.c
+++ b/arch/x86/vdso/vclock_gettime.c
@@ -147,11 +147,11 @@ notrace static long vdso_fallback_gettime(long clock, struct timespec *ts)
 
 	asm (
 		"mov %%ebx, %%edx \n"
-		"mov %2, %%ebx \n"
+		"mov %[clock], %%ebx \n"
 		"call __kernel_vsyscall \n"
 		"mov %%edx, %%ebx \n"
 		: "=a" (ret), "=m" (*ts)
-		: "0" (__NR_clock_gettime), "g" (clock), "c" (ts)
+		: "0" (__NR_clock_gettime), [clock] "g" (clock), "c" (ts)
 		: "memory", "edx");
 	return ret;
 }
@@ -162,11 +162,11 @@ notrace static long vdso_fallback_gtod(struct timeval *tv, struct timezone *tz)
 
 	asm (
 		"mov %%ebx, %%edx \n"
-		"mov %2, %%ebx \n"
+		"mov %[tv], %%ebx \n"
 		"call __kernel_vsyscall \n"
 		"mov %%edx, %%ebx \n"
 		: "=a" (ret), "=m" (*tv), "=m" (*tz)
-		: "0" (__NR_gettimeofday), "g" (tv), "c" (tz)
+		: "0" (__NR_gettimeofday), [tv] "g" (tv), "c" (tz)
 		: "memory", "edx");
 	return ret;
 }
-- 
1.8.3.1


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

* Re: [PATCH 3.16] Backport of x86/vdso: Fix vDSO syscall fallback asm constraint regression
  2019-01-19 12:40 [PATCH 3.16] Backport of x86/vdso: Fix vDSO syscall fallback asm constraint regression Matthew Whitehead
@ 2019-01-29 18:06 ` Ben Hutchings
  0 siblings, 0 replies; 2+ messages in thread
From: Ben Hutchings @ 2019-01-29 18:06 UTC (permalink / raw)
  To: Matthew Whitehead, Andy Lutomirski, Ben Hutchings, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 948 bytes --]

On Tue, 2019-01-22 at 14:51 +0000, Matthew Whitehead wrote:
> On Fri, Jan 18, 2019 at 9:07 PM tedheadster <tedheadster@gmail.com>
> wrote:
> > I do not see this problem with the upstream kernel, so 3.16
> > probably
> > needs a missing upstream patch.
> 
> This was indeed fixed by Andy Lutomirski's follow-up patch "x86/vdso:
> Fix vDSO syscall fallback asm constraint regression". I tested part
> of Andy's patch and it resolved the failure.
> 
> The 3.16 LTS kernel does not have the
> tools/testing/selftests/x86/test_vdso.c code, so a partial patch is
> indicated, unless Andy wants to provide that.
> 
> Kindly backport to 3.16 LTS series.
[...]

I've queued this up now, thanks.

Ben.

-- 
Ben Hutchings
The obvious mathematical breakthrough [to break modern encryption]
would be development of an easy way to factor large prime numbers.
                                                           - Bill Gates



[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

end of thread, other threads:[~2019-01-29 18:06 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-19 12:40 [PATCH 3.16] Backport of x86/vdso: Fix vDSO syscall fallback asm constraint regression Matthew Whitehead
2019-01-29 18:06 ` Ben Hutchings

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).