* [PATCH] mutex: fix the expression for checking the mutext magic.
@ 2013-03-22 6:13 majianpeng
2013-03-22 13:15 ` Jens Axboe
0 siblings, 1 reply; 2+ messages in thread
From: majianpeng @ 2013-03-22 6:13 UTC (permalink / raw)
To: Jens Axboe; +Cc: fio@vger.kernel.org
Signed-off-by: Jianpeng Ma <majianpeng@gmail.com>
---
mutex.c | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/mutex.c b/mutex.c
index af5e501..6022cdd 100644
--- a/mutex.c
+++ b/mutex.c
@@ -20,7 +20,7 @@
void fio_mutex_remove(struct fio_mutex *mutex)
{
- assert(mutex->magic = FIO_MUTEX_MAGIC);
+ assert(mutex->magic == FIO_MUTEX_MAGIC);
pthread_cond_destroy(&mutex->cond);
munmap((void *) mutex, sizeof(*mutex));
}
@@ -95,7 +95,7 @@ int fio_mutex_down_timeout(struct fio_mutex *mutex, unsigned int seconds)
struct timespec t;
int ret = 0;
- assert(mutex->magic = FIO_MUTEX_MAGIC);
+ assert(mutex->magic == FIO_MUTEX_MAGIC);
gettimeofday(&tv_s, NULL);
t.tv_sec = tv_s.tv_sec + seconds;
@@ -127,7 +127,7 @@ 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);
+ assert(mutex->magic == FIO_MUTEX_MAGIC);
pthread_mutex_lock(&mutex->lock);
@@ -143,7 +143,7 @@ void fio_mutex_down(struct fio_mutex *mutex)
void fio_mutex_up(struct fio_mutex *mutex)
{
- assert(mutex->magic = FIO_MUTEX_MAGIC);
+ assert(mutex->magic == FIO_MUTEX_MAGIC);
pthread_mutex_lock(&mutex->lock);
read_barrier();
@@ -155,25 +155,25 @@ void fio_mutex_up(struct fio_mutex *mutex)
void fio_rwlock_write(struct fio_rwlock *lock)
{
- assert(lock->magic = FIO_RWLOCK_MAGIC);
+ assert(lock->magic == FIO_RWLOCK_MAGIC);
pthread_rwlock_wrlock(&lock->lock);
}
void fio_rwlock_read(struct fio_rwlock *lock)
{
- assert(lock->magic = FIO_RWLOCK_MAGIC);
+ assert(lock->magic == FIO_RWLOCK_MAGIC);
pthread_rwlock_rdlock(&lock->lock);
}
void fio_rwlock_unlock(struct fio_rwlock *lock)
{
- assert(lock->magic = FIO_RWLOCK_MAGIC);
+ assert(lock->magic == FIO_RWLOCK_MAGIC);
pthread_rwlock_unlock(&lock->lock);
}
void fio_rwlock_remove(struct fio_rwlock *lock)
{
- assert(lock->magic = FIO_RWLOCK_MAGIC);
+ assert(lock->magic == FIO_RWLOCK_MAGIC);
munmap((void *) lock, sizeof(*lock));
}
--
1.8.2.rc2.4.g7799588
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] mutex: fix the expression for checking the mutext magic.
2013-03-22 6:13 [PATCH] mutex: fix the expression for checking the mutext magic majianpeng
@ 2013-03-22 13:15 ` Jens Axboe
0 siblings, 0 replies; 2+ messages in thread
From: Jens Axboe @ 2013-03-22 13:15 UTC (permalink / raw)
To: majianpeng; +Cc: fio@vger.kernel.org
On Fri, Mar 22 2013, majianpeng wrote:
> Signed-off-by: Jianpeng Ma <majianpeng@gmail.com>
Hah, that might work a little better! Thanks, I'll have to play the
jet lag card on that change. That, and copy-pasting.
--
Jens Axboe
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-03-22 13:16 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-22 6:13 [PATCH] mutex: fix the expression for checking the mutext magic majianpeng
2013-03-22 13:15 ` Jens Axboe
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox