blob: 9f340fafca5cc911e941ff9fe762c4192a2c941a [file] [log] [blame]
Rusty Russelle467cde2007-10-22 11:03:38 +10001//#define DEBUG
2#include <linux/spinlock.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09003#include <linux/slab.h>
Rusty Russelle467cde2007-10-22 11:03:38 +10004#include <linux/blkdev.h>
5#include <linux/hdreg.h>
Paul Gortmaker0c8d44f2011-07-01 15:56:05 -04006#include <linux/module.h>
Michael S. Tsirkin4678d6f2012-01-12 15:44:44 +10307#include <linux/mutex.h>
Rusty Russelle467cde2007-10-22 11:03:38 +10008#include <linux/virtio.h>
9#include <linux/virtio_blk.h>
Jens Axboe3d1266c2007-10-24 13:21:21 +020010#include <linux/scatterlist.h>
Christoph Hellwig7a7c9242011-02-01 21:43:48 +010011#include <linux/string_helpers.h>
Liu Yuan6917f832011-04-24 02:49:26 +080012#include <scsi/scsi_cmnd.h>
Michael S. Tsirkin5087a502011-10-30 21:29:59 +020013#include <linux/idr.h>
Jens Axboe1cf7e9c2013-11-01 10:52:52 -060014#include <linux/blk-mq.h>
15#include <linux/numa.h>
Jens Axboe3d1266c2007-10-24 13:21:21 +020016
Christian Borntraeger4f3bf192008-01-31 15:53:53 +010017#define PART_BITS 4
Rusty Russelle467cde2007-10-22 11:03:38 +100018
Michael S. Tsirkin5087a502011-10-30 21:29:59 +020019static int major;
20static DEFINE_IDA(vd_index_ida);
21
Jonghwan Choi2a647bf2013-05-20 10:25:39 +093022static struct workqueue_struct *virtblk_wq;
Christian Borntraeger4f3bf192008-01-31 15:53:53 +010023
Rusty Russelle467cde2007-10-22 11:03:38 +100024struct virtio_blk
25{
Rusty Russelle467cde2007-10-22 11:03:38 +100026 struct virtio_device *vdev;
27 struct virtqueue *vq;
Jens Axboe1cf7e9c2013-11-01 10:52:52 -060028 spinlock_t vq_lock;
Rusty Russelle467cde2007-10-22 11:03:38 +100029
30 /* The disk structure for the kernel. */
31 struct gendisk *disk;
32
Christoph Hellwig24d2f902014-04-15 14:14:00 -060033 /* Block layer tags. */
34 struct blk_mq_tag_set tag_set;
35
Christoph Hellwig7a7c9242011-02-01 21:43:48 +010036 /* Process context for config space updates */
37 struct work_struct config_work;
38
Michael S. Tsirkin4678d6f2012-01-12 15:44:44 +103039 /* Lock for config space updates */
40 struct mutex config_lock;
41
42 /* enable config space updates */
43 bool config_enable;
44
Rusty Russell0864b792008-12-30 09:26:05 -060045 /* What host tells us, plus 2 for header & tailer. */
46 unsigned int sg_elems;
47
Michael S. Tsirkin5087a502011-10-30 21:29:59 +020048 /* Ida index - used to track minor number allocations. */
49 int index;
Rusty Russelle467cde2007-10-22 11:03:38 +100050};
51
52struct virtblk_req
53{
Rusty Russelle467cde2007-10-22 11:03:38 +100054 struct request *req;
55 struct virtio_blk_outhdr out_hdr;
Hannes Reinecke1cde26f2009-05-18 14:41:30 +020056 struct virtio_scsi_inhdr in_hdr;
Rusty Russellcb38fa22008-05-02 21:50:45 -050057 u8 status;
Asias Hea98755c2012-08-08 16:07:04 +080058 struct scatterlist sg[];
Rusty Russelle467cde2007-10-22 11:03:38 +100059};
60
Asias Hea98755c2012-08-08 16:07:04 +080061static inline int virtblk_result(struct virtblk_req *vbr)
62{
63 switch (vbr->status) {
64 case VIRTIO_BLK_S_OK:
65 return 0;
66 case VIRTIO_BLK_S_UNSUPP:
67 return -ENOTTY;
68 default:
69 return -EIO;
70 }
71}
72
Paolo Bonzini8f39db92013-03-20 15:44:27 +103073static int __virtblk_add_req(struct virtqueue *vq,
Paolo Bonzini20af3cf2013-03-20 15:44:27 +103074 struct virtblk_req *vbr,
75 struct scatterlist *data_sg,
Rusty Russell0a11cc32013-03-20 15:44:27 +103076 bool have_data)
Asias Hec85a1f92012-08-08 16:07:05 +080077{
Paolo Bonzini20af3cf2013-03-20 15:44:27 +103078 struct scatterlist hdr, status, cmd, sense, inhdr, *sgs[6];
Paolo Bonzini8f39db92013-03-20 15:44:27 +103079 unsigned int num_out = 0, num_in = 0;
Paolo Bonzini20af3cf2013-03-20 15:44:27 +103080 int type = vbr->out_hdr.type & ~VIRTIO_BLK_T_OUT;
Paolo Bonzini8f39db92013-03-20 15:44:27 +103081
82 sg_init_one(&hdr, &vbr->out_hdr, sizeof(vbr->out_hdr));
83 sgs[num_out++] = &hdr;
84
Paolo Bonzini20af3cf2013-03-20 15:44:27 +103085 /*
86 * If this is a packet command we need a couple of additional headers.
87 * Behind the normal outhdr we put a segment with the scsi command
88 * block, and before the normal inhdr we put the sense data and the
89 * inhdr with additional status information.
90 */
91 if (type == VIRTIO_BLK_T_SCSI_CMD) {
92 sg_init_one(&cmd, vbr->req->cmd, vbr->req->cmd_len);
93 sgs[num_out++] = &cmd;
94 }
95
Rusty Russell0a11cc32013-03-20 15:44:27 +103096 if (have_data) {
Paolo Bonzini8f39db92013-03-20 15:44:27 +103097 if (vbr->out_hdr.type & VIRTIO_BLK_T_OUT)
Paolo Bonzini20af3cf2013-03-20 15:44:27 +103098 sgs[num_out++] = data_sg;
Paolo Bonzini8f39db92013-03-20 15:44:27 +103099 else
Paolo Bonzini20af3cf2013-03-20 15:44:27 +1030100 sgs[num_out + num_in++] = data_sg;
101 }
102
103 if (type == VIRTIO_BLK_T_SCSI_CMD) {
104 sg_init_one(&sense, vbr->req->sense, SCSI_SENSE_BUFFERSIZE);
105 sgs[num_out + num_in++] = &sense;
106 sg_init_one(&inhdr, &vbr->in_hdr, sizeof(vbr->in_hdr));
107 sgs[num_out + num_in++] = &inhdr;
Paolo Bonzini8f39db92013-03-20 15:44:27 +1030108 }
109
110 sg_init_one(&status, &vbr->status, sizeof(vbr->status));
111 sgs[num_out + num_in++] = &status;
112
113 return virtqueue_add_sgs(vq, sgs, num_out, num_in, vbr, GFP_ATOMIC);
Paolo Bonzini5ee21a52013-03-20 15:44:27 +1030114}
Asias Hec85a1f92012-08-08 16:07:05 +0800115
Christoph Hellwig5124c282014-02-10 03:24:39 -0800116static inline void virtblk_request_done(struct request *req)
Asias Hec85a1f92012-08-08 16:07:05 +0800117{
Christoph Hellwig9d74e252014-04-14 10:30:07 +0200118 struct virtblk_req *vbr = blk_mq_rq_to_pdu(req);
Asias Hea98755c2012-08-08 16:07:04 +0800119 int error = virtblk_result(vbr);
120
121 if (req->cmd_type == REQ_TYPE_BLOCK_PC) {
122 req->resid_len = vbr->in_hdr.residual;
123 req->sense_len = vbr->in_hdr.sense_len;
124 req->errors = vbr->in_hdr.errors;
125 } else if (req->cmd_type == REQ_TYPE_SPECIAL) {
126 req->errors = (error != 0);
127 }
128
Jens Axboe1cf7e9c2013-11-01 10:52:52 -0600129 blk_mq_end_io(req, error);
Asias Hea98755c2012-08-08 16:07:04 +0800130}
131
132static void virtblk_done(struct virtqueue *vq)
Rusty Russelle467cde2007-10-22 11:03:38 +1000133{
134 struct virtio_blk *vblk = vq->vdev->priv;
Jens Axboe1cf7e9c2013-11-01 10:52:52 -0600135 bool req_done = false;
Rusty Russelle467cde2007-10-22 11:03:38 +1000136 struct virtblk_req *vbr;
Rusty Russelle467cde2007-10-22 11:03:38 +1000137 unsigned long flags;
Asias Hea98755c2012-08-08 16:07:04 +0800138 unsigned int len;
Rusty Russelle467cde2007-10-22 11:03:38 +1000139
Jens Axboe1cf7e9c2013-11-01 10:52:52 -0600140 spin_lock_irqsave(&vblk->vq_lock, flags);
Asias Hebb811102012-09-25 10:36:17 +0800141 do {
142 virtqueue_disable_cb(vq);
143 while ((vbr = virtqueue_get_buf(vblk->vq, &len)) != NULL) {
Christoph Hellwig5124c282014-02-10 03:24:39 -0800144 blk_mq_complete_request(vbr->req);
Jens Axboe1cf7e9c2013-11-01 10:52:52 -0600145 req_done = true;
Rusty Russelle467cde2007-10-22 11:03:38 +1000146 }
Heinz Graalfs7f03b172013-10-29 09:40:30 +1030147 if (unlikely(virtqueue_is_broken(vq)))
148 break;
Asias Hebb811102012-09-25 10:36:17 +0800149 } while (!virtqueue_enable_cb(vq));
Jens Axboe1cf7e9c2013-11-01 10:52:52 -0600150
Rusty Russelle467cde2007-10-22 11:03:38 +1000151 /* In case queue is stopped waiting for more buffers. */
Asias Hea98755c2012-08-08 16:07:04 +0800152 if (req_done)
Christoph Hellwig1b4a3252014-04-16 09:44:54 +0200153 blk_mq_start_stopped_hw_queues(vblk->disk->queue, true);
Ming Lei0c29e932014-05-16 23:31:21 +0800154 spin_unlock_irqrestore(&vblk->vq_lock, flags);
Asias Hea98755c2012-08-08 16:07:04 +0800155}
156
Jens Axboe1cf7e9c2013-11-01 10:52:52 -0600157static int virtio_queue_rq(struct blk_mq_hw_ctx *hctx, struct request *req)
Rusty Russelle467cde2007-10-22 11:03:38 +1000158{
Jens Axboe1cf7e9c2013-11-01 10:52:52 -0600159 struct virtio_blk *vblk = hctx->queue->queuedata;
Christoph Hellwig9d74e252014-04-14 10:30:07 +0200160 struct virtblk_req *vbr = blk_mq_rq_to_pdu(req);
Jens Axboe1cf7e9c2013-11-01 10:52:52 -0600161 unsigned long flags;
Paolo Bonzini20af3cf2013-03-20 15:44:27 +1030162 unsigned int num;
Jens Axboe1cf7e9c2013-11-01 10:52:52 -0600163 const bool last = (req->cmd_flags & REQ_END) != 0;
Rusty Russell5261b852014-03-13 11:23:39 +1030164 int err;
Rusty Russelle467cde2007-10-22 11:03:38 +1000165
Jens Axboe1cf7e9c2013-11-01 10:52:52 -0600166 BUG_ON(req->nr_phys_segments + 2 > vblk->sg_elems);
Rusty Russelle467cde2007-10-22 11:03:38 +1000167
168 vbr->req = req;
FUJITA Tomonoridd40e452010-07-03 17:45:38 +0900169 if (req->cmd_flags & REQ_FLUSH) {
170 vbr->out_hdr.type = VIRTIO_BLK_T_FLUSH;
Rusty Russelle467cde2007-10-22 11:03:38 +1000171 vbr->out_hdr.sector = 0;
Fernando Luis Vázquez Cao766ca442008-08-14 09:59:13 +0200172 vbr->out_hdr.ioprio = req_get_ioprio(vbr->req);
FUJITA Tomonoridd40e452010-07-03 17:45:38 +0900173 } else {
174 switch (req->cmd_type) {
175 case REQ_TYPE_FS:
176 vbr->out_hdr.type = 0;
177 vbr->out_hdr.sector = blk_rq_pos(vbr->req);
178 vbr->out_hdr.ioprio = req_get_ioprio(vbr->req);
179 break;
180 case REQ_TYPE_BLOCK_PC:
181 vbr->out_hdr.type = VIRTIO_BLK_T_SCSI_CMD;
Christoph Hellwigf1b0ef062009-09-17 19:57:42 +0200182 vbr->out_hdr.sector = 0;
183 vbr->out_hdr.ioprio = req_get_ioprio(vbr->req);
184 break;
FUJITA Tomonoridd40e452010-07-03 17:45:38 +0900185 case REQ_TYPE_SPECIAL:
186 vbr->out_hdr.type = VIRTIO_BLK_T_GET_ID;
187 vbr->out_hdr.sector = 0;
188 vbr->out_hdr.ioprio = req_get_ioprio(vbr->req);
189 break;
190 default:
191 /* We don't put anything else in the queue. */
192 BUG();
Christoph Hellwigf1b0ef062009-09-17 19:57:42 +0200193 }
Rusty Russelle467cde2007-10-22 11:03:38 +1000194 }
195
Jens Axboe1cf7e9c2013-11-01 10:52:52 -0600196 num = blk_rq_map_sg(hctx->queue, vbr->req, vbr->sg);
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200197 if (num) {
Paolo Bonzini20af3cf2013-03-20 15:44:27 +1030198 if (rq_data_dir(vbr->req) == WRITE)
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200199 vbr->out_hdr.type |= VIRTIO_BLK_T_OUT;
Paolo Bonzini20af3cf2013-03-20 15:44:27 +1030200 else
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200201 vbr->out_hdr.type |= VIRTIO_BLK_T_IN;
Rusty Russelle467cde2007-10-22 11:03:38 +1000202 }
203
Jens Axboe1cf7e9c2013-11-01 10:52:52 -0600204 spin_lock_irqsave(&vblk->vq_lock, flags);
Rusty Russell5261b852014-03-13 11:23:39 +1030205 err = __virtblk_add_req(vblk->vq, vbr, vbr->sg, num);
206 if (err) {
Shaohua Lif02b9ac2013-11-19 18:57:24 -0700207 virtqueue_kick(vblk->vq);
Jens Axboe1cf7e9c2013-11-01 10:52:52 -0600208 blk_mq_stop_hw_queue(hctx);
Ming Lei0c29e932014-05-16 23:31:21 +0800209 spin_unlock_irqrestore(&vblk->vq_lock, flags);
Rusty Russell5261b852014-03-13 11:23:39 +1030210 /* Out of mem doesn't actually happen, since we fall back
211 * to direct descriptors */
212 if (err == -ENOMEM || err == -ENOSPC)
213 return BLK_MQ_RQ_QUEUE_BUSY;
214 return BLK_MQ_RQ_QUEUE_ERROR;
Asias Hea98755c2012-08-08 16:07:04 +0800215 }
216
Jens Axboe1cf7e9c2013-11-01 10:52:52 -0600217 if (last)
218 virtqueue_kick(vblk->vq);
Shaohua Lif02b9ac2013-11-19 18:57:24 -0700219
220 spin_unlock_irqrestore(&vblk->vq_lock, flags);
Jens Axboe1cf7e9c2013-11-01 10:52:52 -0600221 return BLK_MQ_RQ_QUEUE_OK;
Asias Hea98755c2012-08-08 16:07:04 +0800222}
223
john cooper4cb2ea22010-03-25 01:33:33 -0400224/* return id (s/n) string for *disk to *id_str
225 */
226static int virtblk_get_id(struct gendisk *disk, char *id_str)
227{
228 struct virtio_blk *vblk = disk->private_data;
229 struct request *req;
230 struct bio *bio;
Mike Snitzere4c47762010-10-09 12:12:13 +1030231 int err;
john cooper4cb2ea22010-03-25 01:33:33 -0400232
233 bio = bio_map_kern(vblk->disk->queue, id_str, VIRTIO_BLK_ID_BYTES,
234 GFP_KERNEL);
235 if (IS_ERR(bio))
236 return PTR_ERR(bio);
237
238 req = blk_make_request(vblk->disk->queue, bio, GFP_KERNEL);
239 if (IS_ERR(req)) {
240 bio_put(bio);
241 return PTR_ERR(req);
242 }
243
244 req->cmd_type = REQ_TYPE_SPECIAL;
Mike Snitzere4c47762010-10-09 12:12:13 +1030245 err = blk_execute_rq(vblk->disk->queue, vblk->disk, req, false);
246 blk_put_request(req);
247
248 return err;
john cooper4cb2ea22010-03-25 01:33:33 -0400249}
250
Christoph Hellwigfe5a50a2010-09-15 01:27:23 +0200251static int virtblk_ioctl(struct block_device *bdev, fmode_t mode,
252 unsigned int cmd, unsigned long data)
Rusty Russelle467cde2007-10-22 11:03:38 +1000253{
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200254 struct gendisk *disk = bdev->bd_disk;
255 struct virtio_blk *vblk = disk->private_data;
256
257 /*
258 * Only allow the generic SCSI ioctls if the host can support it.
259 */
260 if (!virtio_has_feature(vblk->vdev, VIRTIO_BLK_F_SCSI))
Christoph Hellwigd9ecdea2009-06-20 21:29:41 +0200261 return -ENOTTY;
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200262
Paolo Bonzini577ebb32012-01-12 16:01:27 +0100263 return scsi_cmd_blk_ioctl(bdev, mode, cmd,
264 (void __user *)data);
Rusty Russelle467cde2007-10-22 11:03:38 +1000265}
266
Christian Borntraeger135da0b2008-01-23 17:56:50 +0100267/* We provide getgeo only to please some old bootloader/partitioning tools */
268static int virtblk_getgeo(struct block_device *bd, struct hd_geometry *geo)
269{
Ryan Harper48e40432008-04-16 13:56:37 -0500270 struct virtio_blk *vblk = bd->bd_disk->private_data;
Ryan Harper48e40432008-04-16 13:56:37 -0500271
272 /* see if the host passed in geometry config */
Rusty Russell855e0c52013-10-14 18:11:51 +1030273 if (virtio_has_feature(vblk->vdev, VIRTIO_BLK_F_GEOMETRY)) {
274 virtio_cread(vblk->vdev, struct virtio_blk_config,
275 geometry.cylinders, &geo->cylinders);
276 virtio_cread(vblk->vdev, struct virtio_blk_config,
277 geometry.heads, &geo->heads);
278 virtio_cread(vblk->vdev, struct virtio_blk_config,
279 geometry.sectors, &geo->sectors);
Ryan Harper48e40432008-04-16 13:56:37 -0500280 } else {
281 /* some standard values, similar to sd */
282 geo->heads = 1 << 6;
283 geo->sectors = 1 << 5;
284 geo->cylinders = get_capacity(bd->bd_disk) >> 11;
285 }
Christian Borntraeger135da0b2008-01-23 17:56:50 +0100286 return 0;
287}
288
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -0700289static const struct block_device_operations virtblk_fops = {
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +0200290 .ioctl = virtblk_ioctl,
Christian Borntraeger135da0b2008-01-23 17:56:50 +0100291 .owner = THIS_MODULE,
292 .getgeo = virtblk_getgeo,
Rusty Russelle467cde2007-10-22 11:03:38 +1000293};
294
Christian Borntraegerd50ed902008-02-01 09:05:00 +0100295static int index_to_minor(int index)
296{
297 return index << PART_BITS;
298}
299
Michael S. Tsirkin5087a502011-10-30 21:29:59 +0200300static int minor_to_index(int minor)
301{
302 return minor >> PART_BITS;
303}
304
Ryan Harpera5eb9e42010-06-23 22:19:57 -0500305static ssize_t virtblk_serial_show(struct device *dev,
306 struct device_attribute *attr, char *buf)
307{
308 struct gendisk *disk = dev_to_disk(dev);
309 int err;
310
311 /* sysfs gives us a PAGE_SIZE buffer */
312 BUILD_BUG_ON(PAGE_SIZE < VIRTIO_BLK_ID_BYTES);
313
314 buf[VIRTIO_BLK_ID_BYTES] = '\0';
315 err = virtblk_get_id(disk, buf);
316 if (!err)
317 return strlen(buf);
318
319 if (err == -EIO) /* Unsupported? Make it empty. */
320 return 0;
321
322 return err;
323}
324DEVICE_ATTR(serial, S_IRUGO, virtblk_serial_show, NULL);
325
Christoph Hellwig7a7c9242011-02-01 21:43:48 +0100326static void virtblk_config_changed_work(struct work_struct *work)
327{
328 struct virtio_blk *vblk =
329 container_of(work, struct virtio_blk, config_work);
330 struct virtio_device *vdev = vblk->vdev;
331 struct request_queue *q = vblk->disk->queue;
332 char cap_str_2[10], cap_str_10[10];
Milos Vyletel9d9598b2013-03-12 15:34:40 +1030333 char *envp[] = { "RESIZE=1", NULL };
Christoph Hellwig7a7c9242011-02-01 21:43:48 +0100334 u64 capacity, size;
335
Michael S. Tsirkin4678d6f2012-01-12 15:44:44 +1030336 mutex_lock(&vblk->config_lock);
337 if (!vblk->config_enable)
338 goto done;
339
Christoph Hellwig7a7c9242011-02-01 21:43:48 +0100340 /* Host must always specify the capacity. */
Rusty Russell855e0c52013-10-14 18:11:51 +1030341 virtio_cread(vdev, struct virtio_blk_config, capacity, &capacity);
Christoph Hellwig7a7c9242011-02-01 21:43:48 +0100342
343 /* If capacity is too big, truncate with warning. */
344 if ((sector_t)capacity != capacity) {
345 dev_warn(&vdev->dev, "Capacity %llu too large: truncating\n",
346 (unsigned long long)capacity);
347 capacity = (sector_t)-1;
348 }
349
350 size = capacity * queue_logical_block_size(q);
351 string_get_size(size, STRING_UNITS_2, cap_str_2, sizeof(cap_str_2));
352 string_get_size(size, STRING_UNITS_10, cap_str_10, sizeof(cap_str_10));
353
354 dev_notice(&vdev->dev,
355 "new size: %llu %d-byte logical blocks (%s/%s)\n",
356 (unsigned long long)capacity,
357 queue_logical_block_size(q),
358 cap_str_10, cap_str_2);
359
360 set_capacity(vblk->disk, capacity);
Vivek Goyale9986f32012-03-29 10:09:44 +0200361 revalidate_disk(vblk->disk);
Milos Vyletel9d9598b2013-03-12 15:34:40 +1030362 kobject_uevent_env(&disk_to_dev(vblk->disk)->kobj, KOBJ_CHANGE, envp);
Michael S. Tsirkin4678d6f2012-01-12 15:44:44 +1030363done:
364 mutex_unlock(&vblk->config_lock);
Christoph Hellwig7a7c9242011-02-01 21:43:48 +0100365}
366
367static void virtblk_config_changed(struct virtio_device *vdev)
368{
369 struct virtio_blk *vblk = vdev->priv;
370
371 queue_work(virtblk_wq, &vblk->config_work);
372}
373
Amit Shah6abd6e52011-12-22 16:58:29 +0530374static int init_vq(struct virtio_blk *vblk)
375{
376 int err = 0;
377
378 /* We expect one virtqueue, for output. */
Asias Hea98755c2012-08-08 16:07:04 +0800379 vblk->vq = virtio_find_single_vq(vblk->vdev, virtblk_done, "requests");
Amit Shah6abd6e52011-12-22 16:58:29 +0530380 if (IS_ERR(vblk->vq))
381 err = PTR_ERR(vblk->vq);
382
383 return err;
384}
385
Ren Mingxinc0aa3e02012-04-10 15:28:05 +0800386/*
387 * Legacy naming scheme used for virtio devices. We are stuck with it for
388 * virtio blk but don't ever use it for any new driver.
389 */
390static int virtblk_name_format(char *prefix, int index, char *buf, int buflen)
391{
392 const int base = 'z' - 'a' + 1;
393 char *begin = buf + strlen(prefix);
394 char *end = buf + buflen;
395 char *p;
396 int unit;
397
398 p = end - 1;
399 *p = '\0';
400 unit = base;
401 do {
402 if (p == begin)
403 return -EINVAL;
404 *--p = 'a' + (index % unit);
405 index = (index / unit) - 1;
406 } while (index >= 0);
407
408 memmove(begin, p, end - p);
409 memcpy(buf, prefix, strlen(prefix));
410
411 return 0;
412}
413
Paolo Bonzinicd5d5032012-07-03 15:19:37 +0200414static int virtblk_get_cache_mode(struct virtio_device *vdev)
415{
416 u8 writeback;
417 int err;
418
Rusty Russell855e0c52013-10-14 18:11:51 +1030419 err = virtio_cread_feature(vdev, VIRTIO_BLK_F_CONFIG_WCE,
420 struct virtio_blk_config, wce,
421 &writeback);
Paolo Bonzinicd5d5032012-07-03 15:19:37 +0200422 if (err)
423 writeback = virtio_has_feature(vdev, VIRTIO_BLK_F_WCE);
424
425 return writeback;
426}
427
428static void virtblk_update_cache_mode(struct virtio_device *vdev)
429{
430 u8 writeback = virtblk_get_cache_mode(vdev);
431 struct virtio_blk *vblk = vdev->priv;
432
Asias Hec85a1f92012-08-08 16:07:05 +0800433 if (writeback)
Paolo Bonzinicd5d5032012-07-03 15:19:37 +0200434 blk_queue_flush(vblk->disk->queue, REQ_FLUSH);
435 else
436 blk_queue_flush(vblk->disk->queue, 0);
437
438 revalidate_disk(vblk->disk);
439}
440
441static const char *const virtblk_cache_types[] = {
442 "write through", "write back"
443};
444
445static ssize_t
446virtblk_cache_type_store(struct device *dev, struct device_attribute *attr,
447 const char *buf, size_t count)
448{
449 struct gendisk *disk = dev_to_disk(dev);
450 struct virtio_blk *vblk = disk->private_data;
451 struct virtio_device *vdev = vblk->vdev;
452 int i;
Paolo Bonzinicd5d5032012-07-03 15:19:37 +0200453
454 BUG_ON(!virtio_has_feature(vblk->vdev, VIRTIO_BLK_F_CONFIG_WCE));
455 for (i = ARRAY_SIZE(virtblk_cache_types); --i >= 0; )
456 if (sysfs_streq(buf, virtblk_cache_types[i]))
457 break;
458
459 if (i < 0)
460 return -EINVAL;
461
Rusty Russell855e0c52013-10-14 18:11:51 +1030462 virtio_cwrite8(vdev, offsetof(struct virtio_blk_config, wce), i);
Paolo Bonzinicd5d5032012-07-03 15:19:37 +0200463 virtblk_update_cache_mode(vdev);
464 return count;
465}
466
467static ssize_t
468virtblk_cache_type_show(struct device *dev, struct device_attribute *attr,
469 char *buf)
470{
471 struct gendisk *disk = dev_to_disk(dev);
472 struct virtio_blk *vblk = disk->private_data;
473 u8 writeback = virtblk_get_cache_mode(vblk->vdev);
474
475 BUG_ON(writeback >= ARRAY_SIZE(virtblk_cache_types));
476 return snprintf(buf, 40, "%s\n", virtblk_cache_types[writeback]);
477}
478
479static const struct device_attribute dev_attr_cache_type_ro =
480 __ATTR(cache_type, S_IRUGO,
481 virtblk_cache_type_show, NULL);
482static const struct device_attribute dev_attr_cache_type_rw =
483 __ATTR(cache_type, S_IRUGO|S_IWUSR,
484 virtblk_cache_type_show, virtblk_cache_type_store);
485
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600486static int virtblk_init_request(void *data, struct request *rq,
487 unsigned int hctx_idx, unsigned int request_idx,
488 unsigned int numa_node)
Christoph Hellwige9b267d2014-04-15 13:59:10 -0600489{
490 struct virtio_blk *vblk = data;
491 struct virtblk_req *vbr = blk_mq_rq_to_pdu(rq);
492
493 sg_init_table(vbr->sg, vblk->sg_elems);
494 return 0;
495}
496
Jens Axboe1cf7e9c2013-11-01 10:52:52 -0600497static struct blk_mq_ops virtio_mq_ops = {
498 .queue_rq = virtio_queue_rq,
499 .map_queue = blk_mq_map_queue,
500 .alloc_hctx = blk_mq_alloc_single_hw_queue,
501 .free_hctx = blk_mq_free_single_hw_queue,
Christoph Hellwig5124c282014-02-10 03:24:39 -0800502 .complete = virtblk_request_done,
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600503 .init_request = virtblk_init_request,
Jens Axboe1cf7e9c2013-11-01 10:52:52 -0600504};
505
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600506static unsigned int virtblk_queue_depth;
507module_param_named(queue_depth, virtblk_queue_depth, uint, 0444);
Jens Axboe1cf7e9c2013-11-01 10:52:52 -0600508
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -0800509static int virtblk_probe(struct virtio_device *vdev)
Rusty Russelle467cde2007-10-22 11:03:38 +1000510{
511 struct virtio_blk *vblk;
Christoph Hellwig69740c82010-02-24 14:22:25 -0600512 struct request_queue *q;
Michael S. Tsirkin5087a502011-10-30 21:29:59 +0200513 int err, index;
Asias Hea98755c2012-08-08 16:07:04 +0800514
Rusty Russelle467cde2007-10-22 11:03:38 +1000515 u64 cap;
Christoph Hellwig69740c82010-02-24 14:22:25 -0600516 u32 v, blk_size, sg_elems, opt_io_size;
517 u16 min_io_size;
518 u8 physical_block_exp, alignment_offset;
Rusty Russelle467cde2007-10-22 11:03:38 +1000519
Michael S. Tsirkin5087a502011-10-30 21:29:59 +0200520 err = ida_simple_get(&vd_index_ida, 0, minor_to_index(1 << MINORBITS),
521 GFP_KERNEL);
522 if (err < 0)
523 goto out;
524 index = err;
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100525
Rusty Russell0864b792008-12-30 09:26:05 -0600526 /* We need to know how many segments before we allocate. */
Rusty Russell855e0c52013-10-14 18:11:51 +1030527 err = virtio_cread_feature(vdev, VIRTIO_BLK_F_SEG_MAX,
528 struct virtio_blk_config, seg_max,
529 &sg_elems);
Christoph Hellwiga5b365a2010-05-25 14:17:54 +0200530
531 /* We need at least one SG element, whatever they say. */
532 if (err || !sg_elems)
Rusty Russell0864b792008-12-30 09:26:05 -0600533 sg_elems = 1;
534
535 /* We need an extra sg elements at head and tail. */
536 sg_elems += 2;
Jens Axboe1cf7e9c2013-11-01 10:52:52 -0600537 vdev->priv = vblk = kmalloc(sizeof(*vblk), GFP_KERNEL);
Rusty Russelle467cde2007-10-22 11:03:38 +1000538 if (!vblk) {
539 err = -ENOMEM;
Michael S. Tsirkin5087a502011-10-30 21:29:59 +0200540 goto out_free_index;
Rusty Russelle467cde2007-10-22 11:03:38 +1000541 }
542
Rusty Russelle467cde2007-10-22 11:03:38 +1000543 vblk->vdev = vdev;
Rusty Russell0864b792008-12-30 09:26:05 -0600544 vblk->sg_elems = sg_elems;
Michael S. Tsirkin4678d6f2012-01-12 15:44:44 +1030545 mutex_init(&vblk->config_lock);
Asias Hea98755c2012-08-08 16:07:04 +0800546
Christoph Hellwig7a7c9242011-02-01 21:43:48 +0100547 INIT_WORK(&vblk->config_work, virtblk_config_changed_work);
Michael S. Tsirkin4678d6f2012-01-12 15:44:44 +1030548 vblk->config_enable = true;
Rusty Russelle467cde2007-10-22 11:03:38 +1000549
Amit Shah6abd6e52011-12-22 16:58:29 +0530550 err = init_vq(vblk);
551 if (err)
Rusty Russelle467cde2007-10-22 11:03:38 +1000552 goto out_free_vblk;
Jens Axboe1cf7e9c2013-11-01 10:52:52 -0600553 spin_lock_init(&vblk->vq_lock);
Rusty Russelle467cde2007-10-22 11:03:38 +1000554
Rusty Russelle467cde2007-10-22 11:03:38 +1000555 /* FIXME: How many partitions? How long is a piece of string? */
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100556 vblk->disk = alloc_disk(1 << PART_BITS);
Rusty Russelle467cde2007-10-22 11:03:38 +1000557 if (!vblk->disk) {
558 err = -ENOMEM;
Jens Axboe1cf7e9c2013-11-01 10:52:52 -0600559 goto out_free_vq;
Rusty Russelle467cde2007-10-22 11:03:38 +1000560 }
561
Rusty Russellfc4324b2014-03-19 17:08:24 +1030562 /* Default queue sizing is to fill the ring. */
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600563 if (!virtblk_queue_depth) {
564 virtblk_queue_depth = vblk->vq->num_free;
Rusty Russellfc4324b2014-03-19 17:08:24 +1030565 /* ... but without indirect descs, we use 2 descs per req */
566 if (!virtio_has_feature(vdev, VIRTIO_RING_F_INDIRECT_DESC))
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600567 virtblk_queue_depth /= 2;
Rusty Russellfc4324b2014-03-19 17:08:24 +1030568 }
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600569
570 memset(&vblk->tag_set, 0, sizeof(vblk->tag_set));
571 vblk->tag_set.ops = &virtio_mq_ops;
572 vblk->tag_set.nr_hw_queues = 1;
573 vblk->tag_set.queue_depth = virtblk_queue_depth;
574 vblk->tag_set.numa_node = NUMA_NO_NODE;
575 vblk->tag_set.flags = BLK_MQ_F_SHOULD_MERGE;
576 vblk->tag_set.cmd_size =
Jens Axboe1cf7e9c2013-11-01 10:52:52 -0600577 sizeof(struct virtblk_req) +
578 sizeof(struct scatterlist) * sg_elems;
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600579 vblk->tag_set.driver_data = vblk;
Jens Axboe1cf7e9c2013-11-01 10:52:52 -0600580
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600581 err = blk_mq_alloc_tag_set(&vblk->tag_set);
582 if (err)
583 goto out_put_disk;
584
585 q = vblk->disk->queue = blk_mq_init_queue(&vblk->tag_set);
Christoph Hellwig69740c82010-02-24 14:22:25 -0600586 if (!q) {
Rusty Russelle467cde2007-10-22 11:03:38 +1000587 err = -ENOMEM;
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600588 goto out_free_tags;
Rusty Russelle467cde2007-10-22 11:03:38 +1000589 }
590
Christoph Hellwig69740c82010-02-24 14:22:25 -0600591 q->queuedata = vblk;
Fernando Luis Vázquez Cao7d116b62008-10-27 18:45:15 +0900592
Ren Mingxinc0aa3e02012-04-10 15:28:05 +0800593 virtblk_name_format("vd", index, vblk->disk->disk_name, DISK_NAME_LEN);
Christian Borntraegerd50ed902008-02-01 09:05:00 +0100594
Rusty Russelle467cde2007-10-22 11:03:38 +1000595 vblk->disk->major = major;
Christian Borntraegerd50ed902008-02-01 09:05:00 +0100596 vblk->disk->first_minor = index_to_minor(index);
Rusty Russelle467cde2007-10-22 11:03:38 +1000597 vblk->disk->private_data = vblk;
598 vblk->disk->fops = &virtblk_fops;
Jeremy Katzc4839342008-03-02 17:00:15 -0500599 vblk->disk->driverfs_dev = &vdev->dev;
Michael S. Tsirkin5087a502011-10-30 21:29:59 +0200600 vblk->index = index;
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100601
Tejun Heo02c42b72010-09-03 11:56:18 +0200602 /* configure queue flush support */
Paolo Bonzinicd5d5032012-07-03 15:19:37 +0200603 virtblk_update_cache_mode(vdev);
Rusty Russelle467cde2007-10-22 11:03:38 +1000604
Christian Borntraeger3ef53602008-05-16 11:17:03 +0200605 /* If disk is read-only in the host, the guest should obey */
606 if (virtio_has_feature(vdev, VIRTIO_BLK_F_RO))
607 set_disk_ro(vblk->disk, 1);
608
Rusty Russella586d4f2008-02-04 23:49:56 -0500609 /* Host must always specify the capacity. */
Rusty Russell855e0c52013-10-14 18:11:51 +1030610 virtio_cread(vdev, struct virtio_blk_config, capacity, &cap);
Rusty Russelle467cde2007-10-22 11:03:38 +1000611
612 /* If capacity is too big, truncate with warning. */
613 if ((sector_t)cap != cap) {
614 dev_warn(&vdev->dev, "Capacity %llu too large: truncating\n",
615 (unsigned long long)cap);
616 cap = (sector_t)-1;
617 }
618 set_capacity(vblk->disk, cap);
619
Rusty Russell0864b792008-12-30 09:26:05 -0600620 /* We can handle whatever the host told us to handle. */
Martin K. Petersenee714f22010-03-10 00:48:32 -0500621 blk_queue_max_segments(q, vblk->sg_elems-2);
Rusty Russell0864b792008-12-30 09:26:05 -0600622
Christoph Hellwig4eff3ca2009-07-17 21:47:45 -0600623 /* No need to bounce any requests */
Christoph Hellwig69740c82010-02-24 14:22:25 -0600624 blk_queue_bounce_limit(q, BLK_BOUNCE_ANY);
Christoph Hellwig4eff3ca2009-07-17 21:47:45 -0600625
Rusty Russell4b7f7e22008-12-30 09:26:04 -0600626 /* No real sector limit. */
Martin K. Petersenee714f22010-03-10 00:48:32 -0500627 blk_queue_max_hw_sectors(q, -1U);
Rusty Russell4b7f7e22008-12-30 09:26:04 -0600628
Rusty Russella586d4f2008-02-04 23:49:56 -0500629 /* Host can optionally specify maximum segment size and number of
630 * segments. */
Rusty Russell855e0c52013-10-14 18:11:51 +1030631 err = virtio_cread_feature(vdev, VIRTIO_BLK_F_SIZE_MAX,
632 struct virtio_blk_config, size_max, &v);
Rusty Russelle467cde2007-10-22 11:03:38 +1000633 if (!err)
Christoph Hellwig69740c82010-02-24 14:22:25 -0600634 blk_queue_max_segment_size(q, v);
Rusty Russell4b7f7e22008-12-30 09:26:04 -0600635 else
Christoph Hellwig69740c82010-02-24 14:22:25 -0600636 blk_queue_max_segment_size(q, -1U);
Rusty Russelle467cde2007-10-22 11:03:38 +1000637
Christian Borntraeger066f4d82008-05-29 11:08:26 +0200638 /* Host can optionally specify the block size of the device */
Rusty Russell855e0c52013-10-14 18:11:51 +1030639 err = virtio_cread_feature(vdev, VIRTIO_BLK_F_BLK_SIZE,
640 struct virtio_blk_config, blk_size,
641 &blk_size);
Christian Borntraeger066f4d82008-05-29 11:08:26 +0200642 if (!err)
Christoph Hellwig69740c82010-02-24 14:22:25 -0600643 blk_queue_logical_block_size(q, blk_size);
644 else
645 blk_size = queue_logical_block_size(q);
646
647 /* Use topology information if available */
Rusty Russell855e0c52013-10-14 18:11:51 +1030648 err = virtio_cread_feature(vdev, VIRTIO_BLK_F_TOPOLOGY,
649 struct virtio_blk_config, physical_block_exp,
650 &physical_block_exp);
Christoph Hellwig69740c82010-02-24 14:22:25 -0600651 if (!err && physical_block_exp)
652 blk_queue_physical_block_size(q,
653 blk_size * (1 << physical_block_exp));
654
Rusty Russell855e0c52013-10-14 18:11:51 +1030655 err = virtio_cread_feature(vdev, VIRTIO_BLK_F_TOPOLOGY,
656 struct virtio_blk_config, alignment_offset,
657 &alignment_offset);
Christoph Hellwig69740c82010-02-24 14:22:25 -0600658 if (!err && alignment_offset)
659 blk_queue_alignment_offset(q, blk_size * alignment_offset);
660
Rusty Russell855e0c52013-10-14 18:11:51 +1030661 err = virtio_cread_feature(vdev, VIRTIO_BLK_F_TOPOLOGY,
662 struct virtio_blk_config, min_io_size,
663 &min_io_size);
Christoph Hellwig69740c82010-02-24 14:22:25 -0600664 if (!err && min_io_size)
665 blk_queue_io_min(q, blk_size * min_io_size);
666
Rusty Russell855e0c52013-10-14 18:11:51 +1030667 err = virtio_cread_feature(vdev, VIRTIO_BLK_F_TOPOLOGY,
668 struct virtio_blk_config, opt_io_size,
669 &opt_io_size);
Christoph Hellwig69740c82010-02-24 14:22:25 -0600670 if (!err && opt_io_size)
671 blk_queue_io_opt(q, blk_size * opt_io_size);
672
Rusty Russelle467cde2007-10-22 11:03:38 +1000673 add_disk(vblk->disk);
Ryan Harpera5eb9e42010-06-23 22:19:57 -0500674 err = device_create_file(disk_to_dev(vblk->disk), &dev_attr_serial);
675 if (err)
676 goto out_del_disk;
677
Paolo Bonzinicd5d5032012-07-03 15:19:37 +0200678 if (virtio_has_feature(vdev, VIRTIO_BLK_F_CONFIG_WCE))
679 err = device_create_file(disk_to_dev(vblk->disk),
680 &dev_attr_cache_type_rw);
681 else
682 err = device_create_file(disk_to_dev(vblk->disk),
683 &dev_attr_cache_type_ro);
684 if (err)
685 goto out_del_disk;
Rusty Russelle467cde2007-10-22 11:03:38 +1000686 return 0;
687
Ryan Harpera5eb9e42010-06-23 22:19:57 -0500688out_del_disk:
689 del_gendisk(vblk->disk);
690 blk_cleanup_queue(vblk->disk->queue);
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600691out_free_tags:
692 blk_mq_free_tag_set(&vblk->tag_set);
Rusty Russelle467cde2007-10-22 11:03:38 +1000693out_put_disk:
694 put_disk(vblk->disk);
Rusty Russelle467cde2007-10-22 11:03:38 +1000695out_free_vq:
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600696 vdev->config->del_vqs(vdev);
Rusty Russelle467cde2007-10-22 11:03:38 +1000697out_free_vblk:
698 kfree(vblk);
Michael S. Tsirkin5087a502011-10-30 21:29:59 +0200699out_free_index:
700 ida_simple_remove(&vd_index_ida, index);
Rusty Russelle467cde2007-10-22 11:03:38 +1000701out:
702 return err;
703}
704
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -0800705static void virtblk_remove(struct virtio_device *vdev)
Rusty Russelle467cde2007-10-22 11:03:38 +1000706{
707 struct virtio_blk *vblk = vdev->priv;
Michael S. Tsirkin5087a502011-10-30 21:29:59 +0200708 int index = vblk->index;
Alexander Graff4953fe2013-01-02 15:37:17 +1030709 int refc;
Rusty Russelle467cde2007-10-22 11:03:38 +1000710
Michael S. Tsirkin4678d6f2012-01-12 15:44:44 +1030711 /* Prevent config work handler from accessing the device. */
712 mutex_lock(&vblk->config_lock);
713 vblk->config_enable = false;
714 mutex_unlock(&vblk->config_lock);
Christoph Hellwig7a7c9242011-02-01 21:43:48 +0100715
Asias He02e2b122012-05-25 10:34:47 +0800716 del_gendisk(vblk->disk);
Asias He483001c2012-05-25 10:34:48 +0800717 blk_cleanup_queue(vblk->disk->queue);
Asias He02e2b122012-05-25 10:34:47 +0800718
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600719 blk_mq_free_tag_set(&vblk->tag_set);
720
Rusty Russell6e5aa7e2008-02-04 23:50:03 -0500721 /* Stop all the virtqueues. */
722 vdev->config->reset(vdev);
723
Michael S. Tsirkin4678d6f2012-01-12 15:44:44 +1030724 flush_work(&vblk->config_work);
725
Alexander Graff4953fe2013-01-02 15:37:17 +1030726 refc = atomic_read(&disk_to_dev(vblk->disk)->kobj.kref.refcount);
Rusty Russelle467cde2007-10-22 11:03:38 +1000727 put_disk(vblk->disk);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600728 vdev->config->del_vqs(vdev);
Rusty Russelle467cde2007-10-22 11:03:38 +1000729 kfree(vblk);
Alexander Graff4953fe2013-01-02 15:37:17 +1030730
731 /* Only free device id if we don't have any users */
732 if (refc == 1)
733 ida_simple_remove(&vd_index_ida, index);
Rusty Russelle467cde2007-10-22 11:03:38 +1000734}
735
Aaron Lu89107002013-09-17 09:25:23 +0930736#ifdef CONFIG_PM_SLEEP
Amit Shahf8fb5bc2011-12-22 16:58:30 +0530737static int virtblk_freeze(struct virtio_device *vdev)
738{
739 struct virtio_blk *vblk = vdev->priv;
740
741 /* Ensure we don't receive any more interrupts */
742 vdev->config->reset(vdev);
743
744 /* Prevent config work handler from accessing the device. */
745 mutex_lock(&vblk->config_lock);
746 vblk->config_enable = false;
747 mutex_unlock(&vblk->config_lock);
748
749 flush_work(&vblk->config_work);
750
Jens Axboe1cf7e9c2013-11-01 10:52:52 -0600751 blk_mq_stop_hw_queues(vblk->disk->queue);
Amit Shahf8fb5bc2011-12-22 16:58:30 +0530752
753 vdev->config->del_vqs(vdev);
754 return 0;
755}
756
757static int virtblk_restore(struct virtio_device *vdev)
758{
759 struct virtio_blk *vblk = vdev->priv;
760 int ret;
761
762 vblk->config_enable = true;
763 ret = init_vq(vdev->priv);
Jens Axboe1cf7e9c2013-11-01 10:52:52 -0600764 if (!ret)
Christoph Hellwig1b4a3252014-04-16 09:44:54 +0200765 blk_mq_start_stopped_hw_queues(vblk->disk->queue, true);
Jens Axboe1cf7e9c2013-11-01 10:52:52 -0600766
Amit Shahf8fb5bc2011-12-22 16:58:30 +0530767 return ret;
768}
769#endif
770
Márton Németh47483e22010-01-10 13:40:02 +0100771static const struct virtio_device_id id_table[] = {
Rusty Russelle467cde2007-10-22 11:03:38 +1000772 { VIRTIO_ID_BLOCK, VIRTIO_DEV_ANY_ID },
773 { 0 },
774};
775
Rusty Russellc45a6812008-05-02 21:50:50 -0500776static unsigned int features[] = {
Tejun Heo02c42b72010-09-03 11:56:18 +0200777 VIRTIO_BLK_F_SEG_MAX, VIRTIO_BLK_F_SIZE_MAX, VIRTIO_BLK_F_GEOMETRY,
778 VIRTIO_BLK_F_RO, VIRTIO_BLK_F_BLK_SIZE, VIRTIO_BLK_F_SCSI,
Paolo Bonzinicd5d5032012-07-03 15:19:37 +0200779 VIRTIO_BLK_F_WCE, VIRTIO_BLK_F_TOPOLOGY, VIRTIO_BLK_F_CONFIG_WCE
Rusty Russellc45a6812008-05-02 21:50:50 -0500780};
781
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -0800782static struct virtio_driver virtio_blk = {
Christoph Hellwig7a7c9242011-02-01 21:43:48 +0100783 .feature_table = features,
784 .feature_table_size = ARRAY_SIZE(features),
785 .driver.name = KBUILD_MODNAME,
786 .driver.owner = THIS_MODULE,
787 .id_table = id_table,
788 .probe = virtblk_probe,
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -0800789 .remove = virtblk_remove,
Christoph Hellwig7a7c9242011-02-01 21:43:48 +0100790 .config_changed = virtblk_config_changed,
Aaron Lu89107002013-09-17 09:25:23 +0930791#ifdef CONFIG_PM_SLEEP
Amit Shahf8fb5bc2011-12-22 16:58:30 +0530792 .freeze = virtblk_freeze,
793 .restore = virtblk_restore,
794#endif
Rusty Russelle467cde2007-10-22 11:03:38 +1000795};
796
797static int __init init(void)
798{
Christoph Hellwig7a7c9242011-02-01 21:43:48 +0100799 int error;
800
801 virtblk_wq = alloc_workqueue("virtio-blk", 0, 0);
802 if (!virtblk_wq)
803 return -ENOMEM;
804
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100805 major = register_blkdev(0, "virtblk");
Christoph Hellwig7a7c9242011-02-01 21:43:48 +0100806 if (major < 0) {
807 error = major;
808 goto out_destroy_workqueue;
809 }
810
811 error = register_virtio_driver(&virtio_blk);
812 if (error)
813 goto out_unregister_blkdev;
814 return 0;
815
816out_unregister_blkdev:
817 unregister_blkdev(major, "virtblk");
818out_destroy_workqueue:
819 destroy_workqueue(virtblk_wq);
820 return error;
Rusty Russelle467cde2007-10-22 11:03:38 +1000821}
822
823static void __exit fini(void)
824{
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100825 unregister_blkdev(major, "virtblk");
Rusty Russelle467cde2007-10-22 11:03:38 +1000826 unregister_virtio_driver(&virtio_blk);
Christoph Hellwig7a7c9242011-02-01 21:43:48 +0100827 destroy_workqueue(virtblk_wq);
Rusty Russelle467cde2007-10-22 11:03:38 +1000828}
829module_init(init);
830module_exit(fini);
831
832MODULE_DEVICE_TABLE(virtio, id_table);
833MODULE_DESCRIPTION("Virtio block driver");
834MODULE_LICENSE("GPL");