commit | 901359256b2666f52a3a7d3f31927677e91b3a2a | [log] [tgz] |
---|---|---|
author | David Teigland <teigland@redhat.com> | Fri Jan 20 08:47:07 2006 +0000 |
committer | Steven Whitehouse <steve@chygwyn.com> | Fri Jan 20 08:47:07 2006 +0000 |
tree | 24d4ee2c1ad63a0e6c3a303ad67eac3342772c4f | |
parent | ec5800246607183a1d7fd0bae5f087c12439e9e7 [diff] [blame] |
[DLM] Update DLM to the latest patch level Signed-off-by: David Teigland <teigland@redhat.com> Signed-off-by: Steve Whitehouse <swhiteho@redhat.com>
diff --git a/fs/dlm/lock.h b/fs/dlm/lock.h index 9e6499f..bffab9c 100644 --- a/fs/dlm/lock.h +++ b/fs/dlm/lock.h
@@ -38,12 +38,12 @@ static inline void lock_rsb(struct dlm_rsb *r) { - down(&r->res_sem); + mutex_lock(&r->res_mutex); } static inline void unlock_rsb(struct dlm_rsb *r) { - up(&r->res_sem); + mutex_unlock(&r->res_mutex); } #endif