The following commit has been merged into the core/rcu branch of tip: Commit-ID: 00a447fabb5252d01035e78ae7f2943e5b4fff64 Gitweb: https://git.kernel.org/tip/00a447fabb5252d01035e78ae7f2943e5b4fff64 Author: Paul E. McKenney <paul...@kernel.org> AuthorDate: Sat, 20 Feb 2021 10:13:52 -08:00 Committer: Paul E. McKenney <paul...@kernel.org> CommitterDate: Mon, 22 Mar 2021 08:29:17 -07:00
torture: Rename SRCU-t and SRCU-u to avoid lowercase characters The convention that scenario names are all uppercase has two exceptions, SRCU-t and SRCU-u. This commit therefore renames them to SRCU-T and SRCU-U, respectively, to bring them in line with this convention. This in turn permits tighter argument checking in the torture-test scripting. Signed-off-by: Paul E. McKenney <paul...@kernel.org> --- tools/testing/selftests/rcutorture/configs/rcu/CFLIST | 4 +-- tools/testing/selftests/rcutorture/configs/rcu/SRCU-T | 11 +++++++- tools/testing/selftests/rcutorture/configs/rcu/SRCU-T.boot | 1 +- tools/testing/selftests/rcutorture/configs/rcu/SRCU-U | 9 ++++++- tools/testing/selftests/rcutorture/configs/rcu/SRCU-U.boot | 2 +- tools/testing/selftests/rcutorture/configs/rcu/SRCU-t | 11 +------- tools/testing/selftests/rcutorture/configs/rcu/SRCU-t.boot | 1 +- tools/testing/selftests/rcutorture/configs/rcu/SRCU-u | 9 +------ tools/testing/selftests/rcutorture/configs/rcu/SRCU-u.boot | 2 +- 9 files changed, 25 insertions(+), 25 deletions(-) create mode 100644 tools/testing/selftests/rcutorture/configs/rcu/SRCU-T create mode 100644 tools/testing/selftests/rcutorture/configs/rcu/SRCU-T.boot create mode 100644 tools/testing/selftests/rcutorture/configs/rcu/SRCU-U create mode 100644 tools/testing/selftests/rcutorture/configs/rcu/SRCU-U.boot delete mode 100644 tools/testing/selftests/rcutorture/configs/rcu/SRCU-t delete mode 100644 tools/testing/selftests/rcutorture/configs/rcu/SRCU-t.boot delete mode 100644 tools/testing/selftests/rcutorture/configs/rcu/SRCU-u delete mode 100644 tools/testing/selftests/rcutorture/configs/rcu/SRCU-u.boot diff --git a/tools/testing/selftests/rcutorture/configs/rcu/CFLIST b/tools/testing/selftests/rcutorture/configs/rcu/CFLIST index f2b20db..98b6175 100644 --- a/tools/testing/selftests/rcutorture/configs/rcu/CFLIST +++ b/tools/testing/selftests/rcutorture/configs/rcu/CFLIST @@ -7,8 +7,8 @@ TREE07 TREE09 SRCU-N SRCU-P -SRCU-t -SRCU-u +SRCU-T +SRCU-U TINY01 TINY02 TASKS01 diff --git a/tools/testing/selftests/rcutorture/configs/rcu/SRCU-T b/tools/testing/selftests/rcutorture/configs/rcu/SRCU-T new file mode 100644 index 0000000..d6557c3 --- /dev/null +++ b/tools/testing/selftests/rcutorture/configs/rcu/SRCU-T @@ -0,0 +1,11 @@ +CONFIG_SMP=n +CONFIG_PREEMPT_NONE=y +CONFIG_PREEMPT_VOLUNTARY=n +CONFIG_PREEMPT=n +#CHECK#CONFIG_TINY_SRCU=y +CONFIG_RCU_TRACE=n +CONFIG_DEBUG_LOCK_ALLOC=y +CONFIG_PROVE_LOCKING=y +CONFIG_DEBUG_OBJECTS_RCU_HEAD=n +CONFIG_DEBUG_ATOMIC_SLEEP=y +#CHECK#CONFIG_PREEMPT_COUNT=y diff --git a/tools/testing/selftests/rcutorture/configs/rcu/SRCU-T.boot b/tools/testing/selftests/rcutorture/configs/rcu/SRCU-T.boot new file mode 100644 index 0000000..238bfe3 --- /dev/null +++ b/tools/testing/selftests/rcutorture/configs/rcu/SRCU-T.boot @@ -0,0 +1 @@ +rcutorture.torture_type=srcu diff --git a/tools/testing/selftests/rcutorture/configs/rcu/SRCU-U b/tools/testing/selftests/rcutorture/configs/rcu/SRCU-U new file mode 100644 index 0000000..6bc24e9 --- /dev/null +++ b/tools/testing/selftests/rcutorture/configs/rcu/SRCU-U @@ -0,0 +1,9 @@ +CONFIG_SMP=n +CONFIG_PREEMPT_NONE=y +CONFIG_PREEMPT_VOLUNTARY=n +CONFIG_PREEMPT=n +#CHECK#CONFIG_TINY_SRCU=y +CONFIG_RCU_TRACE=n +CONFIG_DEBUG_LOCK_ALLOC=n +CONFIG_DEBUG_OBJECTS_RCU_HEAD=n +CONFIG_PREEMPT_COUNT=n diff --git a/tools/testing/selftests/rcutorture/configs/rcu/SRCU-U.boot b/tools/testing/selftests/rcutorture/configs/rcu/SRCU-U.boot new file mode 100644 index 0000000..ce48c7b --- /dev/null +++ b/tools/testing/selftests/rcutorture/configs/rcu/SRCU-U.boot @@ -0,0 +1,2 @@ +rcutorture.torture_type=srcud +rcupdate.rcu_self_test=1 diff --git a/tools/testing/selftests/rcutorture/configs/rcu/SRCU-t b/tools/testing/selftests/rcutorture/configs/rcu/SRCU-t deleted file mode 100644 index d6557c3..0000000 --- a/tools/testing/selftests/rcutorture/configs/rcu/SRCU-t +++ /dev/null @@ -1,11 +0,0 @@ -CONFIG_SMP=n -CONFIG_PREEMPT_NONE=y -CONFIG_PREEMPT_VOLUNTARY=n -CONFIG_PREEMPT=n -#CHECK#CONFIG_TINY_SRCU=y -CONFIG_RCU_TRACE=n -CONFIG_DEBUG_LOCK_ALLOC=y -CONFIG_PROVE_LOCKING=y -CONFIG_DEBUG_OBJECTS_RCU_HEAD=n -CONFIG_DEBUG_ATOMIC_SLEEP=y -#CHECK#CONFIG_PREEMPT_COUNT=y diff --git a/tools/testing/selftests/rcutorture/configs/rcu/SRCU-t.boot b/tools/testing/selftests/rcutorture/configs/rcu/SRCU-t.boot deleted file mode 100644 index 238bfe3..0000000 --- a/tools/testing/selftests/rcutorture/configs/rcu/SRCU-t.boot +++ /dev/null @@ -1 +0,0 @@ -rcutorture.torture_type=srcu diff --git a/tools/testing/selftests/rcutorture/configs/rcu/SRCU-u b/tools/testing/selftests/rcutorture/configs/rcu/SRCU-u deleted file mode 100644 index 6bc24e9..0000000 --- a/tools/testing/selftests/rcutorture/configs/rcu/SRCU-u +++ /dev/null @@ -1,9 +0,0 @@ -CONFIG_SMP=n -CONFIG_PREEMPT_NONE=y -CONFIG_PREEMPT_VOLUNTARY=n -CONFIG_PREEMPT=n -#CHECK#CONFIG_TINY_SRCU=y -CONFIG_RCU_TRACE=n -CONFIG_DEBUG_LOCK_ALLOC=n -CONFIG_DEBUG_OBJECTS_RCU_HEAD=n -CONFIG_PREEMPT_COUNT=n diff --git a/tools/testing/selftests/rcutorture/configs/rcu/SRCU-u.boot b/tools/testing/selftests/rcutorture/configs/rcu/SRCU-u.boot deleted file mode 100644 index ce48c7b..0000000 --- a/tools/testing/selftests/rcutorture/configs/rcu/SRCU-u.boot +++ /dev/null @@ -1,2 +0,0 @@ -rcutorture.torture_type=srcud -rcupdate.rcu_self_test=1