messages from 2025-10-22 08:10:04 to 2025-12-10 14:13:08 UTC [more...]
[PATCH 00/19] rust: QObject and QAPI bindings
2025-12-10 14:12 UTC (28+ messages)
` [PATCH 03/19] rust: do not add qemuutil to Rust crates
` [PATCH 04/19] rust/qobject: add basic bindings
` [PATCH 06/19] rust/qobject: add Serialize implementation
` [PATCH 11/19] rust/qobject: add from/to JSON bindings for QObject
` [PATCH 13/19] scripts/qapi: add QAPISchemaIfCond.rsgen()
` [PATCH 14/19] scripts/qapi: generate high-level Rust bindings
` [PATCH 15/19] scripts/qapi: add serde attributes
` [PATCH 16/19] scripts/qapi: strip trailing whitespaces
[PATCH] rust: hide panicking default associated constants from rustdoc
2025-12-08 3:36 UTC (2+ messages)
[PATCH v3 0/4] rust/hw: Add the I2C and the first GPIO device
2025-12-07 3:33 UTC (5+ messages)
` [PATCH v3 1/4] rust/hw/core: Add the BusState of rust version
` [PATCH v3 2/4] rust/hw/core: Add rust bindings/funcs for i2c bus
` [PATCH v3 3/4] rust/hw/core: Provide some interfaces for the GPIO device
` [PATCH v3 4/4] rust/hw/gpio: Add the the first gpio device pcf8574
[PATCH 02/14] rust: add basic QObject bindings
2025-12-05 11:30 UTC (19+ messages)
` [PATCH 03/14] subprojects: add serde
` [PATCH 04/14] rust: add Serialize implementation for QObject
` [PATCH 05/14] rust: add Serializer (to_qobject) "
` [PATCH 06/14] rust: add Deserialize "
` [PATCH 07/14] rust: add Deserializer (from_qobject) "
` [PATCH 08/11] rust: qemu-macros: add ToMigrationState derive macro
[PATCH 0/9] rust: build system and other cleanups
2025-12-03 15:29 UTC (18+ messages)
` [PATCH 1/9] rust: remove leftover bindings/
` [PATCH 2/9] rust: remove unused --cfg arguments
` [PATCH 3/9] rust: remove unnecessary repetitive options
` [PATCH 4/9] rust/bql: make bindings public
` [PATCH 5/9] rust: do not copy the SysBusDevice
` [PATCH 6/9] rust: fix reference to MemoryRegion
` [PATCH 7/9] rust: move strict lints handling to meson.build
` [PATCH 8/9] rust: Do not link qemuutil into Rust rlibs
` [PATCH 9/9] rust: only link the Rust part of the code into devices
[RFC 24/24] WIP: rust/audio: add GStreamer backend
2025-12-01 18:26 UTC (3+ messages)
[RFC PATCH V3 0/4] rust/hw: Add the I2C and the first GPIO device
2025-11-29 15:43 UTC (10+ messages)
` [RFC PATCH V3 1/4] rust/hw/core: Add the BusState of rust version
` [RESEND RFC "
` [RFC PATCH V3 2/4] rust/hw/core: Add rust bindings/funcs for i2c bus
` [RESEND RFC "
` [RFC PATCH V3 3/4] rust/hw/core: Provide some interfaces for the GPIO device
` [RESEND RFC "
` [RFC PATCH V3 4/4] rust/hw/gpio: Add the the first gpio device pcf8574
` [RESEND RFC "
` [RESEND RFC PATCH V3 0/4] rust/hw: Add the I2C and the first GPIO device
[PATCH] rust: workaround compilation failures with Meson <1.10
2025-11-28 9:42 UTC
[RFC PATCH v2 0/5] rust/hw: Add the I2C and the first GPIO device
2025-11-26 1:31 UTC (3+ messages)
[PATCH 0/5] rust/hpet: complete moving state out of HPETTimer
2025-11-24 8:57 UTC (14+ messages)
` [PATCH 1/5] rust/hpet: move hidden registers to HPETTimerRegisters
` [PATCH 2/5] rust/hpet: move hpet_offset to HPETRegisters
` [PATCH 3/5] rust/hpet: remove BqlRefCell around HPETTimer
` [PATCH 4/5] rust: migration: implement ToMigrationState for Timer
` [PATCH 5/5] rust/hpet: Apply Migratable<> wrapper and ToMigrationState
[PATCH v2 0/4] trace: add Rust DTrace/SystemTap SDT support
2025-11-21 10:02 UTC (8+ messages)
` [PATCH v2 1/4] hpet: remove unused trace events
` [PATCH v2 2/4] rust/hpet: add "
` [PATCH v2 3/4] subprojects: add probe crate
` [PATCH v2 4/4] tracetool: add Rust DTrace/SystemTap SDT support
[PATCH 0/2] trace: add Rust DTrace/SystemTap SDT support
2025-11-19 19:36 UTC (4+ messages)
` [PATCH 1/2] subprojects: add probe crate
` [PATCH 2/2] tracetool: add Rust DTrace/SystemTap SDT support
[PATCH 0/8] rust: add preludes to all crates
2025-11-17 8:36 UTC (11+ messages)
` [PATCH 1/8] util: add prelude
` [PATCH 2/8] common: "
` [PATCH 3/8] hwcore: "
` [PATCH 4/8] migration: "
` [PATCH 5/8] chardev: "
` [PATCH 6/8] bql: "
` [PATCH 7/8] system: "
` [PATCH 8/8] qom: add more to the prelude
[PATCH 00/22] rust/hpet: Move towards lockless IO, partly
2025-11-15 7:54 UTC (30+ messages)
` [PATCH 01/22] rust/migration: Add Sync implementation for Migratable<>
` [PATCH 02/22] rust/migration: Fix missing name in the VMSD of Migratable<>
` [PATCH 03/22] rust/migration: Check name field in VMStateDescriptionBuilder
` [PATCH 04/22] rust/bql: Add BqlGuard to provide BQL context
` [PATCH 05/22] rust/bql: Ensure BQL locked early at BqlRefCell borrowing
` [PATCH 06/22] rust/memory: Add enable_lockless_io binding
` [PATCH 07/22] rust/hpet: Reduce unnecessary mutable self argument
` [PATCH 08/22] rust/hpet: Rename HPETRegister to DecodedRegister
` [PATCH 09/22] rust/hpet: Rename decoded "reg" enumeration to "target"
` [PATCH 10/22] rust/hpet: Abstract HPETTimerRegisters struct
` [PATCH 11/22] rust/hpet: Make timer register accessors as methods of HPETTimerRegisters
` [PATCH 12/22] rust/hpet: Abstract HPETRegisters struct
` [PATCH 13/22] rust/hpet: Make global register accessors as methods of HPETRegisters
` [PATCH 14/22] rust/hpet: Borrow HPETState.regs once in HPETState::post_load()
` [PATCH 15/22] rust/hpet: Explicitly initialize complex fields in init()
` [PATCH 16/22] rust/hpet: Pass &BqlRefCell<HPETRegisters> as argument during MMIO access
` [PATCH 17/22] rust/hpet: Maintain HPETTimerRegisters in HPETRegisters
` [PATCH 18/22] rust/hpet: Borrow BqlRefCell<HPETRegisters> at top level
` [PATCH 19/22] rust/hpet: Rename hpet_regs variables to regs
` [PATCH 20/22] rust/hpet: Apply Migratable<> wrapper and ToMigrationState for HPETRegisters
` [PATCH 21/22] rust/hpet: Replace BqlRefCell<HPETRegisters> with Mutex<HPETRegisters>
` [PATCH 22/22] rust/hpet: Enable lockless IO
[PATCH 0/2] rust/hpet: add trace events
2025-11-11 8:23 UTC (6+ messages)
` [PATCH 1/2] hpet: remove unused "
` [PATCH 2/2] rust/hpet: add "
[PATCH 0/4] rust: improvements to errors
2025-11-04 15:47 UTC (9+ messages)
` [PATCH 1/4] rust/util: add ensure macro
` [PATCH 2/4] rust/util: use anyhow's native chaining capabilities
` [PATCH 3/4] rust/util: replace Error::err_or_unit/err_or_else with Error::with_errp
` [PATCH 4/4] rust: pull error_fatal out of SysbusDeviceMethods::sysbus_realize
[PATCH] rust: add back to Ubuntu 22.04 jobs
2025-11-01 9:46 UTC (2+ messages)
[PATCH] rust: migration: allow passing ParentField<> to vmstate_of!
2025-10-29 15:40 UTC (2+ messages)
[RFC PATCH v2 5/5] rust/hw/gpio: Add the the first gpio device pcf8574
2025-10-28 12:22 UTC (5+ messages)
[RFC PATCH v2 4/5] rust/hw/core: Provide some interfaces for the GPIO device
2025-10-28 11:38 UTC (5+ messages)
[RFC PATCH v2 2/5] rust/hw/core: Add rust bindings/funcs for i2c bus
2025-10-28 11:28 UTC (4+ messages)
[RFC PATCH v2 3/5] hw/gpio: Move the pcf8574 struct to header
2025-10-28 11:21 UTC (3+ messages)
[RFC PATCH v2 1/5] rust/hw/core: Add the BusState of rust version
2025-10-28 10:18 UTC
[RFC 2/5] rust: hw: core: Add rust bindings/funcs for i2c bus
2025-10-28 2:25 UTC (3+ messages)
[RFC 1/5] rust: hw: core: Add the BusState of rust version
2025-10-27 6:51 UTC (4+ messages)
[RFC 4/5] rust: hw: core: Provide some interfaces for the GPIO device
2025-10-25 12:38 UTC
[RFC 0/5] rust: hw: Add the I2C and the first GPIO device
2025-10-25 12:38 UTC
[RFC 3/5] hw: gpio: Move the pcf8574 struct to header
2025-10-25 12:38 UTC
[RFC 5/5] rust: hw: gpio: Add the the first gpio device pcf8574
2025-10-25 12:38 UTC
[PATCH v3] rust/qemu-macros: Convert bit value to u8 within #[property]
2025-10-25 9:47 UTC
[PATCH v2] rust/qemu-macros: Convert bit value to u8 within #[property]
2025-10-25 8:52 UTC (3+ messages)
[RFC PATCH 0/2] rust: Make common::Wrapper work with non-tuple structs
2025-10-23 13:54 UTC (3+ messages)
` [RFC PATCH 1/2] rust: Make common::Wrapper work with non-tuple structs as well
` [RFC PATCH 2/2] rust/util: Change Timer and TimerListGroup to normal structs
[PATCH v2] char: rename CharBackend->CharFrontend
2025-10-23 4:52 UTC (4+ messages)
From HUST OpenAtom Club: Inquiry & Contribution Plan for Rust In QEMU
2025-10-22 15:51 UTC (3+ messages)
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
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).