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

/linux-master/virt/kvm/
H A Dkvm_main.c4751 static const struct kvm_device_ops *kvm_device_ops_table[KVM_DEV_TYPE_MAX] = { variable in typeref:struct:kvm_device_ops
4760 if (type >= ARRAY_SIZE(kvm_device_ops_table))
4763 if (kvm_device_ops_table[type] != NULL)
4766 kvm_device_ops_table[type] = ops;
4772 if (kvm_device_ops_table[type] != NULL)
4773 kvm_device_ops_table[type] = NULL;
4785 if (cd->type >= ARRAY_SIZE(kvm_device_ops_table))
4788 type = array_index_nospec(cd->type, ARRAY_SIZE(kvm_device_ops_table));
4789 ops = kvm_device_ops_table[type];

Completed in 117 milliseconds