summaryrefslogtreecommitdiffstats
path: root/fs/xfs/linux-2.6/xfs_buf.c
diff options
context:
space:
mode:
authorThomas Gleixner2010-09-07 16:33:15 +0200
committerAlex Elder2010-10-18 22:09:09 +0200
commita731cd116c9334e01bcf3e676c0c621fe7de6ce4 (patch)
tree33113c64bd92edc448398e7325983317ce5a55a1 /fs/xfs/linux-2.6/xfs_buf.c
parentxfs: Extend project quotas to support 32bit project ids (diff)
downloadkernel-qcow2-linux-a731cd116c9334e01bcf3e676c0c621fe7de6ce4.tar.gz
kernel-qcow2-linux-a731cd116c9334e01bcf3e676c0c621fe7de6ce4.tar.xz
kernel-qcow2-linux-a731cd116c9334e01bcf3e676c0c621fe7de6ce4.zip
xfs: semaphore cleanup
Get rid of init_MUTEX[_LOCKED]() and use sema_init() instead. (Ported to current XFS code by <aelder@sgi.com>.) Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Alex Elder <aelder@sgi.com>
Diffstat (limited to 'fs/xfs/linux-2.6/xfs_buf.c')
-rw-r--r--fs/xfs/linux-2.6/xfs_buf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/linux-2.6/xfs_buf.c b/fs/xfs/linux-2.6/xfs_buf.c
index 47ef97f46fe9..52785189212f 100644
--- a/fs/xfs/linux-2.6/xfs_buf.c
+++ b/fs/xfs/linux-2.6/xfs_buf.c
@@ -189,7 +189,7 @@ _xfs_buf_initialize(
init_completion(&bp->b_iowait);
INIT_LIST_HEAD(&bp->b_list);
RB_CLEAR_NODE(&bp->b_rbnode);
- init_MUTEX_LOCKED(&bp->b_sema); /* held, no waiters */
+ sema_init(&bp->b_sema, 0); /* held, no waiters */
XB_SET_OWNER(bp);
bp->b_target = target;
bp->b_file_offset = range_base;