aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/kvm/lib/x86_64/vmx.c
AgeCommit message (Expand)Author
2020-05-27KVM: selftests: Fix build for evmcs.hPeter Xu
2019-10-22selftests: kvm: consolidate VMX support checksVitaly Kuznetsov
2019-09-27selftests: kvm: add test for dirty logging inside nested guestsPaolo Bonzini
2019-08-15selftests: kvm: provide common function to enable eVMCSPaolo Bonzini
2019-07-20KVM: selftests: Remove superfluous define from vmx.cThomas Huth
2019-06-19treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 482Thomas Gleixner
2018-10-17KVM: selftests: add Enlightened VMCS testVitaly Kuznetsov
2018-10-17KVM: selftests: state_test: test bare VMXON migrationVitaly Kuznetsov
2018-10-17kvm: selftests: move arch-specific files to arch-specific locationsAndrew Jones
urn port; return NULL; } static inline struct team_port * team_get_first_port_txable_rcu(struct team *team, struct team_port *port) { struct team_port *cur; if (likely(team_port_txable(port))) return port; cur = port; list_for_each_entry_continue_rcu(cur, &team->port_list, list) if (team_port_txable(cur)) return cur; list_for_each_entry_rcu(cur, &team->port_list, list) { if (cur == port) break; if (team_port_txable(cur)) return cur; } return NULL; } extern int team_options_register(struct team *team, const struct team_option *option, size_t option_count); extern void team_options_unregister(struct team *team, const struct team_option *option, size_t option_count); extern int team_mode_register(const struct team_mode *mode); extern void team_mode_unregister(const struct team_mode *mode); #define TEAM_DEFAULT_NUM_TX_QUEUES 16 #define TEAM_DEFAULT_NUM_RX_QUEUES 16 #endif /* _LINUX_IF_TEAM_H_ */