| 131 | } |
| 132 | |
| 133 | static void __inline |
| 134 | vmm_stat_set(struct vm *vm, int vcpu, struct vmm_stat_type *vst, uint64_t val) |
| 135 | { |
| 136 | |
| 137 | #ifdef VMM_KEEP_STATS |
| 138 | vmm_stat_array_set(vm, vcpu, vst, 0, val); |
| 139 | #endif |
| 140 | } |
| 141 | |
| 142 | VMM_STAT_DECLARE(VCPU_MIGRATIONS); |
| 143 | VMM_STAT_DECLARE(VMEXIT_COUNT); |
no test coverage detected