X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=idletime.h;h=b8376c2ce6098cd698d8933604fed7de2f35ff4d;hp=acb8407d982a1242b47549c7e406a3f294713973;hb=e97412c38bedc4f365bdf4abe1ff8f6694587a86;hpb=95820b6e6c92025df8d89c0bf39b174e53137c41 diff --git a/idletime.h b/idletime.h index acb8407d..b8376c2c 100644 --- a/idletime.h +++ b/idletime.h @@ -2,6 +2,7 @@ #define FIO_IDLETIME_H #include "fio.h" +#include "lib/output_buffer.h" #define CALIBRATE_RUNS 10 #define CALIBRATE_SCALE 1000 @@ -25,15 +26,17 @@ struct idle_prof_thread { pthread_t thread; int cpu; int state; - struct timeval tps; - struct timeval tpe; - double cali_time; /* microseconds to finish a unit wrok */ + struct timespec tps; + struct timespec tpe; + double cali_time; /* microseconds to finish a unit work */ double loops; double idleness; unsigned char *data; /* bytes to be touched */ pthread_cond_t cond; pthread_mutex_t init_lock; pthread_mutex_t start_lock; + + os_cpu_mask_t cpu_mask; }; struct idle_prof_common { @@ -52,6 +55,6 @@ extern void fio_idle_prof_init(void); extern void fio_idle_prof_start(void); extern void fio_idle_prof_stop(void); -extern void show_idle_prof_stats(int, struct json_object *); +extern void show_idle_prof_stats(int, struct json_object *, struct buf_output *); #endif