qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] Misc trivial Rust docs patches
@ 2025-08-07 13:02 Manos Pitsidianakis
  2025-08-07 13:02 ` [PATCH 1/2] docs/devel/rust: Add mention of 128bit integers Manos Pitsidianakis
  2025-08-07 13:02 ` [PATCH 2/2] MAINTAINERS: add Rust docs to qemu-rust entry Manos Pitsidianakis
  0 siblings, 2 replies; 5+ messages in thread
From: Manos Pitsidianakis @ 2025-08-07 13:02 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-rust, pbonzini, zhao1.liu, Manos Pitsidianakis

Signed-off-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
---
Manos Pitsidianakis (2):
      docs/devel/rust: Add mention of 128bit integers
      MAINTAINERS: add Rust docs to qemu-rust entry

 MAINTAINERS         | 1 +
 docs/devel/rust.rst | 2 ++
 2 files changed, 3 insertions(+)
---
base-commit: e0006a86615baa70bc9d8b183e528aed91c1ac90
change-id: 20250807-rust-docs-add-128bit-mention-efee85c29aed

--
γαῖα πυρί μιχθήτω



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

* [PATCH 1/2] docs/devel/rust: Add mention of 128bit integers
  2025-08-07 13:02 [PATCH 0/2] Misc trivial Rust docs patches Manos Pitsidianakis
@ 2025-08-07 13:02 ` Manos Pitsidianakis
  2025-08-07 15:11   ` Alex Bennée
  2025-08-07 13:02 ` [PATCH 2/2] MAINTAINERS: add Rust docs to qemu-rust entry Manos Pitsidianakis
  1 sibling, 1 reply; 5+ messages in thread
From: Manos Pitsidianakis @ 2025-08-07 13:02 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-rust, pbonzini, zhao1.liu, Manos Pitsidianakis

FFI and 128bit integers are now stable in 1.89.0, add a mention in the
"missing" list.

Signed-off-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
---
 docs/devel/rust.rst | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/docs/devel/rust.rst b/docs/devel/rust.rst
index b6737536c694fd54fd0d3204c0dd1145a9b0e973..91b1eab78df0e0e25baef746d378717bc8dedcd4 100644
--- a/docs/devel/rust.rst
+++ b/docs/devel/rust.rst
@@ -105,6 +105,8 @@ are missing:
   ``callbacks::FnCall``, but is still experimental.  ``ASSERT_IS_SOME``
   replaces it.
 
+* FFI support for 128-bit integers (`stable in 1.89.0 <https://blog.rust-lang.org/2025/08/07/Rust-1.89.0/#i128-and-u128-in-extern-c-functions>`_)
+
 __ https://github.com/rust-lang/rust/pull/125258
 
 QEMU also supports version 0.60.x of bindgen, which is missing option

-- 
2.47.2



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

* [PATCH 2/2] MAINTAINERS: add Rust docs to qemu-rust entry
  2025-08-07 13:02 [PATCH 0/2] Misc trivial Rust docs patches Manos Pitsidianakis
  2025-08-07 13:02 ` [PATCH 1/2] docs/devel/rust: Add mention of 128bit integers Manos Pitsidianakis
@ 2025-08-07 13:02 ` Manos Pitsidianakis
  2025-08-07 15:11   ` Alex Bennée
  1 sibling, 1 reply; 5+ messages in thread
From: Manos Pitsidianakis @ 2025-08-07 13:02 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-rust, pbonzini, zhao1.liu, Manos Pitsidianakis

Cc qemu-rust list when touching developer Rust docs

Signed-off-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
---
 MAINTAINERS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index a07086ed76213e3a204bbbf3a83137f1487e4b65..82011bb097fccac3dcc9df46cdb15afa41c44cbb 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -3519,6 +3519,7 @@ Rust-related patches CC here
 L: qemu-rust@nongnu.org
 F: tests/docker/test-rust
 F: rust/
+F: docs/devel/rust.rst
 
 SLIRP
 M: Samuel Thibault <samuel.thibault@ens-lyon.org>

-- 
2.47.2



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

* Re: [PATCH 1/2] docs/devel/rust: Add mention of 128bit integers
  2025-08-07 13:02 ` [PATCH 1/2] docs/devel/rust: Add mention of 128bit integers Manos Pitsidianakis
@ 2025-08-07 15:11   ` Alex Bennée
  0 siblings, 0 replies; 5+ messages in thread
From: Alex Bennée @ 2025-08-07 15:11 UTC (permalink / raw)
  To: Manos Pitsidianakis; +Cc: qemu-devel, qemu-rust, pbonzini, zhao1.liu

Manos Pitsidianakis <manos.pitsidianakis@linaro.org> writes:

> FFI and 128bit integers are now stable in 1.89.0, add a mention in the
> "missing" list.
>
> Signed-off-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>

Reviewed-by: Alex Bennée <alex.bennee@linaro.org>

-- 
Alex Bennée
Virtualisation Tech Lead @ Linaro


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

* Re: [PATCH 2/2] MAINTAINERS: add Rust docs to qemu-rust entry
  2025-08-07 13:02 ` [PATCH 2/2] MAINTAINERS: add Rust docs to qemu-rust entry Manos Pitsidianakis
@ 2025-08-07 15:11   ` Alex Bennée
  0 siblings, 0 replies; 5+ messages in thread
From: Alex Bennée @ 2025-08-07 15:11 UTC (permalink / raw)
  To: Manos Pitsidianakis; +Cc: qemu-devel, qemu-rust, pbonzini, zhao1.liu

Manos Pitsidianakis <manos.pitsidianakis@linaro.org> writes:

> Cc qemu-rust list when touching developer Rust docs
>
> Signed-off-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>

Reviewed-by: Alex Bennée <alex.bennee@linaro.org>

> ---
>  MAINTAINERS | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/MAINTAINERS b/MAINTAINERS
> index a07086ed76213e3a204bbbf3a83137f1487e4b65..82011bb097fccac3dcc9df46cdb15afa41c44cbb 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -3519,6 +3519,7 @@ Rust-related patches CC here
>  L: qemu-rust@nongnu.org
>  F: tests/docker/test-rust
>  F: rust/
> +F: docs/devel/rust.rst
>  
>  SLIRP
>  M: Samuel Thibault <samuel.thibault@ens-lyon.org>

-- 
Alex Bennée
Virtualisation Tech Lead @ Linaro


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

end of thread, other threads:[~2025-08-07 15:12 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-07 13:02 [PATCH 0/2] Misc trivial Rust docs patches Manos Pitsidianakis
2025-08-07 13:02 ` [PATCH 1/2] docs/devel/rust: Add mention of 128bit integers Manos Pitsidianakis
2025-08-07 15:11   ` Alex Bennée
2025-08-07 13:02 ` [PATCH 2/2] MAINTAINERS: add Rust docs to qemu-rust entry Manos Pitsidianakis
2025-08-07 15:11   ` 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).