mirror of
https://github.com/torvalds/linux.git
synced 2026-04-30 04:22:32 -04:00
The s390 vDSO source directory was recently moved,
but this reference was not updated.
Fixes: c0087d807a ("s390/vdso: Rename vdso64 to vdso")
Signed-off-by: Thomas Weißschuh <thomas.weissschuh@linutronix.de>
Acked-by: Heiko Carstens <hca@linux.ibm.com>
Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
21 lines
751 B
ArmAsm
21 lines
751 B
ArmAsm
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (C) 2024 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
|
|
*/
|
|
|
|
#define __ASSEMBLY__
|
|
|
|
#if defined(__aarch64__)
|
|
#include "../../../../arch/arm64/kernel/vdso/vgetrandom-chacha.S"
|
|
#elif defined(__loongarch__)
|
|
#include "../../../../arch/loongarch/vdso/vgetrandom-chacha.S"
|
|
#elif defined(__powerpc__) || defined(__powerpc64__)
|
|
#include "../../../../arch/powerpc/kernel/vdso/vgetrandom-chacha.S"
|
|
#elif defined(__riscv) && __riscv_xlen == 64
|
|
#include "../../../../arch/riscv/kernel/vdso/vgetrandom-chacha.S"
|
|
#elif defined(__s390x__)
|
|
#include "../../../../arch/s390/kernel/vdso/vgetrandom-chacha.S"
|
|
#elif defined(__x86_64__)
|
|
#include "../../../../arch/x86/entry/vdso/vgetrandom-chacha.S"
|
|
#endif
|