Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=11a57153e3377ffdf8cfca2eda9a99063f66b957
Commit:     11a57153e3377ffdf8cfca2eda9a99063f66b957
Parent:     2997c8c4a0b179e8b834a7f30ba4323f2c60ccf4
Author:     Jens Axboe <[EMAIL PROTECTED]>
AuthorDate: Fri Jan 11 13:37:01 2008 +0100
Committer:  Jens Axboe <[EMAIL PROTECTED]>
CommitDate: Fri Jan 11 13:37:01 2008 +0100

    blktrace: kill the unneeded initcall
    
    It just inits the mutex, we can do that with DEFINE_MUTEX() instead.
    
    Signed-off-by: Jens Axboe <[EMAIL PROTECTED]>
---
 block/blktrace.c |   12 +-----------
 1 files changed, 1 insertions(+), 11 deletions(-)

diff --git a/block/blktrace.c b/block/blktrace.c
index 7471621..9b4da4a 100644
--- a/block/blktrace.c
+++ b/block/blktrace.c
@@ -178,7 +178,7 @@ void __blk_add_trace(struct blk_trace *bt, sector_t sector, 
int bytes,
 EXPORT_SYMBOL_GPL(__blk_add_trace);
 
 static struct dentry *blk_tree_root;
-static struct mutex blk_tree_mutex;
+static DEFINE_MUTEX(blk_tree_mutex);
 static unsigned int root_users;
 
 static inline void blk_remove_root(void)
@@ -504,13 +504,3 @@ void blk_trace_shutdown(struct request_queue *q)
                blk_trace_remove(q);
        }
 }
-
-static __init int blk_trace_init(void)
-{
-       mutex_init(&blk_tree_mutex);
-
-       return 0;
-}
-
-module_init(blk_trace_init);
-
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to