commit | 467c3d9cd541eef284ff8118069b088e015b8d6a | [log] [tgz] |
---|---|---|
author | Thomas Gleixner <tglx@linutronix.de> | Fri Oct 01 05:46:52 2010 +0200 |
committer | Christoph Hellwig <hch@lst.de> | Fri Oct 01 05:46:52 2010 +0200 |
tree | 3d3126209f6c5a0c4660e8405ac2680d6388f359 | |
parent | 7fcc99f4f2ddb1c39abc05fbb9b32f05b03c7f8f [diff] [blame] |
hfsplus: convert tree_lock to mutex tree_lock is used as mutex so make it a mutex. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Christoph Hellwig <hch@tuxera.com>
diff --git a/fs/hfsplus/btree.c b/fs/hfsplus/btree.c index 27504f5..8306479 100644 --- a/fs/hfsplus/btree.c +++ b/fs/hfsplus/btree.c
@@ -30,7 +30,7 @@ if (!tree) return NULL; - init_MUTEX(&tree->tree_lock); + mutex_init(&tree->tree_lock); spin_lock_init(&tree->hash_lock); tree->sb = sb; tree->cnid = id;