2016-11-14 17:59:35

by Paul E. McKenney

[permalink] [raw]
Subject: [PATCH tip/core/rcu 0/2] Torture-test changes for 4.10

Hello!

This series contains a couple of torture-test changes:

1. Remove obsolete files from the rcutorture .gitignore file.

2. Prevent the --jitter flag from delaying --build-only runs.

Thanx, Paul

------------------------------------------------------------------------

.gitignore | 2 --
bin/kvm.sh | 5 +++++
2 files changed, 5 insertions(+), 2 deletions(-)


2016-11-14 17:59:58

by Paul E. McKenney

[permalink] [raw]
Subject: [PATCH tip/core/rcu 2/2] torture: Prevent jitter from delaying build-only runs

Currently, if the --jitter flag specifies jitter for a --build-only
run, the system will obediently build a kernel, refuse to launch it,
launch the requested number of jitter processes, and wait for the
specified kernel run time, which defaults to 30 minutes. This is
of course quite pointless.

This commit therefore disables jitter on build-only runs.

Signed-off-by: Paul E. McKenney <[email protected]>
---
tools/testing/selftests/rcutorture/bin/kvm.sh | 5 +++++
1 file changed, 5 insertions(+)

diff --git a/tools/testing/selftests/rcutorture/bin/kvm.sh b/tools/testing/selftests/rcutorture/bin/kvm.sh
index 0aed965f0062..3b3c1b693ee1 100755
--- a/tools/testing/selftests/rcutorture/bin/kvm.sh
+++ b/tools/testing/selftests/rcutorture/bin/kvm.sh
@@ -303,6 +303,7 @@ then
fi
___EOF___
awk < $T/cfgcpu.pack \
+ -v TORTURE_BUILDONLY="$TORTURE_BUILDONLY" \
-v CONFIGDIR="$CONFIGFRAG/" \
-v KVM="$KVM" \
-v ncpus=$cpus \
@@ -375,6 +376,10 @@ function dump(first, pastlast, batchnum)
njitter = ncpus;
else
njitter = ja[1];
+ if (TORTURE_BUILDONLY && njitter != 0) {
+ njitter = 0;
+ print "echo Build-only run, so suppressing jitter >> " rd "/log"
+ }
for (j = 0; j < njitter; j++)
print "jitter.sh " j " " dur " " ja[2] " " ja[3] "&"
print "wait"
--
2.5.2

2016-11-14 17:59:55

by Paul E. McKenney

[permalink] [raw]
Subject: [PATCH tip/core/rcu 1/2] torture: Remove obsolete files from rcutorture .gitignore

Signed-off-by: Paul E. McKenney <[email protected]>
---
tools/testing/selftests/rcutorture/.gitignore | 2 --
1 file changed, 2 deletions(-)

diff --git a/tools/testing/selftests/rcutorture/.gitignore b/tools/testing/selftests/rcutorture/.gitignore
index 05838f6f2ebe..ccc240275d1c 100644
--- a/tools/testing/selftests/rcutorture/.gitignore
+++ b/tools/testing/selftests/rcutorture/.gitignore
@@ -1,6 +1,4 @@
initrd
-linux-2.6
b[0-9]*
-rcu-test-image
res
*.swp
--
2.5.2

2016-11-14 18:14:16

by Josh Triplett

[permalink] [raw]
Subject: Re: [PATCH tip/core/rcu 0/2] Torture-test changes for 4.10

On Mon, Nov 14, 2016 at 09:59:24AM -0800, Paul E. McKenney wrote:
> Hello!
>
> This series contains a couple of torture-test changes:
>
> 1. Remove obsolete files from the rcutorture .gitignore file.
>
> 2. Prevent the --jitter flag from delaying --build-only runs.

Reviewed-by: Josh Triplett <[email protected]>