Allow unlocking VM migration/snapshot support

This also requires NV_KVM_MIGRATION_UAPI to be set to 1 when building
the `nvidia-vgpu-vfio` kernel module, hence why unlocking this feature
is only conditionally enabled, since not everyone will want it.

Signed-off-by: kharbranth <cityofkharbranth@protonmail.com>
This commit is contained in:
kharbranth
2022-05-05 20:57:44 -04:00
parent fa31a73ef5
commit 826e7b246e
2 changed files with 17 additions and 1 deletions

View File

@@ -7,12 +7,18 @@ impl Defaults {
const fn unlock() -> bool { const fn unlock() -> bool {
true true
} }
#[inline]
const fn unlock_migration() -> bool {
false
}
} }
#[derive(Deserialize)] #[derive(Deserialize)]
pub struct Config { pub struct Config {
#[serde(default = "Defaults::unlock")] #[serde(default = "Defaults::unlock")]
pub unlock: bool, pub unlock: bool,
#[serde(default = "Defaults::unlock_migration")]
pub unlock_migration: bool,
} }
impl Default for Config { impl Default for Config {
@@ -20,6 +26,7 @@ impl Default for Config {
fn default() -> Self { fn default() -> Self {
Self { Self {
unlock: Defaults::unlock(), unlock: Defaults::unlock(),
unlock_migration: Defaults::unlock_migration(),
} }
} }
} }

View File

@@ -75,6 +75,9 @@ const OP_READ_PCI_ID: u32 = 0x20801801;
/// `result` is a pointer to `VgpuConfig`. /// `result` is a pointer to `VgpuConfig`.
const OP_READ_VGPU_CFG: u32 = 0xa0820102; const OP_READ_VGPU_CFG: u32 = 0xa0820102;
/// `result` is a pointer to `bool`.
const OP_READ_VGPU_MIG_CAP: u32 = 0xa0810112;
/// `nvidia-vgpu-mgr` expects this value for a vGPU capable GPU. /// `nvidia-vgpu-mgr` expects this value for a vGPU capable GPU.
const DEV_TYPE_VGPU_CAPABLE: u32 = 3; const DEV_TYPE_VGPU_CAPABLE: u32 = 3;
@@ -340,10 +343,16 @@ pub unsafe extern "C" fn ioctl(fd: RawFd, request: c_ulong, argp: *mut c_void) -
// Set device type to vGPU capable. // Set device type to vGPU capable.
*dev_type_ptr = DEV_TYPE_VGPU_CAPABLE; *dev_type_ptr = DEV_TYPE_VGPU_CAPABLE;
} },
OP_READ_VGPU_MIG_CAP if CONFIG.unlock_migration => {
let mig_enabled: *mut bool = io_data.result.cast();
*mig_enabled = true;
},
_ => {} _ => {}
} }
if io_data.status == STATUS_OK { if io_data.status == STATUS_OK {
match io_data.op_type { match io_data.op_type {
OP_READ_VGPU_CFG => { OP_READ_VGPU_CFG => {