Cloud Hypervisor v25.0 has been released on July 7th, 2022, and brings the following changes: **ch-remote Improvements** The ch-remote command has gained support for creating the VM from a JSON config and support for booting and deleting the VM from the VMM. **VM "Coredump" Support** Under the guest_debug feature flag it is now possible to extract the memory of the guest for use in debugging with e.g. the crash utility. (https://github.com/cloud-hypervisor/cloud-hypervisor/issues/4012) **Notable Bug Fixes** * Always restore console mode on exit (https://github.com/cloud-hypervisor/cloud-hypervisor/issues/4249, https://github.com/cloud-hypervisor/cloud-hypervisor/issues/4248) * Restore vCPUs in numerical order which fixes aarch64 snapshot/restore (https://github.com/cloud-hypervisor/cloud-hypervisor/issues/4244) * Don't try and configure IFF_RUNNING on TAP devices (https://github.com/cloud-hypervisor/cloud-hypervisor/issues/4279) * Propagate configured queue size through to vhost-user backend (https://github.com/cloud-hypervisor/cloud-hypervisor/issues/4286) * Always Program vCPU CPUID before running the vCPU to fix running on Linux 5.16 (https://github.com/cloud-hypervisor/cloud-hypervisor/issues/4156) * Enable ACPI MADT "Online Capable" flag for hotpluggable vCPUs to fix newer Linux guest **Removals** The following functionality has been removed: * The mergeable option from the virtio-pmem support has been removed (https://github.com/cloud-hypervisor/cloud-hypervisor/issues/3968) * The dax option from the virtio-fs support has been removed (https://github.com/cloud-hypervisor/cloud-hypervisor/issues/3889) Fixes: #4641 Signed-off-by: Fabiano Fidêncio <fabiano.fidencio@intel.com>
4.0 KiB
FsConfig
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| Tag | string | ||
| Socket | string | ||
| NumQueues | int32 | [default to 1] | |
| QueueSize | int32 | [default to 1024] | |
| PciSegment | Pointer to int32 | [optional] | |
| Id | Pointer to string | [optional] |
Methods
NewFsConfig
func NewFsConfig(tag string, socket string, numQueues int32, queueSize int32, ) *FsConfig
NewFsConfig instantiates a new FsConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed
NewFsConfigWithDefaults
func NewFsConfigWithDefaults() *FsConfig
NewFsConfigWithDefaults instantiates a new FsConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set
GetTag
func (o *FsConfig) GetTag() string
GetTag returns the Tag field if non-nil, zero value otherwise.
GetTagOk
func (o *FsConfig) GetTagOk() (*string, bool)
GetTagOk returns a tuple with the Tag field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
SetTag
func (o *FsConfig) SetTag(v string)
SetTag sets Tag field to given value.
GetSocket
func (o *FsConfig) GetSocket() string
GetSocket returns the Socket field if non-nil, zero value otherwise.
GetSocketOk
func (o *FsConfig) GetSocketOk() (*string, bool)
GetSocketOk returns a tuple with the Socket field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
SetSocket
func (o *FsConfig) SetSocket(v string)
SetSocket sets Socket field to given value.
GetNumQueues
func (o *FsConfig) GetNumQueues() int32
GetNumQueues returns the NumQueues field if non-nil, zero value otherwise.
GetNumQueuesOk
func (o *FsConfig) GetNumQueuesOk() (*int32, bool)
GetNumQueuesOk returns a tuple with the NumQueues field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
SetNumQueues
func (o *FsConfig) SetNumQueues(v int32)
SetNumQueues sets NumQueues field to given value.
GetQueueSize
func (o *FsConfig) GetQueueSize() int32
GetQueueSize returns the QueueSize field if non-nil, zero value otherwise.
GetQueueSizeOk
func (o *FsConfig) GetQueueSizeOk() (*int32, bool)
GetQueueSizeOk returns a tuple with the QueueSize field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
SetQueueSize
func (o *FsConfig) SetQueueSize(v int32)
SetQueueSize sets QueueSize field to given value.
GetPciSegment
func (o *FsConfig) GetPciSegment() int32
GetPciSegment returns the PciSegment field if non-nil, zero value otherwise.
GetPciSegmentOk
func (o *FsConfig) GetPciSegmentOk() (*int32, bool)
GetPciSegmentOk returns a tuple with the PciSegment field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
SetPciSegment
func (o *FsConfig) SetPciSegment(v int32)
SetPciSegment sets PciSegment field to given value.
HasPciSegment
func (o *FsConfig) HasPciSegment() bool
HasPciSegment returns a boolean if a field has been set.
GetId
func (o *FsConfig) GetId() string
GetId returns the Id field if non-nil, zero value otherwise.
GetIdOk
func (o *FsConfig) GetIdOk() (*string, bool)
GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
SetId
func (o *FsConfig) SetId(v string)
SetId sets Id field to given value.
HasId
func (o *FsConfig) HasId() bool
HasId returns a boolean if a field has been set.