qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/29] Rust, QOM, docs changes for 2025-09-24
@ 2025-09-24  9:28 Paolo Bonzini
  2025-09-24  9:28 ` [PULL 01/29] docs: use the pyvenv version of Meson Paolo Bonzini
                   ` (29 more replies)
  0 siblings, 30 replies; 31+ messages in thread
From: Paolo Bonzini @ 2025-09-24  9:28 UTC (permalink / raw)
  To: qemu-devel

The following changes since commit ab8008b231e758e03c87c1c483c03afdd9c02e19:

  Merge tag 'pull-9p-20250918' of https://github.com/cschoenebeck/qemu into staging (2025-09-19 12:21:35 -0700)

are available in the Git repository at:

  https://gitlab.com/bonzini/qemu.git tags/for-upstream

for you to fetch changes up to cd64320e1e27168d3796a847bbfde66c8b1116f9:

  docs/code-provenance: AI exceptions are in addition to DCO (2025-09-24 09:26:24 +0200)

----------------------------------------------------------------
* qom: Do not unparent in instance_finalize
* linux-user: avoid -Werror=int-in-bool-context
* docs: use the pyvenv version of Meson
* rust: parse attributes using the attrs crate
* rust: complete conversion of qdev properties to proc macro
* docs: clarify AI-generated content policy

----------------------------------------------------------------
Akihiko Odaki (7):
      docs/devel: Do not unparent in instance_finalize()
      vfio/pci: Do not unparent in instance_finalize()
      hw/core/register: Do not unparent in instance_finalize()
      hv-balloon: hw/core/register: Do not unparent in instance_finalize()
      hw/sd/sdhci: Do not unparent in instance_finalize()
      vfio: Do not unparent in instance_finalize()
      hw/xen: Do not unparent in instance_finalize()

Manos Pitsidianakis (2):
      rust/qdev: use addr_of! in QDevProp
      rust/qdev: Refine the documentation for QDevProp trait

Paolo Bonzini (10):
      docs: use the pyvenv version of Meson
      rust: build: add back common and util tests
      rust: vmstate: use "cast()" instead of "as"
      rust: build: remove "protocol: rust: from doctests
      subprojects: add attrs crate
      rust: qemu-macros: switch #[property] parsing to use combinators
      linux-user: avoid -Werror=int-in-bool-context
      docs/code-provenance: clarify scope very early
      docs/code-provenance: make the exception process more prominent
      docs/code-provenance: AI exceptions are in addition to DCO

Zhao Liu (10):
      subprojects: Update .gitignore for proc-macro2 and syn
      subprojects: Ignore .wraplock file generated by meson v1.9.0
      rust/qemu-macros: Fix Clippy's complaints about lambda parameter naming
      rust/common/uninit: Fix Clippy's complaints about lifetime
      rust/qdev: Support property info for more common types
      rust/qdev: Support bit property in #property macro
      rust/qdev: Test bit property for #property
      rust/hpet: Clean up type mismatch for num_timers property
      rust/hpet: Convert qdev properties to #property macro
      rust/qdev: Drop declare_properties & define_property macros

 docs/devel/build-system.rst                       |   2 +-
 docs/devel/code-provenance.rst                    |  33 ++++---
 docs/devel/memory.rst                             |  17 ++--
 docs/devel/rust.rst                               |   2 +-
 docs/system/devices/igb.rst                       |   2 +-
 hw/core/register.c                                |   1 -
 hw/hyperv/hv-balloon.c                            |  12 +--
 hw/sd/sdhci.c                                     |   4 -
 hw/vfio/pci-quirks.c                              |   9 +-
 hw/vfio/pci.c                                     |   4 -
 hw/vfio/region.c                                  |   3 -
 hw/xen/xen_pt_msi.c                               |  11 +--
 linux-user/strace.c                               |   2 +-
 rust/Cargo.lock                                   |  11 +++
 rust/bql/meson.build                              |   1 -
 rust/common/meson.build                           |   4 +-
 rust/common/src/uninit.rs                         |   4 +-
 rust/hw/core/src/qdev.rs                          | 105 +++++++-------------
 rust/hw/timer/hpet/src/device.rs                  |  55 ++---------
 rust/meson.build                                  |   2 +
 rust/migration/meson.build                        |   1 -
 rust/migration/src/vmstate.rs                     |   2 +-
 rust/qemu-macros/Cargo.toml                       |   1 +
 rust/qemu-macros/meson.build                      |   1 +
 rust/qemu-macros/src/lib.rs                       | 108 ++++++++++-----------
 rust/qemu-macros/src/tests.rs                     | 113 +++++++++++++++++++++-
 rust/qom/meson.build                              |   1 -
 rust/util/meson.build                             |   5 +-
 scripts/archive-source.sh                         |   2 +-
 scripts/make-release                              |   2 +-
 subprojects/.gitignore                            |   6 +-
 subprojects/attrs-0.2-rs.wrap                     |   7 ++
 subprojects/packagefiles/attrs-0.2-rs/meson.build |  33 +++++++
 33 files changed, 306 insertions(+), 260 deletions(-)
 create mode 100644 subprojects/attrs-0.2-rs.wrap
 create mode 100644 subprojects/packagefiles/attrs-0.2-rs/meson.build
