Spelling fix. Reported by DebianĀ“s lintian.
[fio.git] / gettime-thread.c
index 95f35c32e46cff25f6b43005462f608e1975fabf..6dc14864fdc61bb8380702c154dce5e83f60d2b0 100644 (file)
@@ -8,11 +8,14 @@
 
 struct timeval *fio_tv = NULL;
 int fio_gtod_offload = 0;
-int fio_gtod_cpu = -1;
 static pthread_t gtod_thread;
+static os_cpu_mask_t fio_gtod_cpumask;
 
 void fio_gtod_init(void)
 {
+       if (fio_tv)
+               return;
+
        fio_tv = smalloc(sizeof(struct timeval));
        if (!fio_tv)
                log_err("fio: smalloc pool exhausted\n");
@@ -31,10 +34,16 @@ static void fio_gtod_update(void)
        }
 }
 
+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);
 
        /*
@@ -72,7 +81,7 @@ int fio_start_gtod_thread(void)
 
        ret = pthread_detach(gtod_thread);
        if (ret) {
-               log_err("Can't detatch gtod thread: %s\n", strerror(ret));
+               log_err("Can't detach gtod thread: %s\n", strerror(ret));
                goto err;
        }
 
@@ -84,4 +93,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
+}