Skip to content

Commit 103d567

Browse files
paulmckrcuNeeraj Upadhyay (AMD)
authored andcommitted
torture: Default --no-clocksourcewd on arm64
Because arm64 does not support CONFIG_CLOCKSOURCE_WATCHDOG=n kernels, --do-clocksourcewd gets Kconfig errors. This commit therefore makes --do-no-clocksourcewd be the default on arm64. Note that arm64 users can still specify --do-clocksourcewd in order to override this default. Signed-off-by: Paul E. McKenney <[email protected]> Signed-off-by: Neeraj Upadhyay (AMD) <[email protected]>
1 parent 1524f20 commit 103d567

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/testing/selftests/rcutorture/bin/torture.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ do_normal=yes
6464
explicit_normal=no
6565
do_kasan=yes
6666
do_kcsan=no
67-
do_clocksourcewd=yes
67+
do_clocksourcewd="${ifnotaarch64}"
6868
do_rt=yes
6969
do_rcutasksflavors="${ifnotaarch64}" # FIXME: Back to "yes" when SMP=n auto-avoided
7070
do_srcu_lockdep=yes
@@ -145,7 +145,7 @@ do
145145
explicit_normal=no
146146
do_kasan=yes
147147
do_kcsan=yes
148-
do_clocksourcewd=yes
148+
do_clocksourcewd="${ifnotaarch64}"
149149
do_srcu_lockdep=yes
150150
;;
151151
--do-allmodconfig|--do-no-allmodconfig|--no-allmodconfig)

0 commit comments

Comments
 (0)