mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	KVM: VFIO: register kvm_device_ops dynamically
Now that we have a dynamic means to register kvm_device_ops, use that for the VFIO kvm device, instead of relying on the static table. This is achieved by a module_init call to register the ops with KVM. Cc: Gleb Natapov <gleb@kernel.org> Cc: Paolo Bonzini <pbonzini@redhat.com> Acked-by: Alex Williamson <Alex.Williamson@redhat.com> Signed-off-by: Will Deacon <will.deacon@arm.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
		
							parent
							
								
									84877d9333
								
							
						
					
					
						commit
						80ce163972
					
				
					 3 changed files with 15 additions and 12 deletions
				
			
		| 
						 | 
					@ -1068,7 +1068,6 @@ int kvm_register_device_ops(struct kvm_device_ops *ops, u32 type);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
extern struct kvm_device_ops kvm_mpic_ops;
 | 
					extern struct kvm_device_ops kvm_mpic_ops;
 | 
				
			||||||
extern struct kvm_device_ops kvm_xics_ops;
 | 
					extern struct kvm_device_ops kvm_xics_ops;
 | 
				
			||||||
extern struct kvm_device_ops kvm_vfio_ops;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
 | 
					#ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -2281,10 +2281,6 @@ static struct kvm_device_ops *kvm_device_ops_table[KVM_DEV_TYPE_MAX] = {
 | 
				
			||||||
#ifdef CONFIG_KVM_XICS
 | 
					#ifdef CONFIG_KVM_XICS
 | 
				
			||||||
	[KVM_DEV_TYPE_XICS]		= &kvm_xics_ops,
 | 
						[KVM_DEV_TYPE_XICS]		= &kvm_xics_ops,
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					 | 
				
			||||||
#ifdef CONFIG_KVM_VFIO
 | 
					 | 
				
			||||||
	[KVM_DEV_TYPE_VFIO]		= &kvm_vfio_ops,
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
int kvm_register_device_ops(struct kvm_device_ops *ops, u32 type)
 | 
					int kvm_register_device_ops(struct kvm_device_ops *ops, u32 type)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -246,6 +246,16 @@ static void kvm_vfio_destroy(struct kvm_device *dev)
 | 
				
			||||||
	kfree(dev); /* alloc by kvm_ioctl_create_device, free by .destroy */
 | 
						kfree(dev); /* alloc by kvm_ioctl_create_device, free by .destroy */
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					static int kvm_vfio_create(struct kvm_device *dev, u32 type);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					static struct kvm_device_ops kvm_vfio_ops = {
 | 
				
			||||||
 | 
						.name = "kvm-vfio",
 | 
				
			||||||
 | 
						.create = kvm_vfio_create,
 | 
				
			||||||
 | 
						.destroy = kvm_vfio_destroy,
 | 
				
			||||||
 | 
						.set_attr = kvm_vfio_set_attr,
 | 
				
			||||||
 | 
						.has_attr = kvm_vfio_has_attr,
 | 
				
			||||||
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static int kvm_vfio_create(struct kvm_device *dev, u32 type)
 | 
					static int kvm_vfio_create(struct kvm_device *dev, u32 type)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	struct kvm_device *tmp;
 | 
						struct kvm_device *tmp;
 | 
				
			||||||
| 
						 | 
					@ -268,10 +278,8 @@ static int kvm_vfio_create(struct kvm_device *dev, u32 type)
 | 
				
			||||||
	return 0;
 | 
						return 0;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
struct kvm_device_ops kvm_vfio_ops = {
 | 
					static int __init kvm_vfio_ops_init(void)
 | 
				
			||||||
	.name = "kvm-vfio",
 | 
					{
 | 
				
			||||||
	.create = kvm_vfio_create,
 | 
						return kvm_register_device_ops(&kvm_vfio_ops, KVM_DEV_TYPE_VFIO);
 | 
				
			||||||
	.destroy = kvm_vfio_destroy,
 | 
					}
 | 
				
			||||||
	.set_attr = kvm_vfio_set_attr,
 | 
					module_init(kvm_vfio_ops_init);
 | 
				
			||||||
	.has_attr = kvm_vfio_has_attr,
 | 
					 | 
				
			||||||
};
 | 
					 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue