aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tools/testing/selftests/rcutorture
diff options
context:
space:
mode:
authorThomas Weißschuh <linux@weissschuh.net>2023-10-16 00:25:14 +0200
committerNeeraj Upadhyay (AMD) <neeraj.iitr10@gmail.com>2023-11-23 11:58:18 +0530
commit454723b1615f7423fcba0b8f722cef4992a1846f (patch)
tree2fef3cd3e72e97a2a7a3b0b6d6041926261824a6 /tools/testing/selftests/rcutorture
parentlocktorture: Increase Hamming distance between call_rcu_chain and rcu_call_chains (diff)
downloadwireguard-linux-454723b1615f7423fcba0b8f722cef4992a1846f.tar.xz
wireguard-linux-454723b1615f7423fcba0b8f722cef4992a1846f.zip
rcutorture: add nolibc init support for mips, ppc and rv64
Use nolibc for all support architectures. Signed-off-by: Thomas Weißschuh <linux@weissschuh.net> Signed-off-by: Paul E. McKenney <paulmck@kernel.org> Signed-off-by: Neeraj Upadhyay (AMD) <neeraj.iitr10@gmail.com>
Diffstat (limited to 'tools/testing/selftests/rcutorture')
-rwxr-xr-xtools/testing/selftests/rcutorture/bin/mkinitrd.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/testing/selftests/rcutorture/bin/mkinitrd.sh b/tools/testing/selftests/rcutorture/bin/mkinitrd.sh
index 212c52ca90b5..f3f867129560 100755
--- a/tools/testing/selftests/rcutorture/bin/mkinitrd.sh
+++ b/tools/testing/selftests/rcutorture/bin/mkinitrd.sh
@@ -67,7 +67,10 @@ ___EOF___
# build using nolibc on supported archs (smaller executable) and fall
# back to regular glibc on other ones.
if echo -e "#if __x86_64__||__i386__||__i486__||__i586__||__i686__" \
- "||__ARM_EABI__||__aarch64__||__s390x__||__loongarch__\nyes\n#endif" \
+ "||__ARM_EABI__||__aarch64__||(__mips__ && _ABIO32)" \
+ "||__powerpc__||(__riscv && __riscv_xlen == 64)" \
+ "||__s390x__||__loongarch__" \
+ "\nyes\n#endif" \
| ${CROSS_COMPILE}gcc -E -nostdlib -xc - \
| grep -q '^yes'; then
# architecture supported by nolibc