qemu-rust.nongnu.org archive mirror
 help / color / mirror / Atom feed
 messages from 2025-10-01 08:04:42 to 2025-11-19 19:37:18 UTC [more...]

[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/5] rust/hpet: complete moving state out of HPETTimer
 2025-11-19 15:59 UTC  (11+ 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 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 01/14] qobject: make refcount atomic
 2025-11-04 14:41 UTC  (12+ messages)
` [PATCH 07/14] rust: add Deserializer (from_qobject) implementation for QObject
` [PATCH 08/14] rust/qobject: add Display/Debug
` [PATCH 10/14] scripts/qapi: generate high-level Rust bindings
` [PATCH 11/14] scripts/qapi: strip trailing whitespaces
` [PATCH 12/14] scripts/rustc_args: add --no-strict-cfg
` [PATCH 14/14] rust: start qapi tests
  ` [PATCH 08/11] rust: qemu-macros: add ToMigrationState derive macro

[PATCH] rust: add back to Ubuntu 22.04 jobs
 2025-11-01  9:46 UTC  (2+ messages)

[PATCH 00/19] rust: QObject and QAPI bindings
 2025-10-30 17:13 UTC  (21+ messages)
` [PATCH 01/19] util: add ensure macro
` [PATCH 02/19] rust/util: use anyhow's native chaining capabilities
` [PATCH 03/19] rust: do not add qemuutil to Rust crates
` [PATCH 04/19] rust/qobject: add basic bindings
` [PATCH 05/19] subprojects: add serde
` [PATCH 06/19] rust/qobject: add Serialize implementation
` [PATCH 07/19] rust/qobject: add Serializer (to_qobject) implementation
` [PATCH 08/19] rust/qobject: add Deserialize implementation
` [PATCH 09/19] rust/qobject: add Deserializer (from_qobject) implementation
` [PATCH 10/19] rust/util: replace Error::err_or_unit/err_or_else with Error::with_errp
` [PATCH 11/19] rust/qobject: add from/to JSON bindings for QObject
` [PATCH 12/19] rust/qobject: add Display/Debug
` [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 17/19] scripts/rustc_args: add --no-strict-cfg
` [PATCH 18/19] rust/util: build QAPI types
` [PATCH 19/19] rust/tests: QAPI integration tests

[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 0/5] rust/hw: Add the I2C and the first GPIO device
 2025-10-28 10:18 UTC 

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

[PATCH] char: rename CharBackend->CharFrontend
 2025-10-21 15:33 UTC  (9+ messages)

[PATCH] rust: remove useless glib_sys bindings
 2025-10-20  6:03 UTC  (2+ messages)

Rust in QEMU update, October 2025
 2025-10-15 11:21 UTC 

[PATCH] rust/qemu-macros: Convert bit value to u8 within #[property]
 2025-10-14 15:39 UTC  (3+ messages)

[PATCH] rust: hpet: fix fw_cfg handling
 2025-10-14  8:53 UTC  (2+ messages)

[PATCH] rust: temporarily disable double_parens check
 2025-10-10 14:14 UTC  (4+ messages)

[PATCH] rust: pl011: fix warning with new clippy
 2025-10-10 12:24 UTC  (2+ messages)

[PATCH] rust: fix path to rust_root_crate.sh
 2025-10-08 16:28 UTC  (5+ messages)

[PATCH] subprojects: Remove version number from .gitignore
 2025-10-08 16:07 UTC  (2+ messages)

[PATCH v2 00/27] CI/build-sys fixes to enable Rust more widely
 2025-10-02  0:00 UTC  (5+ messages)
` [PATCH v2 27/27] WIP: enable rust for wasm/emscripten

[PULL 00/16] Tracing patches
 2025-10-01 15:30 UTC  (17+ messages)
` [PULL 01/16] tracetool: fix usage of try_import()
` [PULL 02/16] tracetool: remove dead code
` [PULL 03/16] treewide: remove unnessary "coding" header
` [PULL 04/16] tracetool: add SPDX headers
` [PULL 05/16] trace/ftrace: move snprintf+write from tracepoints to ftrace.c
` [PULL 06/16] tracetool: add CHECK_TRACE_EVENT_GET_STATE
` [PULL 07/16] tracetool/backend: remove redundant trace event checks
` [PULL 08/16] tracetool: Add Rust format support
` [PULL 09/16] rust: add trace crate
` [PULL 10/16] rust: qdev: add minimal clock bindings
` [PULL 11/16] rust: pl011: add tracepoints
` [PULL 12/16] tracetool/simple: add Rust support
` [PULL 13/16] log: change qemu_loglevel to unsigned
` [PULL 14/16] tracetool/log: add Rust support
` [PULL 15/16] tracetool/ftrace: "
` [PULL 16/16] tracetool/syslog: "

[PATCH v2 00/16] tracetool: add Rust support
 2025-10-01 15:24 UTC  (2+ messages)


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