qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH-for-10.2 v3 0/2] docs: Update around MIPS/PPC host removal
@ 2025-11-17 17:12 Philippe Mathieu-Daudé
  2025-11-17 17:12 ` [PATCH-for-10.2 v3 1/2] docs: Correct release of MIPS deprecations / removals Philippe Mathieu-Daudé
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Philippe Mathieu-Daudé @ 2025-11-17 17:12 UTC (permalink / raw)
  To: qemu-devel
  Cc: devel, Daniel P . Berrangé, qemu-ppc,
	Philippe Mathieu-Daudé, Nicholas Piggin, Chinmay Rath,
	Jiaxun Yang, Thomas Huth

Since v2:
- Generic 32-bit host removal message (danpb)
Since v1:
- 11.0 -> 10.2

v0 Cover:
- Clarify MIPS host removal
- Mention PPC host was removed

Philippe Mathieu-Daudé (2):
  docs: Correct release of MIPS deprecations / removals
  docs: Mention 32-bit PPC host as removed

 docs/about/deprecated.rst       | 2 +-
 docs/about/removed-features.rst | 7 ++++++-
 2 files changed, 7 insertions(+), 2 deletions(-)

-- 
2.51.0



^ permalink raw reply	[flat|nested] 7+ messages in thread

* [PATCH-for-10.2 v3 1/2] docs: Correct release of MIPS deprecations / removals
  2025-11-17 17:12 [PATCH-for-10.2 v3 0/2] docs: Update around MIPS/PPC host removal Philippe Mathieu-Daudé
@ 2025-11-17 17:12 ` Philippe Mathieu-Daudé
  2025-11-17 17:24   ` Daniel P. Berrangé
  2025-11-17 17:12 ` [PATCH-for-10.2 v3 2/2] docs: Mention 32-bit PPC host as removed Philippe Mathieu-Daudé
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 7+ messages in thread
From: Philippe Mathieu-Daudé @ 2025-11-17 17:12 UTC (permalink / raw)
  To: qemu-devel
  Cc: devel, Daniel P . Berrangé, qemu-ppc,
	Philippe Mathieu-Daudé, Nicholas Piggin, Chinmay Rath,
	Jiaxun Yang, Thomas Huth

We are going to release 10.2, not 11.0 :)

Reported-by: Daniel P. Berrangé <berrange@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---
 docs/about/deprecated.rst       | 2 +-
 docs/about/removed-features.rst | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/about/deprecated.rst b/docs/about/deprecated.rst
index 03e29915f0a..30ab72b2a4c 100644
--- a/docs/about/deprecated.rst
+++ b/docs/about/deprecated.rst
@@ -192,7 +192,7 @@ The ``info capture`` command is deprecated and will be removed in a future relea
 Host Architectures
 ------------------
 
