When you pass --cpus argument to kvm.sh, it errors out as it assumes you have
all the requires CPUs to run a batch. This commit fixes this along with a minor
comment fix.

Signed-off-by: Pranith Kumar <bobby.pr...@gmail.com>
---
 tools/testing/selftests/rcutorture/bin/kvm.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/testing/selftests/rcutorture/bin/kvm.sh 
b/tools/testing/selftests/rcutorture/bin/kvm.sh
index 36534f9..1128d85 100755
--- a/tools/testing/selftests/rcutorture/bin/kvm.sh
+++ b/tools/testing/selftests/rcutorture/bin/kvm.sh
@@ -214,7 +214,7 @@ END {
        batch = 0;
        nc = -1;
 
-       # Each pass through the following loop creates on test batch
+       # Each pass through the following loop creates one test batch
        # that can be executed concurrently given ncpus.  Note that a
        # given test that requires more than the available CPUs will run in
        # their own batch.  Such tests just have to make do with what
@@ -228,7 +228,7 @@ END {
                for (i = 0; i < njobs; i++) {
                        if (done[i])
                                continue; # Already part of a batch.
-                       if (nc >= cpus[i] || nc == ncpus) {
+                       if (nc >= cpus[i]) {
 
                                # This test fits into the current batch.
                                done[i] = batch;
-- 
2.0.0.rc2

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to