Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v3.18-rc3 17 lines 250 B view raw
1#ifndef __KVM_VFIO_H 2#define __KVM_VFIO_H 3 4#ifdef CONFIG_KVM_VFIO 5int kvm_vfio_ops_init(void); 6void kvm_vfio_ops_exit(void); 7#else 8static inline int kvm_vfio_ops_init(void) 9{ 10 return 0; 11} 12static inline void kvm_vfio_ops_exit(void) 13{ 14} 15#endif 16 17#endif