All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Alex Bennée" <alex.bennee@linaro.org>
To: pbonzini@redhat.com, drjones@redhat.com, thuth@redhat.com
Cc: kvm@vger.kernel.org, qemu-arm@nongnu.org,
	linux-arm-kernel@lists.infradead.org,
	kvmarm@lists.cs.columbia.edu, christoffer.dall@arm.com,
	maz@kernel.org, "Alex Bennée" <alex.bennee@linaro.org>
Subject: [kvm-unit-tests PATCH v9 8/9] arm/run: use separate --accel form
Date: Thu,  2 Dec 2021 11:53:51 +0000	[thread overview]
Message-ID: <20211202115352.951548-9-alex.bennee@linaro.org> (raw)
In-Reply-To: <20211202115352.951548-1-alex.bennee@linaro.org>

This will allow TCG tests to alter things such as tb-size.

Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20211118184650.661575-10-alex.bennee@linaro.org>
---
 arm/run | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arm/run b/arm/run
index a390ca5a..73c6c83a 100755
--- a/arm/run
+++ b/arm/run
@@ -58,8 +58,8 @@ if $qemu $M -device '?' 2>&1 | grep pci-testdev > /dev/null; then
 	pci_testdev="-device pci-testdev"
 fi
 
-M+=",accel=$ACCEL"
-command="$qemu -nodefaults $M -cpu $processor $chr_testdev $pci_testdev"
+A="-accel $ACCEL"
+command="$qemu -nodefaults $M $A -cpu $processor $chr_testdev $pci_testdev"
 command+=" -display none -serial stdio -kernel"
 command="$(migration_cmd) $(timeout_cmd) $command"
 
-- 
2.30.2


WARNING: multiple messages have this Message-ID (diff)
From: "Alex Bennée" <alex.bennee@linaro.org>
To: pbonzini@redhat.com, drjones@redhat.com, thuth@redhat.com
Cc: kvm@vger.kernel.org, maz@kernel.org, christoffer.dall@arm.com,
	qemu-arm@nongnu.org, kvmarm@lists.cs.columbia.edu,
	linux-arm-kernel@lists.infradead.org
Subject: [kvm-unit-tests PATCH v9 8/9] arm/run: use separate --accel form
Date: Thu,  2 Dec 2021 11:53:51 +0000	[thread overview]
Message-ID: <20211202115352.951548-9-alex.bennee@linaro.org> (raw)
In-Reply-To: <20211202115352.951548-1-alex.bennee@linaro.org>

This will allow TCG tests to alter things such as tb-size.

Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20211118184650.661575-10-alex.bennee@linaro.org>
---
 arm/run | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arm/run b/arm/run
index a390ca5a..73c6c83a 100755
--- a/arm/run
+++ b/arm/run
@@ -58,8 +58,8 @@ if $qemu $M -device '?' 2>&1 | grep pci-testdev > /dev/null; then
 	pci_testdev="-device pci-testdev"
 fi
 
-M+=",accel=$ACCEL"
-command="$qemu -nodefaults $M -cpu $processor $chr_testdev $pci_testdev"
+A="-accel $ACCEL"
+command="$qemu -nodefaults $M $A -cpu $processor $chr_testdev $pci_testdev"
 command+=" -display none -serial stdio -kernel"
 command="$(migration_cmd) $(timeout_cmd) $command"
 
-- 
2.30.2

_______________________________________________
kvmarm mailing list
kvmarm@lists.cs.columbia.edu
https://lists.cs.columbia.edu/mailman/listinfo/kvmarm

WARNING: multiple messages have this Message-ID (diff)
From: "Alex Bennée" <alex.bennee@linaro.org>
To: pbonzini@redhat.com, drjones@redhat.com, thuth@redhat.com
Cc: kvm@vger.kernel.org, qemu-arm@nongnu.org,
	linux-arm-kernel@lists.infradead.org,
	kvmarm@lists.cs.columbia.edu, christoffer.dall@arm.com,
	maz@kernel.org, "Alex Bennée" <alex.bennee@linaro.org>
Subject: [kvm-unit-tests PATCH v9 8/9] arm/run: use separate --accel form
Date: Thu,  2 Dec 2021 11:53:51 +0000	[thread overview]
Message-ID: <20211202115352.951548-9-alex.bennee@linaro.org> (raw)
In-Reply-To: <20211202115352.951548-1-alex.bennee@linaro.org>

This will allow TCG tests to alter things such as tb-size.

Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20211118184650.661575-10-alex.bennee@linaro.org>
---
 arm/run | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arm/run b/arm/run
