diff options
author | Paul E. McKenney <paulmck@linux.vnet.ibm.com> | 2010-05-19 08:27:30 +0200 |
---|---|---|
committer | Jens Axboe <jens.axboe@oracle.com> | 2010-05-21 20:01:02 +0200 |
commit | f1ac2502e19c59e996242d406fcc60e4c563e8ce (patch) | |
tree | 0db91a25c4b754f8c03960cc308715200a974efc /block/cfq-iosched.c | |
parent | 6423104b6a1e6f0c18be60e8c33f02d263331d5e (diff) | |
download | op-kernel-dev-f1ac2502e19c59e996242d406fcc60e4c563e8ce.zip op-kernel-dev-f1ac2502e19c59e996242d406fcc60e4c563e8ce.tar.gz |
block: remove all rcu head initializations
Remove all rcu head inits. We don't care about the RCU head state before passing
it to call_rcu() anyway. Only leave the "on_stack" variants so debugobjects can
keep track of objects on stack.
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Diffstat (limited to 'block/cfq-iosched.c')
-rw-r--r-- | block/cfq-iosched.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/block/cfq-iosched.c b/block/cfq-iosched.c index 0f3eb70..b1472bc 100644 --- a/block/cfq-iosched.c +++ b/block/cfq-iosched.c @@ -3788,7 +3788,6 @@ static void *cfq_init_queue(struct request_queue *q) * second, in order to have larger depth for async operations. */ cfqd->last_delayed_sync = jiffies - HZ; - INIT_RCU_HEAD(&cfqd->rcu); return cfqd; } |