X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=gettime-thread.c;h=2dc976fb42c7bbb5b4deedc0746d5577bd5c1e0b;hp=da409042f2ec6eb7344b6f943dad0eba84c54cd1;hb=87f5fce38c1b8fc979cea10c926973c2f2a76217;hpb=39ab7da23768081db50b0026e0c2a8e38752e7a4 diff --git a/gettime-thread.c b/gettime-thread.c index da409042..2dc976fb 100644 --- a/gettime-thread.c +++ b/gettime-thread.c @@ -6,26 +6,46 @@ #include "fio.h" #include "smalloc.h" -struct timeval *fio_tv; +struct timeval *fio_tv = NULL; int fio_gtod_offload = 0; -int fio_gtod_cpu = -1; static pthread_t gtod_thread; +#ifdef FIO_HAVE_CPU_AFFINITY +static os_cpu_mask_t fio_gtod_cpumask; +#endif void fio_gtod_init(void) { + if (fio_tv) + return; + fio_tv = smalloc(sizeof(struct timeval)); - assert(fio_tv); + if (!fio_tv) + log_err("fio: smalloc pool exhausted\n"); } static void fio_gtod_update(void) { - gettimeofday(fio_tv, NULL); + if (fio_tv) { + struct timeval __tv; + + gettimeofday(&__tv, NULL); + fio_tv->tv_sec = __tv.tv_sec; + write_barrier(); + fio_tv->tv_usec = __tv.tv_usec; + write_barrier(); + } } +struct gtod_cpu_data { + struct fio_mutex *mutex; + unsigned int cpu; +}; + static void *gtod_thread_main(void *data) { struct fio_mutex *mutex = data; + fio_setaffinity(gettid(), fio_gtod_cpumask); fio_mutex_up(mutex); /* @@ -54,7 +74,7 @@ int fio_start_gtod_thread(void) pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, PTHREAD_STACK_MIN); - ret = pthread_create(>od_thread, &attr, gtod_thread_main, NULL); + ret = pthread_create(>od_thread, &attr, gtod_thread_main, mutex); pthread_attr_destroy(&attr); if (ret) { log_err("Can't create gtod thread: %s\n", strerror(ret)); @@ -75,4 +95,9 @@ err: return ret; } - +void fio_gtod_set_cpu(unsigned int cpu) +{ +#ifdef FIO_HAVE_CPU_AFFINITY + fio_cpu_set(&fio_gtod_cpumask, cpu); +#endif +}