Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ec2be6a9 authored by Bart Van Assche's avatar Bart Van Assche Committed by Jens Axboe
Browse files

pktcdvd: Check queue type before attaching to a queue



Since the pktcdvd driver only supports request queues for which
struct scsi_request is the first member of their private request
data, refuse to register block layer queues for which struct
scsi_request is not the first member of the private data.

References: commit 82ed4db4 ("block: split scsi_request out of struct request")
Signed-off-by: default avatarBart Van Assche <bart.vanassche@sandisk.com>
Reviewed-by: default avatarHannes Reinecke <hare@suse.com>
Reviewed-by: default avatarChristoph Hellwig <hch@lst.de>
Cc: Omar Sandoval <osandov@fb.com>
Signed-off-by: default avatarJens Axboe <axboe@fb.com>
parent d9f97264
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -2583,6 +2583,11 @@ static int pkt_new_dev(struct pktcdvd_device *pd, dev_t dev)
	bdev = bdget(dev);
	if (!bdev)
		return -ENOMEM;
	if (!blk_queue_scsi_passthrough(bdev_get_queue(bdev))) {
		WARN_ONCE(true, "Attempt to register a non-SCSI queue\n");
		bdput(bdev);
		return -EINVAL;
	}
	ret = blkdev_get(bdev, FMODE_READ | FMODE_NDELAY, NULL);
	if (ret)
		return ret;