[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <tip-756b0322e50aebc4b9afb4488a2d3f6c802b4e64@git.kernel.org>
Date: Tue, 12 Oct 2010 15:54:13 GMT
From: tip-bot for Thomas Gleixner <tglx@...utronix.de>
To: linux-tip-commits@...r.kernel.org
Cc: linux-kernel@...r.kernel.org, hpa@...or.com, mingo@...hat.com,
peterz@...radead.org, tglx@...utronix.de, viro@...iv.linux.org.uk,
hch@...radead.org
Subject: [tip:core/locking] affs: Use sema_init instead of init_MUTEX
Commit-ID: 756b0322e50aebc4b9afb4488a2d3f6c802b4e64
Gitweb: http://git.kernel.org/tip/756b0322e50aebc4b9afb4488a2d3f6c802b4e64
Author: Thomas Gleixner <tglx@...utronix.de>
AuthorDate: Tue, 7 Sep 2010 14:33:11 +0000
Committer: Thomas Gleixner <tglx@...utronix.de>
CommitDate: Tue, 12 Oct 2010 17:39:25 +0200
affs: Use sema_init instead of init_MUTEX
Get rid of init_MUTE() and use sema_init() instead.
Signed-off-by: Thomas Gleixner <tglx@...utronix.de>
Cc: Peter Zijlstra <peterz@...radead.org>
Cc: Christoph Hellwig <hch@...radead.org>
Cc: Al Viro <viro@...iv.linux.org.uk>
LKML-Reference: <20100907125056.511395595@...utronix.de>
---
fs/affs/super.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/fs/affs/super.c b/fs/affs/super.c
index 33c4e7e..9581ea9 100644
--- a/fs/affs/super.c
+++ b/fs/affs/super.c
@@ -109,8 +109,8 @@ static void init_once(void *foo)
{
struct affs_inode_info *ei = (struct affs_inode_info *) foo;
- init_MUTEX(&ei->i_link_lock);
- init_MUTEX(&ei->i_ext_lock);
+ sema_init(&ei->i_link_lock, 1);
+ sema_init(&ei->i_ext_lock, 1);
inode_init_once(&ei->vfs_inode);
}
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists