Release 4.18 include/linux/kvm_para.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef __LINUX_KVM_PARA_H
#define __LINUX_KVM_PARA_H
#include <uapi/linux/kvm_para.h>
static inline bool kvm_para_has_feature(unsigned int feature)
{
return !!(kvm_arch_para_features() & (1UL << feature));
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
| Anthony Liguori | 17 | 68.00% | 1 | 33.33% |
| Yaowei Bai | 6 | 24.00% | 1 | 33.33% |
| Christian Bornträger | 2 | 8.00% | 1 | 33.33% |
| Total | 25 | 100.00% | 3 | 100.00% |
static inline bool kvm_para_has_hint(unsigned int feature)
{
return !!(kvm_arch_para_hints() & (1UL << feature));
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
| Wanpeng Li | 25 | 100.00% | 1 | 100.00% |
| Total | 25 | 100.00% | 1 | 100.00% |
#endif /* __LINUX_KVM_PARA_H */
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
| Wanpeng Li | 25 | 39.68% | 1 | 14.29% |
| Anthony Liguori | 21 | 33.33% | 1 | 14.29% |
| Yaowei Bai | 6 | 9.52% | 1 | 14.29% |
| Ingo Molnar | 6 | 9.52% | 1 | 14.29% |
| Christian Bornträger | 3 | 4.76% | 1 | 14.29% |
| Greg Kroah-Hartman | 1 | 1.59% | 1 | 14.29% |
| David Howells | 1 | 1.59% | 1 | 14.29% |
| Total | 63 | 100.00% | 7 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.