-- 
2.51.0



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

end of thread, other threads:[~2025-09-24 21:17 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-24  9:28 [PULL 00/29] Rust, QOM, docs changes for 2025-09-24 Paolo Bonzini
2025-09-24  9:28 ` [PULL 01/29] docs: use the pyvenv version of Meson Paolo Bonzini
2025-09-24  9:28 ` [PULL 02/29] rust: build: add back common and util tests Paolo Bonzini
2025-09-24  9:28 ` [PULL 03/29] rust: vmstate: use "cast()" instead of "as" Paolo Bonzini
2025-09-24  9:28 ` [PULL 04/29] rust: build: remove "protocol: rust: from doctests Paolo Bonzini
2025-09-24  9:28 ` [PULL 05/29] subprojects: add attrs crate Paolo Bonzini
2025-09-24  9:28 ` [PULL 06/29] rust: qemu-macros: switch #[property] parsing to use combinators Paolo Bonzini
2025-09-24  9:28 ` [PULL 07/29] subprojects: Update .gitignore for proc-macro2 and syn Paolo Bonzini
2025-09-24  9:28 ` [PULL 08/29] subprojects: Ignore .wraplock file generated by meson v1.9.0 Paolo Bonzini
2025-09-24  9:28 ` [PULL 09/29] rust/qemu-macros: Fix Clippy's complaints about lambda parameter naming Paolo Bonzini
2025-09-24  9:28 ` [PULL 10/29] rust/common/uninit: Fix Clippy's complaints about lifetime Paolo Bonzini
2025-09-24  9:28 ` [PULL 11/29] rust/qdev: use addr_of! in QDevProp Paolo Bonzini
2025-09-24  9:28 ` [PULL 12/29] rust/qdev: Refine the documentation for QDevProp trait Paolo Bonzini
2025-09-24  9:28 ` [PULL 13/29] rust/qdev: Support property info for more common types Paolo Bonzini
2025-09-24  9:28 ` [PULL 14/29] rust/qdev: Support bit property in #property macro Paolo Bonzini
2025-09-24  9:28 ` [PULL 15/29] rust/qdev: Test bit property for #property Paolo Bonzini
2025-09-24  9:28 ` [PULL 16/29] rust/hpet: Clean up type mismatch for num_timers property Paolo Bonzini
2025-09-24  9:28 ` [PULL 17/29] rust/hpet: Convert qdev properties to #property macro Paolo Bonzini
2025-09-24  9:28 ` [PULL 18/29] rust/qdev: Drop declare_properties & define_property macros Paolo Bonzini
2025-09-24  9:28 ` [PULL 19/29] linux-user: avoid -Werror=int-in-bool-context Paolo Bonzini
2025-09-24  9:28 ` [PULL 20/29] docs/devel: Do not unparent in instance_finalize() Paolo Bonzini
2025-09-24  9:28 ` [PULL 21/29] vfio/pci: " Paolo Bonzini
2025-09-24  9:28 ` [PULL 22/29] hw/core/register: " Paolo Bonzini
2025-09-24  9:28 ` [PULL 23/29] hv-balloon: " Paolo Bonzini
2025-09-24  9:28 ` [PULL 24/29] hw/sd/sdhci: " Paolo Bonzini
2025-09-24  9:28 ` [PULL 25/29] vfio: " Paolo Bonzini
2025-09-24  9:28 ` [PULL 26/29] hw/xen: " Paolo Bonzini
2025-09-24  9:28 ` [PULL 27/29] docs/code-provenance: clarify scope very early Paolo Bonzini
2025-09-24  9:28 ` [PULL 28/29] docs/code-provenance: make the exception process more prominent Paolo Bonzini
2025-09-24  9:28 ` [PULL 29/29] docs/code-provenance: AI exceptions are in addition to DCO Paolo Bonzini
2025-09-24 21:16 ` [PULL 00/29] Rust, QOM, docs changes for 2025-09-24 Richard Henderson

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