X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=mutex.c;h=6022cdd77ef64a67cb77ab13180f33198acea1f3;hb=50206d9b89b6649d782e988df52438e7984707af;hp=3a01f98fca5273bd68cb62d7b85b3d3f4e5d84f4;hpb=e721c57fc77e0155bb73a2c266dba0c6ce0bd3b5;p=fio.git diff --git a/mutex.c b/mutex.c index 3a01f98f..6022cdd7 100644 --- a/mutex.c +++ b/mutex.c @@ -4,17 +4,24 @@ #include #include #include +#include #include #include +#include +#include "fio.h" #include "log.h" #include "mutex.h" #include "arch/arch.h" #include "os/os.h" #include "helpers.h" +#include "time.h" +#include "gettime.h" void fio_mutex_remove(struct fio_mutex *mutex) { + assert(mutex->magic == FIO_MUTEX_MAGIC); + pthread_cond_destroy(&mutex->cond); munmap((void *) mutex, sizeof(*mutex)); } @@ -35,6 +42,7 @@ struct fio_mutex *fio_mutex_init(int value) } mutex->value = value; + mutex->magic = FIO_MUTEX_MAGIC; ret = pthread_mutexattr_init(&attr); if (ret) { @@ -76,19 +84,36 @@ err: return NULL; } +static int mutex_timed_out(struct timeval *t, unsigned int seconds) +{ + return mtime_since_now(t) >= seconds * 1000; +} + int fio_mutex_down_timeout(struct fio_mutex *mutex, unsigned int seconds) { + struct timeval tv_s; struct timespec t; int ret = 0; - clock_gettime(CLOCK_REALTIME, &t); - t.tv_sec += seconds; + assert(mutex->magic == FIO_MUTEX_MAGIC); + + gettimeofday(&tv_s, NULL); + t.tv_sec = tv_s.tv_sec + seconds; + t.tv_nsec = tv_s.tv_usec * 1000; pthread_mutex_lock(&mutex->lock); while (!mutex->value && !ret) { mutex->waiters++; + + /* + * Some platforms (FreeBSD 9?) seems to return timed out + * way too early, double check. + */ ret = pthread_cond_timedwait(&mutex->cond, &mutex->lock, &t); + if (ret == ETIMEDOUT && !mutex_timed_out(&tv_s, seconds)) + ret = 0; + mutex->waiters--; } @@ -102,6 +127,8 @@ int fio_mutex_down_timeout(struct fio_mutex *mutex, unsigned int seconds) void fio_mutex_down(struct fio_mutex *mutex) { + assert(mutex->magic == FIO_MUTEX_MAGIC); + pthread_mutex_lock(&mutex->lock); while (!mutex->value) { @@ -116,6 +143,8 @@ void fio_mutex_down(struct fio_mutex *mutex) void fio_mutex_up(struct fio_mutex *mutex) { + assert(mutex->magic == FIO_MUTEX_MAGIC); + pthread_mutex_lock(&mutex->lock); read_barrier(); if (!mutex->value && mutex->waiters) @@ -124,50 +153,55 @@ void fio_mutex_up(struct fio_mutex *mutex) pthread_mutex_unlock(&mutex->lock); } -void fio_mutex_down_write(struct fio_mutex *mutex) +void fio_rwlock_write(struct fio_rwlock *lock) { - pthread_mutex_lock(&mutex->lock); - - while (mutex->value != 0) { - mutex->waiters++; - pthread_cond_wait(&mutex->cond, &mutex->lock); - mutex->waiters--; - } - - mutex->value--; - pthread_mutex_unlock(&mutex->lock); + assert(lock->magic == FIO_RWLOCK_MAGIC); + pthread_rwlock_wrlock(&lock->lock); } -void fio_mutex_down_read(struct fio_mutex *mutex) +void fio_rwlock_read(struct fio_rwlock *lock) { - pthread_mutex_lock(&mutex->lock); - - while (mutex->value < 0) { - mutex->waiters++; - pthread_cond_wait(&mutex->cond, &mutex->lock); - mutex->waiters--; - } + assert(lock->magic == FIO_RWLOCK_MAGIC); + pthread_rwlock_rdlock(&lock->lock); +} - mutex->value++; - pthread_mutex_unlock(&mutex->lock); +void fio_rwlock_unlock(struct fio_rwlock *lock) +{ + assert(lock->magic == FIO_RWLOCK_MAGIC); + pthread_rwlock_unlock(&lock->lock); } -void fio_mutex_up_read(struct fio_mutex *mutex) +void fio_rwlock_remove(struct fio_rwlock *lock) { - pthread_mutex_lock(&mutex->lock); - mutex->value--; - read_barrier(); - if (mutex->value >= 0 && mutex->waiters) - pthread_cond_signal(&mutex->cond); - pthread_mutex_unlock(&mutex->lock); + assert(lock->magic == FIO_RWLOCK_MAGIC); + munmap((void *) lock, sizeof(*lock)); } -void fio_mutex_up_write(struct fio_mutex *mutex) +struct fio_rwlock *fio_rwlock_init(void) { - pthread_mutex_lock(&mutex->lock); - mutex->value++; - read_barrier(); - if (mutex->value >= 0 && mutex->waiters) - pthread_cond_signal(&mutex->cond); - pthread_mutex_unlock(&mutex->lock); + struct fio_rwlock *lock; + int ret; + + lock = (void *) mmap(NULL, sizeof(struct fio_rwlock), + PROT_READ | PROT_WRITE, + OS_MAP_ANON | MAP_SHARED, -1, 0); + if (lock == MAP_FAILED) { + perror("mmap rwlock"); + lock = NULL; + goto err; + } + + lock->magic = FIO_RWLOCK_MAGIC; + + ret = pthread_rwlock_init(&lock->lock, NULL); + if (ret) { + log_err("pthread_rwlock_init: %s\n", strerror(ret)); + goto err; + } + + return lock; +err: + if (lock) + fio_rwlock_remove(lock); + return NULL; }