X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=block%2Fblk-core.c;h=6a9cc0d22a61c1aa2300d18c9728a7546c15cf0a;hb=3d0833953e1b98b79ddf491dd49229eef9baeac1;hp=2987fe47b5eecaa565bce30a7c3d661813453351;hpb=c4f51b4662074c6ee26c972126a317c05f65be06;p=linux-2.6 diff --git a/block/blk-core.c b/block/blk-core.c index 2987fe47b5..6a9cc0d22a 100644 --- a/block/blk-core.c +++ b/block/blk-core.c @@ -482,6 +482,7 @@ struct request_queue *blk_alloc_queue_node(gfp_t gfp_mask, int node_id) kobject_init(&q->kobj, &blk_queue_ktype); mutex_init(&q->sysfs_lock); + spin_lock_init(&q->__queue_lock); return q; } @@ -544,10 +545,8 @@ blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id) * if caller didn't supply a lock, they get per-queue locking with * our embedded lock */ - if (!lock) { - spin_lock_init(&q->__queue_lock); + if (!lock) lock = &q->__queue_lock; - } q->request_fn = rfn; q->prep_rq_fn = NULL;