* [for-5.0] Deprecate KVM support for AArch32
@ 2020-04-14 12:09 Peter Maydell
2020-04-14 12:59 ` Andrew Jones
` (3 more replies)
0 siblings, 4 replies; 7+ messages in thread
From: Peter Maydell @ 2020-04-14 12:09 UTC (permalink / raw)
To: qemu-arm, qemu-devel
The Linux kernel has dropped support for allowing 32-bit Arm systems
to host KVM guests (kernel commit 541ad0150ca4aa663a2, which just
landed upstream in the 5.7 merge window). Mark QEMU's support for
this configuration as deprecated, so that we can delete that support
code in 5.2.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
---
I was reading the 5.7 merge window writeup on LWN this weekend
and saw that the dropping of 32-bit support had gone in; just
enough time to squeeze our deprecation warning into 5.0 so we
can drop the code in 5.2 rather than 6.0...
docs/system/deprecated.rst | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/docs/system/deprecated.rst b/docs/system/deprecated.rst
index c633fe2beff..3142fac3865 100644
--- a/docs/system/deprecated.rst
+++ b/docs/system/deprecated.rst
@@ -336,6 +336,14 @@ The ``compat`` property used to set backwards compatibility modes for
the processor has been deprecated. The ``max-cpu-compat`` property of
the ``pseries`` machine type should be used instead.
+KVM guest support on 32-bit Arm hosts (since 5.0)
+'''''''''''''''''''''''''''''''''''''''''''''''''
+
+The Linux kernel has dropped support for allowing 32-bit Arm systems
+to host KVM guests as of the 5.7 kernel. Accordingly, QEMU is deprecating
+its support for this configuration and will remove it in a future version.
+Running 32-bit guests on a 64-bit Arm host remains supported.
+
System emulator devices
-----------------------
--
2.20.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [for-5.0] Deprecate KVM support for AArch32
2020-04-14 12:09 [for-5.0] Deprecate KVM support for AArch32 Peter Maydell
@ 2020-04-14 12:59 ` Andrew Jones
2020-04-14 16:29 ` Richard Henderson
` (2 subsequent siblings)
3 siblings, 0 replies; 7+ messages in thread
From: Andrew Jones @ 2020-04-14 12:59 UTC (permalink / raw)
To: Peter Maydell; +Cc: qemu-arm, qemu-devel
On Tue, Apr 14, 2020 at 01:09:35PM +0100, Peter Maydell wrote:
> The Linux kernel has dropped support for allowing 32-bit Arm systems
> to host KVM guests (kernel commit 541ad0150ca4aa663a2, which just
> landed upstream in the 5.7 merge window). Mark QEMU's support for
> this configuration as deprecated, so that we can delete that support
> code in 5.2.
>
> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
> ---
> I was reading the 5.7 merge window writeup on LWN this weekend
> and saw that the dropping of 32-bit support had gone in; just
> enough time to squeeze our deprecation warning into 5.0 so we
> can drop the code in 5.2 rather than 6.0...
>
> docs/system/deprecated.rst | 8 ++++++++
> 1 file changed, 8 insertions(+)
>
> diff --git a/docs/system/deprecated.rst b/docs/system/deprecated.rst
> index c633fe2beff..3142fac3865 100644
> --- a/docs/system/deprecated.rst
> +++ b/docs/system/deprecated.rst
> @@ -336,6 +336,14 @@ The ``compat`` property used to set backwards compatibility modes for
> the processor has been deprecated. The ``max-cpu-compat`` property of
> the ``pseries`` machine type should be used instead.
>
> +KVM guest support on 32-bit Arm hosts (since 5.0)
> +'''''''''''''''''''''''''''''''''''''''''''''''''
> +
> +The Linux kernel has dropped support for allowing 32-bit Arm systems
> +to host KVM guests as of the 5.7 kernel. Accordingly, QEMU is deprecating
> +its support for this configuration and will remove it in a future version.
> +Running 32-bit guests on a 64-bit Arm host remains supported.
> +
> System emulator devices
> -----------------------
>
> --
> 2.20.1
>
>
Reviewed-by: Andrew Jones <drjones@redhat.com>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [for-5.0] Deprecate KVM support for AArch32
2020-04-14 12:09 [for-5.0] Deprecate KVM support for AArch32 Peter Maydell
2020-04-14 12:59 ` Andrew Jones
@ 2020-04-14 16:29 ` Richard Henderson
2020-04-15 12:33 ` Daniel P. Berrangé
2020-04-15 15:12 ` Alex Bennée
3 siblings, 0 replies; 7+ messages in thread
From: Richard Henderson @ 2020-04-14 16:29 UTC (permalink / raw)
To: Peter Maydell, qemu-arm, qemu-devel
On 4/14/20 5:09 AM, Peter Maydell wrote:
> The Linux kernel has dropped support for allowing 32-bit Arm systems
> to host KVM guests (kernel commit 541ad0150ca4aa663a2, which just
> landed upstream in the 5.7 merge window). Mark QEMU's support for
> this configuration as deprecated, so that we can delete that support
> code in 5.2.
>
> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
> ---
> I was reading the 5.7 merge window writeup on LWN this weekend
> and saw that the dropping of 32-bit support had gone in; just
> enough time to squeeze our deprecation warning into 5.0 so we
> can drop the code in 5.2 rather than 6.0...
>
> docs/system/deprecated.rst | 8 ++++++++
> 1 file changed, 8 insertions(+)
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
r~
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [for-5.0] Deprecate KVM support for AArch32
2020-04-14 12:09 [for-5.0] Deprecate KVM support for AArch32 Peter Maydell
2020-04-14 12:59 ` Andrew Jones
2020-04-14 16:29 ` Richard Henderson
@ 2020-04-15 12:33 ` Daniel P. Berrangé
2020-04-15 12:41 ` Peter Maydell
2020-04-15 15:12 ` Alex Bennée
3 siblings, 1 reply; 7+ messages in thread
From: Daniel P. Berrangé @ 2020-04-15 12:33 UTC (permalink / raw)
To: Peter Maydell; +Cc: qemu-arm, qemu-devel
On Tue, Apr 14, 2020 at 01:09:35PM +0100, Peter Maydell wrote:
> The Linux kernel has dropped support for allowing 32-bit Arm systems
> to host KVM guests (kernel commit 541ad0150ca4aa663a2, which just
> landed upstream in the 5.7 merge window). Mark QEMU's support for
> this configuration as deprecated, so that we can delete that support
> code in 5.2.
>
> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
> ---
> I was reading the 5.7 merge window writeup on LWN this weekend
> and saw that the dropping of 32-bit support had gone in; just
> enough time to squeeze our deprecation warning into 5.0 so we
> can drop the code in 5.2 rather than 6.0...
>
> docs/system/deprecated.rst | 8 ++++++++
> 1 file changed, 8 insertions(+)
The docs are sufficient to start the deprecation process, but
we might consider also having a warning from configure, or a
message on stderr at runtime to make it more visible to users.
>
> diff --git a/docs/system/deprecated.rst b/docs/system/deprecated.rst
> index c633fe2beff..3142fac3865 100644
> --- a/docs/system/deprecated.rst
> +++ b/docs/system/deprecated.rst
> @@ -336,6 +336,14 @@ The ``compat`` property used to set backwards compatibility modes for
> the processor has been deprecated. The ``max-cpu-compat`` property of
> the ``pseries`` machine type should be used instead.
>
> +KVM guest support on 32-bit Arm hosts (since 5.0)
> +'''''''''''''''''''''''''''''''''''''''''''''''''
> +
> +The Linux kernel has dropped support for allowing 32-bit Arm systems
> +to host KVM guests as of the 5.7 kernel. Accordingly, QEMU is deprecating
> +its support for this configuration and will remove it in a future version.
> +Running 32-bit guests on a 64-bit Arm host remains supported.
> +
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
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] 7+ messages in thread
* Re: [for-5.0] Deprecate KVM support for AArch32
2020-04-15 12:33 ` Daniel P. Berrangé
@ 2020-04-15 12:41 ` Peter Maydell
2020-04-15 12:42 ` Daniel P. Berrangé
0 siblings, 1 reply; 7+ messages in thread
From: Peter Maydell @ 2020-04-15 12:41 UTC (permalink / raw)
To: Daniel P. Berrangé; +Cc: qemu-arm, QEMU Developers
On Wed, 15 Apr 2020 at 13:33, Daniel P. Berrangé <berrange@redhat.com> wrote:
>
> On Tue, Apr 14, 2020 at 01:09:35PM +0100, Peter Maydell wrote:
> > The Linux kernel has dropped support for allowing 32-bit Arm systems
> > to host KVM guests (kernel commit 541ad0150ca4aa663a2, which just
> > landed upstream in the 5.7 merge window). Mark QEMU's support for
> > this configuration as deprecated, so that we can delete that support
> > code in 5.2.
> >
> > Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
> > ---
> > I was reading the 5.7 merge window writeup on LWN this weekend
> > and saw that the dropping of 32-bit support had gone in; just
> > enough time to squeeze our deprecation warning into 5.0 so we
> > can drop the code in 5.2 rather than 6.0...
> >
> > docs/system/deprecated.rst | 8 ++++++++
> > 1 file changed, 8 insertions(+)
>
> The docs are sufficient to start the deprecation process, but
> we might consider also having a warning from configure, or a
> message on stderr at runtime to make it more visible to users.
Mmm. I didn't feel entirely comfortable making code changes to
print messages at this point in the 5.0 release cycle, though.
thanks
-- PMM
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [for-5.0] Deprecate KVM support for AArch32
2020-04-15 12:41 ` Peter Maydell
@ 2020-04-15 12:42 ` Daniel P. Berrangé
0 siblings, 0 replies; 7+ messages in thread
From: Daniel P. Berrangé @ 2020-04-15 12:42 UTC (permalink / raw)
To: Peter Maydell; +Cc: qemu-arm, QEMU Developers
On Wed, Apr 15, 2020 at 01:41:05PM +0100, Peter Maydell wrote:
> On Wed, 15 Apr 2020 at 13:33, Daniel P. Berrangé <berrange@redhat.com> wrote:
> >
> > On Tue, Apr 14, 2020 at 01:09:35PM +0100, Peter Maydell wrote:
> > > The Linux kernel has dropped support for allowing 32-bit Arm systems
> > > to host KVM guests (kernel commit 541ad0150ca4aa663a2, which just
> > > landed upstream in the 5.7 merge window). Mark QEMU's support for
> > > this configuration as deprecated, so that we can delete that support
> > > code in 5.2.
> > >
> > > Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
> > > ---
> > > I was reading the 5.7 merge window writeup on LWN this weekend
> > > and saw that the dropping of 32-bit support had gone in; just
> > > enough time to squeeze our deprecation warning into 5.0 so we
> > > can drop the code in 5.2 rather than 6.0...
> > >
> > > docs/system/deprecated.rst | 8 ++++++++
> > > 1 file changed, 8 insertions(+)
> >
> > The docs are sufficient to start the deprecation process, but
> > we might consider also having a warning from configure, or a
> > message on stderr at runtime to make it more visible to users.
>
> Mmm. I didn't feel entirely comfortable making code changes to
> print messages at this point in the 5.0 release cycle, though.
Sure, that's understandable.
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] 7+ messages in thread
* Re: [for-5.0] Deprecate KVM support for AArch32
2020-04-14 12:09 [for-5.0] Deprecate KVM support for AArch32 Peter Maydell
` (2 preceding siblings ...)
2020-04-15 12:33 ` Daniel P. Berrangé
@ 2020-04-15 15:12 ` Alex Bennée
3 siblings, 0 replies; 7+ messages in thread
From: Alex Bennée @ 2020-04-15 15:12 UTC (permalink / raw)
To: Peter Maydell; +Cc: qemu-arm, qemu-devel
Peter Maydell <peter.maydell@linaro.org> writes:
> The Linux kernel has dropped support for allowing 32-bit Arm systems
> to host KVM guests (kernel commit 541ad0150ca4aa663a2, which just
> landed upstream in the 5.7 merge window). Mark QEMU's support for
> this configuration as deprecated, so that we can delete that support
> code in 5.2.
>
> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
> ---
> I was reading the 5.7 merge window writeup on LWN this weekend
> and saw that the dropping of 32-bit support had gone in; just
> enough time to squeeze our deprecation warning into 5.0 so we
> can drop the code in 5.2 rather than 6.0...
>
> docs/system/deprecated.rst | 8 ++++++++
> 1 file changed, 8 insertions(+)
>
> diff --git a/docs/system/deprecated.rst b/docs/system/deprecated.rst
> index c633fe2beff..3142fac3865 100644
> --- a/docs/system/deprecated.rst
> +++ b/docs/system/deprecated.rst
> @@ -336,6 +336,14 @@ The ``compat`` property used to set backwards compatibility modes for
> the processor has been deprecated. The ``max-cpu-compat`` property of
> the ``pseries`` machine type should be used instead.
>
> +KVM guest support on 32-bit Arm hosts (since 5.0)
> +'''''''''''''''''''''''''''''''''''''''''''''''''
> +
> +The Linux kernel has dropped support for allowing 32-bit Arm systems
> +to host KVM guests as of the 5.7 kernel. Accordingly, QEMU is deprecating
> +its support for this configuration and will remove it in a future version.
> +Running 32-bit guests on a 64-bit Arm host remains supported.
> +
> System emulator devices
> -----------------------
--
Alex Bennée
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2020-04-15 15:13 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-04-14 12:09 [for-5.0] Deprecate KVM support for AArch32 Peter Maydell
2020-04-14 12:59 ` Andrew Jones
2020-04-14 16:29 ` Richard Henderson
2020-04-15 12:33 ` Daniel P. Berrangé
2020-04-15 12:41 ` Peter Maydell
2020-04-15 12:42 ` Daniel P. Berrangé
2020-04-15 15:12 ` Alex Bennée
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).