X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;ds=sidebyside;f=gettime.c;h=fa750ec85584716f7b6e37c5241130f8688dd6cb;hb=1b4f8c7f78793428084688f27a412139b259972b;hp=98e83b85a6b55ef2a059ced730459e1f9c1697a2;hpb=caa3eb1c86f9ca0e0063485f0ff0a1fca0dc3af2;p=fio.git diff --git a/gettime.c b/gettime.c index 98e83b85..fa750ec8 100644 --- a/gettime.c +++ b/gettime.c @@ -534,7 +534,7 @@ int fio_monotonic_clocktest(void) struct clock_thread *threads; unsigned int nr_cpus = cpus_online(); struct clock_entry *entries; - unsigned long tentries, failed; + unsigned long tentries, failed = 0; struct clock_entry *prev, *this; uint32_t seq = 0; unsigned int i; @@ -560,7 +560,11 @@ int fio_monotonic_clocktest(void) pthread_mutex_init(&t->lock, NULL); pthread_mutex_init(&t->started, NULL); pthread_mutex_lock(&t->lock); - pthread_create(&t->thread, NULL, clock_thread_fn, t); + if (pthread_create(&t->thread, NULL, clock_thread_fn, t)) { + failed++; + nr_cpus = i; + break; + } } for (i = 0; i < nr_cpus; i++) { @@ -575,7 +579,7 @@ int fio_monotonic_clocktest(void) pthread_mutex_unlock(&t->lock); } - for (failed = i = 0; i < nr_cpus; i++) { + for (i = 0; i < nr_cpus; i++) { struct clock_thread *t = &threads[i]; void *ret;