Home
last modified time | relevance | path

Searched refs:kvm_device_ops_table (Results 1 – 1 of 1) sorted by relevance

/linux-6.15/virt/kvm/
H A Dkvm_main.c4697 static const struct kvm_device_ops *kvm_device_ops_table[KVM_DEV_TYPE_MAX] = { variable
4706 if (type >= ARRAY_SIZE(kvm_device_ops_table)) in kvm_register_device_ops()
4709 if (kvm_device_ops_table[type] != NULL) in kvm_register_device_ops()
4712 kvm_device_ops_table[type] = ops; in kvm_register_device_ops()
4718 if (kvm_device_ops_table[type] != NULL) in kvm_unregister_device_ops()
4719 kvm_device_ops_table[type] = NULL; in kvm_unregister_device_ops()
4731 if (cd->type >= ARRAY_SIZE(kvm_device_ops_table)) in kvm_ioctl_create_device()
4734 type = array_index_nospec(cd->type, ARRAY_SIZE(kvm_device_ops_table)); in kvm_ioctl_create_device()
4735 ops = kvm_device_ops_table[type]; in kvm_ioctl_create_device()