Struct kvm_bindings::kvm_s390_cmma_log
source · #[repr(C)]pub struct kvm_s390_cmma_log {
pub start_gfn: __u64,
pub count: __u32,
pub flags: __u32,
pub __bindgen_anon_1: kvm_s390_cmma_log__bindgen_ty_1,
pub values: __u64,
}Expand description
kvm_s390_cmma_log - Used for CMMA migration.
Used both for input and output.
@start_gfn: Guest page number to start from. @count: Size of the result buffer. @flags: Control operation mode via KVM_S390_CMMA_* flags @remaining: Used with KVM_S390_GET_CMMA_BITS. Indicates how many dirty pages are still remaining. @mask: Used with KVM_S390_SET_CMMA_BITS. Bitmap of bits to actually set in the PGSTE. @values: Pointer to the values buffer.
Used in KVM_S390_{G,S}ET_CMMA_BITS ioctls.
Fields
start_gfn: __u64count: __u32flags: __u32__bindgen_anon_1: kvm_s390_cmma_log__bindgen_ty_1values: __u64Trait Implementations
sourceimpl Clone for kvm_s390_cmma_log
impl Clone for kvm_s390_cmma_log
sourcefn clone(&self) -> kvm_s390_cmma_log
fn clone(&self) -> kvm_s390_cmma_log
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Default for kvm_s390_cmma_log
impl Default for kvm_s390_cmma_log
impl Copy for kvm_s390_cmma_log
Auto Trait Implementations
impl RefUnwindSafe for kvm_s390_cmma_log
impl Send for kvm_s390_cmma_log
impl Sync for kvm_s390_cmma_log
impl Unpin for kvm_s390_cmma_log
impl UnwindSafe for kvm_s390_cmma_log
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more