Searched refs:thd_stat (Results 1 – 3 of 3) sorted by relevance
| /openbmc/qemu/target/i386/kvm/ |
| H A D | vmsr_energy.c | 310 void vmsr_delta_ticks(vmsr_thread_stat *thd_stat, int i) in vmsr_delta_ticks() argument 312 thd_stat[i].delta_ticks = (thd_stat[i].utime[1] + thd_stat[i].stime[1]) in vmsr_delta_ticks() 313 - (thd_stat[i].utime[0] + thd_stat[i].stime[0]); in vmsr_delta_ticks()
|
| H A D | kvm.c | 2763 g_autofree vmsr_thread_stat *thd_stat = NULL; in kvm_msr_energy_thread() local 2776 thd_stat = g_new0(vmsr_thread_stat, 1); in kvm_msr_energy_thread() 2802 thd_stat = g_renew(vmsr_thread_stat, thd_stat, num_threads); in kvm_msr_energy_thread() 2804 memset(thd_stat, 0, num_threads * sizeof(vmsr_thread_stat)); in kvm_msr_energy_thread() 2808 thd_stat[i].utime = g_new0(unsigned long long, 2); in kvm_msr_energy_thread() 2809 thd_stat[i].stime = g_new0(unsigned long long, 2); in kvm_msr_energy_thread() 2810 thd_stat[i].thread_id = thread_ids[i]; in kvm_msr_energy_thread() 2812 thd_stat[i].thread_id, in kvm_msr_energy_thread() 2813 &thd_stat[ in kvm_msr_energy_thread() [all...] |
| H A D | vmsr_energy.h | 86 void vmsr_delta_ticks(vmsr_thread_stat *thd_stat, int i);
|