Struct devices::virtcpufreq_v2::VirtCpufreqV2
source · pub struct VirtCpufreqV2 {Show 19 fields
vcpu_freq_table: Vec<u32>,
pcpu_fmax: u32,
pcpu_capacity: u32,
pcpu: u32,
util_factor: u32,
freqtbl_sel: u32,
vcpu_domain: u32,
domain_uclamp_min: Option<File>,
domain_uclamp_max: Option<File>,
vcpu_fmax: u32,
vcpu_capacity: u32,
vcpu_relative_capacity: u32,
worker: Option<WorkerThread<()>>,
timer: Arc<Mutex<Timer>>,
vm_ctrl: Arc<Mutex<Tube>>,
pcpu_min_cap: u32,
largest_pcpu_idx: usize,
shared_domain_vcpus: Vec<usize>,
shared_domain_perf: Arc<AtomicU32>,
}
Expand description
Upstream linux compatible version of the virtual cpufreq interface
Fields§
§vcpu_freq_table: Vec<u32>
§pcpu_fmax: u32
§pcpu_capacity: u32
§pcpu: u32
§util_factor: u32
§freqtbl_sel: u32
§vcpu_domain: u32
§domain_uclamp_min: Option<File>
§domain_uclamp_max: Option<File>
§vcpu_fmax: u32
§vcpu_capacity: u32
§vcpu_relative_capacity: u32
§worker: Option<WorkerThread<()>>
§timer: Arc<Mutex<Timer>>
§vm_ctrl: Arc<Mutex<Tube>>
§pcpu_min_cap: u32
§largest_pcpu_idx: usize
The largest(or the last) pCPU index to be used by all the vCPUs. This index is used to figure out the proper placement of the throttle workers which are placed on pCPUs right after the last pCPU being used the vCPUs. Throttle workers require their own exclusive pCPU allocation and this ensure that the workers are placed contiguously and makes it easier for user to manage pCPU allocations when running multiple instances on a large server.
Implementations§
Trait Implementations§
source§impl BusDevice for VirtCpufreqV2
impl BusDevice for VirtCpufreqV2
source§fn device_id(&self) -> DeviceId
fn device_id(&self) -> DeviceId
Returns a unique id per device type suitable for metrics gathering.
source§fn debug_label(&self) -> String
fn debug_label(&self) -> String
Returns a label suitable for debug output.
source§fn read(&mut self, info: BusAccessInfo, data: &mut [u8])
fn read(&mut self, info: BusAccessInfo, data: &mut [u8])
Reads at
offset
from this devicesource§fn write(&mut self, info: BusAccessInfo, data: &[u8])
fn write(&mut self, info: BusAccessInfo, data: &[u8])
Writes at
offset
into this devicesource§fn config_register_write(
&mut self,
reg_idx: usize,
offset: u64,
data: &[u8]
) -> ConfigWriteResult
fn config_register_write( &mut self, reg_idx: usize, offset: u64, data: &[u8] ) -> ConfigWriteResult
Sets a register in the configuration space. Only used by PCI. Read more
source§fn config_register_read(&self, reg_idx: usize) -> u32
fn config_register_read(&self, reg_idx: usize) -> u32
Gets a register from the configuration space. Only used by PCI. Read more
source§fn init_pci_config_mapping(
&mut self,
shmem: &SharedMemory,
base: usize,
len: usize
) -> bool
fn init_pci_config_mapping( &mut self, shmem: &SharedMemory, base: usize, len: usize ) -> bool
Provides a memory region to back MMIO access to the configuration
space. If the device can keep the memory region up to date, then it
should return true, after which no more calls to config_register_read
will be made. Otherwise the device should return false. Read more
source§fn virtual_config_register_write(&mut self, reg_idx: usize, value: u32)
fn virtual_config_register_write(&mut self, reg_idx: usize, value: u32)
Sets a register in the virtual config space. Only used by PCI. Read more
source§fn virtual_config_register_read(&self, reg_idx: usize) -> u32
fn virtual_config_register_read(&self, reg_idx: usize) -> u32
Gets a register from the virtual config space. Only used by PCI. Read more
source§fn on_sandboxed(&mut self)
fn on_sandboxed(&mut self)
Invoked when the device is sandboxed.
source§fn get_ranges(&self) -> Vec<(BusRange, BusType)>
fn get_ranges(&self) -> Vec<(BusRange, BusType)>
Gets a list of all ranges registered by this BusDevice.
source§fn destroy_device(&mut self)
fn destroy_device(&mut self)
Invoked when the device is destroyed
Auto Trait Implementations§
impl !RefUnwindSafe for VirtCpufreqV2
impl Send for VirtCpufreqV2
impl Sync for VirtCpufreqV2
impl Unpin for VirtCpufreqV2
impl !UnwindSafe for VirtCpufreqV2
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.