-MIPS (since 11.0)
+MIPS (since 10.2)
 '''''''''''''''''
 
 MIPS is not supported by Debian 13 ("Trixie") and newer, making it hard to
diff --git a/docs/about/removed-features.rst b/docs/about/removed-features.rst
index 88ea0dc4edc..a72df26dd24 100644
--- a/docs/about/removed-features.rst
+++ b/docs/about/removed-features.rst
@@ -896,7 +896,7 @@ work around the atomicity issues in system mode by running all vCPUs
 in a single thread context; in user mode atomicity was simply broken.
 From 10.0, QEMU has disabled configuration of 64-bit guests on 32-bit hosts.
 
-32-bit MIPS (since 11.0)
+32-bit MIPS (since 10.2)
 ''''''''''''''''''''''''
 
 Debian 12 "Bookworm" removed support for 32-bit MIPS, making it hard to
-- 
2.51.0



^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [PATCH-for-10.2 v3 2/2] docs: Mention 32-bit PPC host as removed
  2025-11-17 17:12 [PATCH-for-10.2 v3 0/2] docs: Update around MIPS/PPC host removal Philippe Mathieu-Daudé
  2025-11-17 17:12 ` [PATCH-for-10.2 v3 1/2] docs: Correct release of MIPS deprecations / removals Philippe Mathieu-Daudé
@ 2025-11-17 17:12 ` Philippe Mathieu-Daudé
  2025-11-18  4:12   ` Harsh Prateek Bora
  2025-11-18  8:43 ` [PATCH-for-10.2 v3 0/2] docs: Update around MIPS/PPC host removal Richard Henderson
  2025-11-18 18:14 ` Philippe Mathieu-Daudé
  3 siblings, 1 reply; 7+ messages in thread
From: Philippe Mathieu-Daudé @ 2025-11-17 17:12 UTC (permalink / raw)
  To: qemu-devel
  Cc: devel, Daniel P . Berrangé, qemu-ppc,
	Philippe Mathieu-Daudé, Nicholas Piggin, Chinmay Rath,
	Jiaxun Yang, Thomas Huth

We removed support for 32-bit PPC hosts in commit 5c1ec5a1ee0
("tcg/ppc: Remove support for 32-bit hosts").

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---
 docs/about/removed-features.rst | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/docs/about/removed-features.rst b/docs/about/removed-features.rst
index a72df26dd24..422b9c98d35 100644
--- a/docs/about/removed-features.rst
+++ b/docs/about/removed-features.rst
@@ -902,6 +902,11 @@ From 10.0, QEMU has disabled configuration of 64-bit guests on 32-bit hosts.
 Debian 12 "Bookworm" removed support for 32-bit MIPS, making it hard to
 maintain our cross-compilation CI tests of the architecture.
 
+32-bit PPC (since 10.2)
+'''''''''''''''''''''''
+
+The QEMU project no longer supports 32-bit host builds.
+
 Guest Emulator ISAs
 -------------------
 
-- 
2.51.0



^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH-for-10.2 v3 1/2] docs: Correct release of MIPS deprecations / removals
  2025-11-17 17:12 ` [PATCH-for-10.2 v3 1/2] docs: Correct release of MIPS deprecations / removals Philippe Mathieu-Daudé
@ 2025-11-17 17:24   ` Daniel P. Berrangé
  0 siblings, 0 replies; 7+ messages in thread
From: Daniel P. Berrangé @ 2025-11-17 17:24 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé
  Cc: qemu-devel, devel, qemu-ppc, Nicholas Piggin, Chinmay Rath,
	Jiaxun Yang, Thomas Huth

On Mon, Nov 17, 2025 at 06:12:34PM +0100, Philippe Mathieu-Daudé wrote:
> We are going to release 10.2, not 11.0 :)
> 
> Reported-by: Daniel P. Berrangé <berrange@redhat.com>
> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
> ---
>  docs/about/deprecated.rst       | 2 +-
>  docs/about/removed-features.rst | 2 +-
>  2 files changed, 2 insertions(+), 2 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] 7+ messages in thread

* Re: [PATCH-for-10.2 v3 2/2] docs: Mention 32-bit PPC host as removed
  2025-11-17 17:12 ` [PATCH-for-10.2 v3 2/2] docs: Mention 32-bit PPC host as removed Philippe Mathieu-Daudé
@ 2025-11-18  4:12   ` Harsh Prateek Bora
  0 siblings, 0 replies; 7+ messages in thread
From: Harsh Prateek Bora @ 2025-11-18  4:12 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé, qemu-devel
  Cc: devel, Daniel P . Berrangé, qemu-ppc, Nicholas Piggin,
	Chinmay Rath, Jiaxun Yang, Thomas Huth



On 11/17/25 22:42, Philippe Mathieu-Daudé wrote:
> We removed support for 32-bit PPC hosts in commit 5c1ec5a1ee0
> ("tcg/ppc: Remove support for 32-bit hosts").
> 
> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>

Acked-by: Harsh Prateek Bora <harshpb@linux.ibm.com>