index a390ca5a..73c6c83a 100755
--- a/arm/run
+++ b/arm/run
@@ -58,8 +58,8 @@ if $qemu $M -device '?' 2>&1 | grep pci-testdev > /dev/null; then
 	pci_testdev="-device pci-testdev"
 fi
 
-M+=",accel=$ACCEL"
-command="$qemu -nodefaults $M -cpu $processor $chr_testdev $pci_testdev"
+A="-accel $ACCEL"
+command="$qemu -nodefaults $M $A -cpu $processor $chr_testdev $pci_testdev"
 command+=" -display none -serial stdio -kernel"
 command="$(migration_cmd) $(timeout_cmd) $command"
 
-- 
2.30.2


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  parent reply	other threads:[~2021-12-02 11:54 UTC|newest]

Thread overview: 45+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-12-02 11:53 [kvm-unit-tests PATCH v9 0/9] MTTCG sanity tests for ARM Alex Bennée
2021-12-02 11:53 ` Alex Bennée
2021-12-02 11:53 ` Alex Bennée
2021-12-02 11:53 ` [kvm-unit-tests PATCH v9 1/9] docs: mention checkpatch in the README Alex Bennée
2021-12-02 11:53   ` Alex Bennée
2021-12-02 11:53   ` Alex Bennée
2021-12-02 11:53 ` [kvm-unit-tests PATCH v9 2/9] arm/flat.lds: don't drop debug during link Alex Bennée
2021-12-02 11:53   ` Alex Bennée
2021-12-02 11:53   ` Alex Bennée
2021-12-02 11:53 ` [kvm-unit-tests PATCH v9 3/9] Makefile: add GNU global tags support Alex Bennée
2021-12-02 11:53   ` Alex Bennée
2021-12-02 11:53   ` Alex Bennée
2021-12-14 11:36   ` Andrew Jones
2021-12-14 11:36     ` Andrew Jones
2021-12-14 11:36     ` Andrew Jones
2021-12-02 11:53 ` [kvm-unit-tests PATCH v9 4/9] lib: add isaac prng library from CCAN Alex Bennée
2021-12-02 11:53   ` Alex Bennée
2021-12-02 11:53   ` Alex Bennée
2021-12-03  9:15   ` Thomas Huth
2021-12-03  9:15     ` Thomas Huth
2021-12-03  9:15     ` Thomas Huth
2021-12-02 11:53 ` [kvm-unit-tests PATCH v9 5/9] arm/tlbflush-code: TLB flush during code execution Alex Bennée
2021-12-02 11:53   ` Alex Bennée
2021-12-02 11:53   ` Alex Bennée
2021-12-02 11:53 ` [kvm-unit-tests PATCH v9 6/9] arm/locking-tests: add comprehensive locking test Alex Bennée
2021-12-02 11:53   ` Alex Bennée
2021-12-02 11:53   ` Alex Bennée
2021-12-02 11:53 ` [kvm-unit-tests PATCH v9 7/9] arm/barrier-litmus-tests: add simple mp and sal litmus tests Alex Bennée
2021-12-02 11:53   ` Alex Bennée
2021-12-02 11:53   ` Alex Bennée
2021-12-02 11:53 ` Alex Bennée [this message]
2021-12-02 11:53   ` [kvm-unit-tests PATCH v9 8/9] arm/run: use separate --accel form Alex Bennée
2021-12-02 11:53   ` Alex Bennée
2021-12-02 11:53 ` [kvm-unit-tests PATCH v9 9/9] arm/tcg-test: some basic TCG exercising tests Alex Bennée
2021-12-02 11:53   ` Alex Bennée
2021-12-02 11:53   ` Alex Bennée
2021-12-10 15:38 ` [kvm-unit-tests PATCH v9 0/9] MTTCG sanity tests for ARM Alex Bennée
2021-12-10 15:38   ` Alex Bennée
2021-12-10 15:38   ` Alex Bennée
2021-12-14 11:50 ` Andrew Jones
2021-12-14 11:50   ` Andrew Jones
2021-12-14 11:50   ` Andrew Jones
2021-12-14 11:54   ` Andrew Jones
2021-12-14 11:54     ` Andrew Jones
2021-12-14 11:54     ` Andrew Jones

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20211202115352.951548-9-alex.bennee@linaro.org \
    --to=alex.bennee@linaro.org \
    --cc=christoffer.dall@arm.com \
    --cc=drjones@redhat.com \
    --cc=kvm@vger.kernel.org \
    --cc=kvmarm@lists.cs.columbia.edu \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=maz@kernel.org \
    --cc=pbonzini@redhat.com \
    --cc=qemu-arm@nongnu.org \
    --cc=thuth@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.