You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[#311] Allow compiling without the ReadVolatile and WriteVolatile implementations
[#312] GuestRegionContainer, a generic container of GuestMemoryRegions, generalizing GuestMemoryMmap (which
is now a type alias for GuestRegionContainer<GuestRegionMmap>).
[#338] Make GuestMemoryAtomic always implement Clone.
[#338] Make GuestAddressSpace a subtrait of Clone.
[#307] Move read_volatile_from, read_exact_volatile_from, write_volatile_to and write_all_volatile_to functions from the GuestMemory trait to the Bytes trait.
[#312]: Give GuestMemory::find_region and GuestMemory::num_regions
a default implementation, based on linear search.
[#312]: Provide a marker trait, GuestMemoryRegionBytes, which enables a default implementation of Bytes<MemoryRegionAddress>
for a GuestMemoryRegion if implemented.
[#312]: Adjust error types returned from GuestMemoryMmap::from_ranges[_with_files]
and GuestRegionMmap::from_range to be separate from the error type returned by GuestRegionCollection functions.
Change return type of GuestRegionMmap::new from Result to Option.
[#324] GuestMemoryRegion::bitmap() now returns a BitmapSlice. Accessing the full bitmap is now possible only if the type of the memory region is know, for example with MmapRegion::bitmap().
[#339] Implement Bytes::load() and Bytes::store() with get_slices() instead of to_region_addr()
[#320] Drop check_file_offset check when using MmapRegionBuilder.
The mmap(2) syscall itself already validates that offset and length are valid, and trying to replicate this check
in userspace ended up being imperfect.
Fixed
[#339] Fix Bytes::read() and Bytes::write() not to ignore try_access()'s count parameter
Deprecated
[#349] Deprecate GuestMemory::try_access(). Use GuestMemory::get_slices() instead.