On Tue, Oct 15, 2024 at 03:17:25PM +0200, Paolo Bonzini wrote: > Date: Tue, 15 Oct 2024 15:17:25 +0200 > From: Paolo Bonzini <pbonz...@redhat.com> > Subject: [PATCH 07/16] rust: use std::os::raw instead of core::ffi > X-Mailer: git-send-email 2.46.2 > > core::ffi::c_* types were introduced in Rust 1.64.0. Use the older types > in std::os::raw, which are now aliases of the types in core::ffi. There is > no need to compile QEMU as no_std, so this is acceptable as long as we support > a version of Debian with Rust 1.63.0. > > Signed-off-by: Paolo Bonzini <pbonz...@redhat.com> > --- > meson.build | 3 +-- > rust/hw/char/pl011/src/device.rs | 20 +++++++++++--------- > rust/hw/char/pl011/src/lib.rs | 2 +- > rust/hw/char/pl011/src/memory_ops.rs | 10 ++++++---- > rust/qemu-api/src/definitions.rs | 4 +++- > rust/qemu-api/src/device_class.rs | 8 ++++---- > rust/qemu-api/src/lib.rs | 8 +++++--- > 7 files changed, 31 insertions(+), 24 deletions(-) >
Reviewed-by: Zhao Liu <zhao1....@intel.com>