drbd: stop using ->queuedata
Instead of setting up the queuedata as well just use one private data field. Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
parent
82bb454d07
commit
84bc83c3ba
|
@ -2805,7 +2805,6 @@ enum drbd_ret_code drbd_create_device(struct drbd_config_context *adm_ctx, unsig
|
|||
if (!q)
|
||||
goto out_no_q;
|
||||
device->rq_queue = q;
|
||||
q->queuedata = device;
|
||||
|
||||
disk = alloc_disk(1);
|
||||
if (!disk)
|
||||
|
|
|
@ -1595,7 +1595,7 @@ void do_submit(struct work_struct *ws)
|
|||
|
||||
blk_qc_t drbd_make_request(struct request_queue *q, struct bio *bio)
|
||||
{
|
||||
struct drbd_device *device = (struct drbd_device *) q->queuedata;
|
||||
struct drbd_device *device = bio->bi_disk->private_data;
|
||||
unsigned long start_jif;
|
||||
|
||||
blk_queue_split(q, &bio);
|
||||
|
|
Loading…
Reference in New Issue