[PATCH] selftests: vDSO: getrandom: Fix path to s390 chacha implementation

Thomas Weißschuh posted 1 patch 3 weeks, 3 days ago
tools/testing/selftests/vDSO/vgetrandom-chacha.S | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] selftests: vDSO: getrandom: Fix path to s390 chacha implementation
Posted by Thomas Weißschuh 3 weeks, 3 days ago
The s390 vDSO source directory was recently moved,
but this reference was not updated.

Fixes: c0087d807ae8 ("s390/vdso: Rename vdso64 to vdso")
Signed-off-by: Thomas Weißschuh <thomas.weissschuh@linutronix.de>
---
 tools/testing/selftests/vDSO/vgetrandom-chacha.S | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/vDSO/vgetrandom-chacha.S b/tools/testing/selftests/vDSO/vgetrandom-chacha.S
index a4a82e1c28a9..8c3cbf4dfd6a 100644
--- a/tools/testing/selftests/vDSO/vgetrandom-chacha.S
+++ b/tools/testing/selftests/vDSO/vgetrandom-chacha.S
@@ -14,7 +14,7 @@
 #elif defined(__riscv) && __riscv_xlen == 64
 #include "../../../../arch/riscv/kernel/vdso/vgetrandom-chacha.S"
 #elif defined(__s390x__)
-#include "../../../../arch/s390/kernel/vdso64/vgetrandom-chacha.S"
+#include "../../../../arch/s390/kernel/vdso/vgetrandom-chacha.S"
 #elif defined(__x86_64__)
 #include "../../../../arch/x86/entry/vdso/vgetrandom-chacha.S"
 #endif

---
base-commit: 8f0b4cce4481fb22653697cced8d0d04027cb1e8
change-id: 20260115-vdso-s390-getrandom-d307095cba05

Best regards,
-- 
Thomas Weißschuh <thomas.weissschuh@linutronix.de>

Re: [PATCH] selftests: vDSO: getrandom: Fix path to s390 chacha implementation
Posted by Heiko Carstens 3 weeks, 3 days ago
On Thu, Jan 15, 2026 at 02:56:52PM +0100, Thomas Weißschuh wrote:
> The s390 vDSO source directory was recently moved,
> but this reference was not updated.
> 
> Fixes: c0087d807ae8 ("s390/vdso: Rename vdso64 to vdso")
> Signed-off-by: Thomas Weißschuh <thomas.weissschuh@linutronix.de>
> ---
>  tools/testing/selftests/vDSO/vgetrandom-chacha.S | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Should this go via s390 or will you take it?

In any case:
Acked-by: Heiko Carstens <hca@linux.ibm.com>
Re: [PATCH] selftests: vDSO: getrandom: Fix path to s390 chacha implementation
Posted by Thomas Weißschuh 3 weeks, 3 days ago
On Thu, Jan 15, 2026 at 03:05:57PM +0100, Heiko Carstens wrote:
> On Thu, Jan 15, 2026 at 02:56:52PM +0100, Thomas Weißschuh wrote:
> > The s390 vDSO source directory was recently moved,
> > but this reference was not updated.
> > 
> > Fixes: c0087d807ae8 ("s390/vdso: Rename vdso64 to vdso")
> > Signed-off-by: Thomas Weißschuh <thomas.weissschuh@linutronix.de>
> > ---
> >  tools/testing/selftests/vDSO/vgetrandom-chacha.S | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> Should this go via s390 or will you take it?

You can take it via s390.

The test framework I am using lives in a custom branch anyways, so I'll
can carry the patch for myself. And nobody else seems to run these tests.

> In any case:
> Acked-by: Heiko Carstens <hca@linux.ibm.com>

Thanks!