* [PATCH 0/3] ci: Fixes on the recent cross-binary test case
@ 2024-02-06 6:31 peterx
2024-02-06 6:31 ` [PATCH 1/3] tests/migration-test: Stick with gicv3 in aarch64 test peterx
` (2 more replies)
0 siblings, 3 replies; 8+ messages in thread
From: peterx @ 2024-02-06 6:31 UTC (permalink / raw)
To: qemu-devel
Cc: Daniel P . Berrangé, Fabiano Rosas, peterx, Peter Maydell,
Eric Auger, Sebastian Ott
From: Peter Xu <peterx@redhat.com>
Hi,
This small patchset updates the recent cross-binary test for migration on
a few things.
Patch 1 modifies the aarch64 test GIC version to 3 rather than "max",
paving way for enabling it, even if the CPU model is not yet ready.
Patch 2 removes the tag dependency of the new build-previous-qemu job, so
that in personal CI pipelines the job won't fail if the tag is missing, as
reported by Peter Maydell, and solution suggested by Dan.
Patch 3 updates the comment for aarch64 on the test to state the fact, and
what is missing. Then we don't target it support for v9.0, but only until
we have a stable CPU model for aarch64 (if ever possible to support both
tcg and kvm).
Comments welcomed, thanks.
Peter Xu (3):
tests/migration-test: Stick with gicv3 in aarch64 test
ci: Remove tag dependency for build-previous-qemu
ci: Update comment for migration-compat-aarch64
tests/qtest/migration-test.c | 2 +-
.gitlab-ci.d/buildtest.yml | 9 ++++++---
2 files changed, 7 insertions(+), 4 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH 1/3] tests/migration-test: Stick with gicv3 in aarch64 test
2024-02-06 6:31 [PATCH 0/3] ci: Fixes on the recent cross-binary test case peterx
@ 2024-02-06 6:31 ` peterx
2024-02-06 8:13 ` Daniel P. Berrangé
2024-02-06 6:31 ` [PATCH 2/3] ci: Remove tag dependency for build-previous-qemu peterx
2024-02-06 6:31 ` [PATCH 3/3] ci: Update comment for migration-compat-aarch64 peterx
2 siblings, 1 reply; 8+ messages in thread
From: peterx @ 2024-02-06 6:31 UTC (permalink / raw)
To: qemu-devel
Cc: Daniel P . Berrangé, Fabiano Rosas, peterx, Peter Maydell,
Eric Auger, Sebastian Ott
From: Peter Xu <peterx@redhat.com>
Recently we introduced cross-binary migration test. It's always wanted
that migration-test uses stable guest ABI for both QEMU binaries in this
case, so that both QEMU binaries will be compatible on the migration
stream with the cmdline specified.
Switch to a static gic version "3" rather than using version "max", so that
GIC should be stable now across any future QEMU binaries for migration-test.
Here the version can actually be anything as long as the ABI is stable. We
choose "3" because it's the majority of what we already use in QEMU while
still new enough: "git grep gic-version=3" shows 6 hit, while version 4 has
no direct user yet besides "max".
Note that even with this change, aarch64 won't be able to work yet with
migration cross binary test, but then the only missing piece will be the
stable CPU model.
Signed-off-by: Peter Xu <peterx@redhat.com>
---
tests/qtest/migration-test.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/qtest/migration-test.c b/tests/qtest/migration-test.c
index 7675519cfa..8a5bb1752e 100644
--- a/tests/qtest/migration-test.c
+++ b/tests/qtest/migration-test.c
@@ -819,7 +819,7 @@ static int test_migrate_start(QTestState **from, QTestState **to,
} else if (strcmp(arch, "aarch64") == 0) {
memory_size = "150M";
machine_alias = "virt";
- machine_opts = "gic-version=max";
+ machine_opts = "gic-version=3";
arch_opts = g_strdup_printf("-cpu max -kernel %s", bootpath);
start_address = ARM_TEST_MEM_START;
end_address = ARM_TEST_MEM_END;
--
2.43.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH 1/3] tests/migration-test: Stick with gicv3 in aarch64 test
2024-02-06 6:31 ` [PATCH 1/3] tests/migration-test: Stick with gicv3 in aarch64 test peterx
@ 2024-02-06 8:13 ` Daniel P. Berrangé
0 siblings, 0 replies; 8+ messages in thread
From: Daniel P. Berrangé @ 2024-02-06 8:13 UTC (permalink / raw)
To: peterx; +Cc: qemu-devel, Fabiano Rosas, Peter Maydell, Eric Auger,
Sebastian Ott
On Tue, Feb 06, 2024 at 02:31:49PM +0800, peterx@redhat.com wrote:
> From: Peter Xu <peterx@redhat.com>
>
> Recently we introduced cross-binary migration test. It's always wanted
> that migration-test uses stable guest ABI for both QEMU binaries in this
> case, so that both QEMU binaries will be compatible on the migration
> stream with the cmdline specified.
>
> Switch to a static gic version "3" rather than using version "max", so that
> GIC should be stable now across any future QEMU binaries for migration-test.
>
> Here the version can actually be anything as long as the ABI is stable. We
> choose "3" because it's the majority of what we already use in QEMU while
> still new enough: "git grep gic-version=3" shows 6 hit, while version 4 has
> no direct user yet besides "max".
>
> Note that even with this change, aarch64 won't be able to work yet with
> migration cross binary test, but then the only missing piece will be the
> stable CPU model.
>
> Signed-off-by: Peter Xu <peterx@redhat.com>
> ---
> tests/qtest/migration-test.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
With regards,
Daniel
--
|: https://berrange.com -o- https://www.flickr.com/photos/dberrange :|
|: https://libvirt.org -o- https://fstop138.berrange.com :|
|: https://entangle-photo.org -o- https://www.instagram.com/dberrange :|
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH 2/3] ci: Remove tag dependency for build-previous-qemu
2024-02-06 6:31 [PATCH 0/3] ci: Fixes on the recent cross-binary test case peterx
2024-02-06 6:31 ` [PATCH 1/3] tests/migration-test: Stick with gicv3 in aarch64 test peterx
@ 2024-02-06 6:31 ` peterx
2024-02-06 8:11 ` Daniel P. Berrangé
2024-02-06 6:31 ` [PATCH 3/3] ci: Update comment for migration-compat-aarch64 peterx
2 siblings, 1 reply; 8+ messages in thread
From: peterx @ 2024-02-06 6:31 UTC (permalink / raw)
To: qemu-devel
Cc: Daniel P . Berrangé, Fabiano Rosas, peterx, Peter Maydell,
Eric Auger, Sebastian Ott
From: Peter Xu <peterx@redhat.com>
The new build-previous-qemu job relies on QEMU release tag being present,
while that may not be always true for personal git repositories since by
default tag is not pushed. The job can fail on those CI kicks, as reported
by Peter Maydell.
Fix it by fetching the tags remotely from the official repository, as
suggested by Dan.
[1] https://lore.kernel.org/r/ZcC9ScKJ7VvqektA@redhat.com
Reported-by: Peter Maydell <peter.maydell@linaro.org>
Suggested-by: Daniel P. Berrangé <berrange@redhat.com>
Signed-off-by: Peter Xu <peterx@redhat.com>
---
.gitlab-ci.d/buildtest.yml | 2 ++
1 file changed, 2 insertions(+)
diff --git a/.gitlab-ci.d/buildtest.yml b/.gitlab-ci.d/buildtest.yml
index 79bbc8585b..df48c9d31d 100644
--- a/.gitlab-ci.d/buildtest.yml
+++ b/.gitlab-ci.d/buildtest.yml
@@ -189,6 +189,8 @@ build-previous-qemu:
TARGETS: x86_64-softmmu aarch64-softmmu
before_script:
- export QEMU_PREV_VERSION="$(sed 's/\([0-9.]*\)\.[0-9]*/v\1.0/' VERSION)"
+ - git remote add upstream https://gitlab.com/qemu-project/qemu
+ - git fetch upstream $QEMU_PRRV_VERSION
- git checkout $QEMU_PREV_VERSION
after_script:
- mv build build-previous
--
2.43.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH 2/3] ci: Remove tag dependency for build-previous-qemu
2024-02-06 6:31 ` [PATCH 2/3] ci: Remove tag dependency for build-previous-qemu peterx
@ 2024-02-06 8:11 ` Daniel P. Berrangé
2024-02-06 8:30 ` Peter Xu
0 siblings, 1 reply; 8+ messages in thread
From: Daniel P. Berrangé @ 2024-02-06 8:11 UTC (permalink / raw)
To: peterx; +Cc: qemu-devel, Fabiano Rosas, Peter Maydell, Eric Auger,
Sebastian Ott
On Tue, Feb 06, 2024 at 02:31:50PM +0800, peterx@redhat.com wrote:
> From: Peter Xu <peterx@redhat.com>
>
> The new build-previous-qemu job relies on QEMU release tag being present,
> while that may not be always true for personal git repositories since by
> default tag is not pushed. The job can fail on those CI kicks, as reported
> by Peter Maydell.
>
> Fix it by fetching the tags remotely from the official repository, as
> suggested by Dan.
>
> [1] https://lore.kernel.org/r/ZcC9ScKJ7VvqektA@redhat.com
>
> Reported-by: Peter Maydell <peter.maydell@linaro.org>
> Suggested-by: Daniel P. Berrangé <berrange@redhat.com>
> Signed-off-by: Peter Xu <peterx@redhat.com>
> ---
> .gitlab-ci.d/buildtest.yml | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/.gitlab-ci.d/buildtest.yml b/.gitlab-ci.d/buildtest.yml
> index 79bbc8585b..df48c9d31d 100644
> --- a/.gitlab-ci.d/buildtest.yml
> +++ b/.gitlab-ci.d/buildtest.yml
> @@ -189,6 +189,8 @@ build-previous-qemu:
> TARGETS: x86_64-softmmu aarch64-softmmu
> before_script:
> - export QEMU_PREV_VERSION="$(sed 's/\([0-9.]*\)\.[0-9]*/v\1.0/' VERSION)"
> + - git remote add upstream https://gitlab.com/qemu-project/qemu
> + - git fetch upstream $QEMU_PRRV_VERSION
Typo^^^
> - git checkout $QEMU_PREV_VERSION
> after_script:
> - mv build build-previous
With that typo fixed, then
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
With regards,
Daniel
--
|: https://berrange.com -o- https://www.flickr.com/photos/dberrange :|
|: https://libvirt.org -o- https://fstop138.berrange.com :|
|: https://entangle-photo.org -o- https://www.instagram.com/dberrange :|
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 2/3] ci: Remove tag dependency for build-previous-qemu
2024-02-06 8:11 ` Daniel P. Berrangé
@ 2024-02-06 8:30 ` Peter Xu
0 siblings, 0 replies; 8+ messages in thread
From: Peter Xu @ 2024-02-06 8:30 UTC (permalink / raw)
To: Daniel P. Berrangé
Cc: qemu-devel, Fabiano Rosas, Peter Maydell, Eric Auger,
Sebastian Ott
On Tue, Feb 06, 2024 at 08:11:58AM +0000, Daniel P. Berrangé wrote:
> On Tue, Feb 06, 2024 at 02:31:50PM +0800, peterx@redhat.com wrote:
> > From: Peter Xu <peterx@redhat.com>
> >
> > The new build-previous-qemu job relies on QEMU release tag being present,
> > while that may not be always true for personal git repositories since by
> > default tag is not pushed. The job can fail on those CI kicks, as reported
> > by Peter Maydell.
> >
> > Fix it by fetching the tags remotely from the official repository, as
> > suggested by Dan.
> >
> > [1] https://lore.kernel.org/r/ZcC9ScKJ7VvqektA@redhat.com
> >
> > Reported-by: Peter Maydell <peter.maydell@linaro.org>
> > Suggested-by: Daniel P. Berrangé <berrange@redhat.com>
> > Signed-off-by: Peter Xu <peterx@redhat.com>
> > ---
> > .gitlab-ci.d/buildtest.yml | 2 ++
> > 1 file changed, 2 insertions(+)
> >
> > diff --git a/.gitlab-ci.d/buildtest.yml b/.gitlab-ci.d/buildtest.yml
> > index 79bbc8585b..df48c9d31d 100644
> > --- a/.gitlab-ci.d/buildtest.yml
> > +++ b/.gitlab-ci.d/buildtest.yml
> > @@ -189,6 +189,8 @@ build-previous-qemu:
> > TARGETS: x86_64-softmmu aarch64-softmmu
> > before_script:
> > - export QEMU_PREV_VERSION="$(sed 's/\([0-9.]*\)\.[0-9]*/v\1.0/' VERSION)"
> > + - git remote add upstream https://gitlab.com/qemu-project/qemu
> > + - git fetch upstream $QEMU_PRRV_VERSION
>
> Typo^^^
Interestingly, this typo won't affect the function, as QEMU_PRRV_VERSION
will be an empty string, and this cmd will simply pull in all the tags..
After the fix, it should only fetch the tag that we need.
>
> > - git checkout $QEMU_PREV_VERSION
> > after_script:
> > - mv build build-previous
>
> With that typo fixed, then
>
> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Thanks.
--
Peter Xu
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH 3/3] ci: Update comment for migration-compat-aarch64
2024-02-06 6:31 [PATCH 0/3] ci: Fixes on the recent cross-binary test case peterx
2024-02-06 6:31 ` [PATCH 1/3] tests/migration-test: Stick with gicv3 in aarch64 test peterx
2024-02-06 6:31 ` [PATCH 2/3] ci: Remove tag dependency for build-previous-qemu peterx
@ 2024-02-06 6:31 ` peterx
2024-02-06 8:12 ` Daniel P. Berrangé
2 siblings, 1 reply; 8+ messages in thread
From: peterx @ 2024-02-06 6:31 UTC (permalink / raw)
To: qemu-devel
Cc: Daniel P . Berrangé, Fabiano Rosas, peterx, Peter Maydell,
Eric Auger, Sebastian Ott
From: Peter Xu <peterx@redhat.com>
It turns out that we may not be able to enable this test even for the
upcoming v9.0. Document what we're still missing.
Signed-off-by: Peter Xu <peterx@redhat.com>
---
.gitlab-ci.d/buildtest.yml | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/.gitlab-ci.d/buildtest.yml b/.gitlab-ci.d/buildtest.yml
index df48c9d31d..f01d6d0cdf 100644
--- a/.gitlab-ci.d/buildtest.yml
+++ b/.gitlab-ci.d/buildtest.yml
@@ -219,9 +219,10 @@ build-previous-qemu:
- QTEST_QEMU_BINARY_DST=./qemu-system-${TARGET}
QTEST_QEMU_BINARY=../build/qemu-system-${TARGET} ./tests/qtest/migration-test
-# This job is disabled until we release 9.0. The existing
-# migration-test in 8.2 is broken on aarch64. The fix was already
-# commited, but it will only take effect once 9.0 is out.
+# This job needs to be disabled until we can have an aarch64 CPU model that
+# will both (1) support both KVM and TCG, and (2) provide a stable ABI.
+# Currently only "-cpu max" can provide (1), however it doesn't guarantee
+# (2). Mark this test skipped until later.
migration-compat-aarch64:
extends: .migration-compat-common
variables:
--
2.43.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH 3/3] ci: Update comment for migration-compat-aarch64
2024-02-06 6:31 ` [PATCH 3/3] ci: Update comment for migration-compat-aarch64 peterx
@ 2024-02-06 8:12 ` Daniel P. Berrangé
0 siblings, 0 replies; 8+ messages in thread
From: Daniel P. Berrangé @ 2024-02-06 8:12 UTC (permalink / raw)
To: peterx; +Cc: qemu-devel, Fabiano Rosas, Peter Maydell, Eric Auger,
Sebastian Ott
On Tue, Feb 06, 2024 at 02:31:51PM +0800, peterx@redhat.com wrote:
> From: Peter Xu <peterx@redhat.com>
>
> It turns out that we may not be able to enable this test even for the
> upcoming v9.0. Document what we're still missing.
>
> Signed-off-by: Peter Xu <peterx@redhat.com>
> ---
> .gitlab-ci.d/buildtest.yml | 7 ++++---
> 1 file changed, 4 insertions(+), 3 deletions(-)
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
With regards,
Daniel
--
|: https://berrange.com -o- https://www.flickr.com/photos/dberrange :|
|: https://libvirt.org -o- https://fstop138.berrange.com :|
|: https://entangle-photo.org -o- https://www.instagram.com/dberrange :|
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-02-06 8:31 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-06 6:31 [PATCH 0/3] ci: Fixes on the recent cross-binary test case peterx
2024-02-06 6:31 ` [PATCH 1/3] tests/migration-test: Stick with gicv3 in aarch64 test peterx
2024-02-06 8:13 ` Daniel P. Berrangé
2024-02-06 6:31 ` [PATCH 2/3] ci: Remove tag dependency for build-previous-qemu peterx
2024-02-06 8:11 ` Daniel P. Berrangé
2024-02-06 8:30 ` Peter Xu
2024-02-06 6:31 ` [PATCH 3/3] ci: Update comment for migration-compat-aarch64 peterx
2024-02-06 8:12 ` Daniel P. Berrangé
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).