> ---
>   docs/about/removed-features.rst | 5 +++++
>   1 file changed, 5 insertions(+)
> 
> diff --git a/docs/about/removed-features.rst b/docs/about/removed-features.rst
> index a72df26dd24..422b9c98d35 100644
> --- a/docs/about/removed-features.rst
> +++ b/docs/about/removed-features.rst
> @@ -902,6 +902,11 @@ From 10.0, QEMU has disabled configuration of 64-bit guests on 32-bit hosts.
>   Debian 12 "Bookworm" removed support for 32-bit MIPS, making it hard to
>   maintain our cross-compilation CI tests of the architecture.
>   
> +32-bit PPC (since 10.2)
> +'''''''''''''''''''''''
> +
> +The QEMU project no longer supports 32-bit host builds.
> +
>   Guest Emulator ISAs
>   -------------------
>   


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH-for-10.2 v3 0/2] docs: Update around MIPS/PPC host removal
  2025-11-17 17:12 [PATCH-for-10.2 v3 0/2] docs: Update around MIPS/PPC host removal Philippe Mathieu-Daudé
  2025-11-17 17:12 ` [PATCH-for-10.2 v3 1/2] docs: Correct release of MIPS deprecations / removals Philippe Mathieu-Daudé
  2025-11-17 17:12 ` [PATCH-for-10.2 v3 2/2] docs: Mention 32-bit PPC host as removed Philippe Mathieu-Daudé
@ 2025-11-18  8:43 ` Richard Henderson
  2025-11-18 18:14 ` Philippe Mathieu-Daudé
  3 siblings, 0 replies; 7+ messages in thread
From: Richard Henderson @ 2025-11-18  8:43 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé, qemu-devel
  Cc: devel, Daniel P . Berrangé, qemu-ppc, Nicholas Piggin,
	Chinmay Rath, Jiaxun Yang, Thomas Huth

On 11/17/25 18:12, Philippe Mathieu-Daudé wrote:
> Since v2:
> - Generic 32-bit host removal message (danpb)
> Since v1:
> - 11.0 -> 10.2
> 
> v0 Cover:
> - Clarify MIPS host removal
> - Mention PPC host was removed
> 
> Philippe Mathieu-Daudé (2):
>    docs: Correct release of MIPS deprecations / removals
>    docs: Mention 32-bit PPC host as removed
> 
>   docs/about/deprecated.rst       | 2 +-
>   docs/about/removed-features.rst | 7 ++++++-
>   2 files changed, 7 insertions(+), 2 deletions(-)
> 
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>

r~


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH-for-10.2 v3 0/2] docs: Update around MIPS/PPC host removal
  2025-11-17 17:12 [PATCH-for-10.2 v3 0/2] docs: Update around MIPS/PPC host removal Philippe Mathieu-Daudé
                   ` (2 preceding siblings ...)
  2025-11-18  8:43 ` [PATCH-for-10.2 v3 0/2] docs: Update around MIPS/PPC host removal Richard Henderson
@ 2025-11-18 18:14 ` Philippe Mathieu-Daudé
  3 siblings, 0 replies; 7+ messages in thread
From: Philippe Mathieu-Daudé @ 2025-11-18 18:14 UTC (permalink / raw)
  To: qemu-devel
  Cc: devel, Daniel P . Berrangé, qemu-ppc, Nicholas Piggin,
	Chinmay Rath, Jiaxun Yang, Thomas Huth

On 17/11/25 18:12, Philippe Mathieu-Daudé wrote:

> Philippe Mathieu-Daudé (2):
>    docs: Correct release of MIPS deprecations / removals
>    docs: Mention 32-bit PPC host as removed

Series queued, thanks.


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2025-11-18 18:15 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-17 17:12 [PATCH-for-10.2 v3 0/2] docs: Update around MIPS/PPC host removal Philippe Mathieu-Daudé
2025-11-17 17:12 ` [PATCH-for-10.2 v3 1/2] docs: Correct release of MIPS deprecations / removals Philippe Mathieu-Daudé
2025-11-17 17:24   ` Daniel P. Berrangé
2025-11-17 17:12 ` [PATCH-for-10.2 v3 2/2] docs: Mention 32-bit PPC host as removed Philippe Mathieu-Daudé
2025-11-18  4:12   ` Harsh Prateek Bora
2025-11-18  8:43 ` [PATCH-for-10.2 v3 0/2] docs: Update around MIPS/PPC host removal Richard Henderson
2025-11-18 18:14 ` Philippe Mathieu-Daudé

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).