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

Configure Feed

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

at v4.9-rc1 11 lines 245 B view raw
1#ifndef __LINUX_KVM_PARA_H 2#define __LINUX_KVM_PARA_H 3 4#include <uapi/linux/kvm_para.h> 5 6 7static inline bool kvm_para_has_feature(unsigned int feature) 8{ 9 return !!(kvm_arch_para_features() & (1UL << feature)); 10} 11#endif /* __LINUX_KVM_PARA_H */