blob: 3d5fe97569c70f34c98af7761a10ebcfc1c690b1 [file] [log] [blame]
Rusty Russelle467cde2007-10-22 11:03:38 +10001//#define DEBUG
2#include <linux/spinlock.h>
3#include <linux/blkdev.h>
4#include <linux/hdreg.h>
5#include <linux/virtio.h>
Fernando Luis Vazquez Cao3ca4f5c2009-07-31 15:25:56 +09006#include <linux/virtio_ids.h>
Rusty Russelle467cde2007-10-22 11:03:38 +10007#include <linux/virtio_blk.h>
Jens Axboe3d1266c2007-10-24 13:21:21 +02008#include <linux/scatterlist.h>
9
Christian Borntraeger4f3bf192008-01-31 15:53:53 +010010#define PART_BITS 4
Rusty Russelle467cde2007-10-22 11:03:38 +100011
Christian Borntraegerd50ed902008-02-01 09:05:00 +010012static int major, index;
Christian Borntraeger4f3bf192008-01-31 15:53:53 +010013
Rusty Russelle467cde2007-10-22 11:03:38 +100014struct virtio_blk
15{
16 spinlock_t lock;
17
18 struct virtio_device *vdev;
19 struct virtqueue *vq;
20
21 /* The disk structure for the kernel. */
22 struct gendisk *disk;
23
24 /* Request tracking. */
25 struct list_head reqs;
26
27 mempool_t *pool;
28
Rusty Russell0864b792008-12-30 09:26:05 -060029 /* What host tells us, plus 2 for header & tailer. */
30 unsigned int sg_elems;
31
Rusty Russelle467cde2007-10-22 11:03:38 +100032 /* Scatterlist: can be too big for stack. */
Rusty Russell0864b792008-12-30 09:26:05 -060033 struct scatterlist sg[/*sg_elems*/];
Rusty Russelle467cde2007-10-22 11:03:38 +100034};
35
36struct virtblk_req
37{
38 struct list_head list;
39 struct request *req;
40 struct virtio_blk_outhdr out_hdr;
Hannes Reinecke1cde26f2009-05-18 14:41:30 +020041 struct virtio_scsi_inhdr in_hdr;
Rusty Russellcb38fa22008-05-02 21:50:45 -050042 u8 status;
Rusty Russelle467cde2007-10-22 11:03:38 +100043};
44
Rusty Russell18445c42008-02-04 23:49:57 -050045static void blk_done(struct virtqueue *vq)
Rusty Russelle467cde2007-10-22 11:03:38 +100046{
47 struct virtio_blk *vblk = vq->vdev->priv;
48 struct virtblk_req *vbr;
49 unsigned int len;
50 unsigned long flags;
51
52 spin_lock_irqsave(&vblk->lock, flags);
53 while ((vbr = vblk->vq->vq_ops->get_buf(vblk->vq, &len)) != NULL) {
Kiyoshi Ueda83169822008-10-01 10:11:20 -040054 int error;
Hannes Reinecke1cde26f2009-05-18 14:41:30 +020055
Rusty Russellcb38fa22008-05-02 21:50:45 -050056 switch (vbr->status) {
Rusty Russelle467cde2007-10-22 11:03:38 +100057 case VIRTIO_BLK_S_OK:
Kiyoshi Ueda83169822008-10-01 10:11:20 -040058 error = 0;
Rusty Russelle467cde2007-10-22 11:03:38 +100059 break;
60 case VIRTIO_BLK_S_UNSUPP:
Kiyoshi Ueda83169822008-10-01 10:11:20 -040061 error = -ENOTTY;
Rusty Russelle467cde2007-10-22 11:03:38 +100062 break;
63 default:
Kiyoshi Ueda83169822008-10-01 10:11:20 -040064 error = -EIO;
Rusty Russelle467cde2007-10-22 11:03:38 +100065 break;
66 }
67
Hannes Reinecke1cde26f2009-05-18 14:41:30 +020068 if (blk_pc_request(vbr->req)) {
69 vbr->req->resid_len = vbr->in_hdr.residual;
70 vbr->req->sense_len = vbr->in_hdr.sense_len;
71 vbr->req->errors = vbr->in_hdr.errors;
72 }
73
Tejun Heo40cbbb72009-04-23 11:05:19 +090074 __blk_end_request_all(vbr->req, error);
Rusty Russelle467cde2007-10-22 11:03:38 +100075 list_del(&vbr->list);
76 mempool_free(vbr, vblk->pool);
77 }
78 /* In case queue is stopped waiting for more buffers. */
79 blk_start_queue(vblk->disk->queue);
80 spin_unlock_irqrestore(&vblk->lock, flags);
Rusty Russelle467cde2007-10-22 11:03:38 +100081}
82
83static bool do_req(struct request_queue *q, struct virtio_blk *vblk,
84 struct request *req)
85{
Hannes Reinecke1cde26f2009-05-18 14:41:30 +020086 unsigned long num, out = 0, in = 0;
Rusty Russelle467cde2007-10-22 11:03:38 +100087 struct virtblk_req *vbr;
88
89 vbr = mempool_alloc(vblk->pool, GFP_ATOMIC);
90 if (!vbr)
91 /* When another request finishes we'll try again. */
92 return false;
93
94 vbr->req = req;
Christoph Hellwigf1b0ef062009-09-17 19:57:42 +020095 switch (req->cmd_type) {
96 case REQ_TYPE_FS:
Rusty Russelle467cde2007-10-22 11:03:38 +100097 vbr->out_hdr.type = 0;
Tejun Heo83096eb2009-05-07 22:24:39 +090098 vbr->out_hdr.sector = blk_rq_pos(vbr->req);
Fernando Luis Vázquez Cao766ca442008-08-14 09:59:13 +020099 vbr->out_hdr.ioprio = req_get_ioprio(vbr->req);
Christoph Hellwigf1b0ef062009-09-17 19:57:42 +0200100 break;
101 case REQ_TYPE_BLOCK_PC:
Rusty Russelle467cde2007-10-22 11:03:38 +1000102 vbr->out_hdr.type = VIRTIO_BLK_T_SCSI_CMD;
103 vbr->out_hdr.sector = 0;
Fernando Luis Vázquez Cao766ca442008-08-14 09:59:13 +0200104 vbr->out_hdr.ioprio = req_get_ioprio(vbr->req);
Christoph Hellwigf1b0ef062009-09-17 19:57:42 +0200105 break;
106 case REQ_TYPE_LINUX_BLOCK:
107 if (req->cmd[0] == REQ_LB_OP_FLUSH) {
108 vbr->out_hdr.type = VIRTIO_BLK_T_FLUSH;
109 vbr->out_hdr.sector = 0;
110 vbr->out_hdr.ioprio = req_get_ioprio(vbr->req);
111 break;
112 }
113 /*FALLTHRU*/
114 default:
Rusty Russelle467cde2007-10-22 11:03:38 +1000115 /* We don't put anything else in the queue. */
116 BUG();
117 }
118
119 if (blk_barrier_rq(vbr->req))
120 vbr->out_hdr.type |= VIRTIO_BLK_T_BARRIER;
121
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200122 sg_set_buf(&vblk->sg[out++], &vbr->out_hdr, sizeof(vbr->out_hdr));
Rusty Russelle467cde2007-10-22 11:03:38 +1000123
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200124 /*
125 * If this is a packet command we need a couple of additional headers.
126 * Behind the normal outhdr we put a segment with the scsi command
127 * block, and before the normal inhdr we put the sense data and the
128 * inhdr with additional status information before the normal inhdr.
129 */
130 if (blk_pc_request(vbr->req))
131 sg_set_buf(&vblk->sg[out++], vbr->req->cmd, vbr->req->cmd_len);
132
133 num = blk_rq_map_sg(q, vbr->req, vblk->sg + out);
134
135 if (blk_pc_request(vbr->req)) {
136 sg_set_buf(&vblk->sg[num + out + in++], vbr->req->sense, 96);
137 sg_set_buf(&vblk->sg[num + out + in++], &vbr->in_hdr,
138 sizeof(vbr->in_hdr));
139 }
140
141 sg_set_buf(&vblk->sg[num + out + in++], &vbr->status,
142 sizeof(vbr->status));
143
144 if (num) {
145 if (rq_data_dir(vbr->req) == WRITE) {
146 vbr->out_hdr.type |= VIRTIO_BLK_T_OUT;
147 out += num;
148 } else {
149 vbr->out_hdr.type |= VIRTIO_BLK_T_IN;
150 in += num;
151 }
Rusty Russelle467cde2007-10-22 11:03:38 +1000152 }
153
Rusty Russell3c1b27d2009-09-23 22:26:31 -0600154 if (vblk->vq->vq_ops->add_buf(vblk->vq, vblk->sg, out, in, vbr) < 0) {
Rusty Russelle467cde2007-10-22 11:03:38 +1000155 mempool_free(vbr, vblk->pool);
156 return false;
157 }
158
159 list_add_tail(&vbr->list, &vblk->reqs);
160 return true;
161}
162
163static void do_virtblk_request(struct request_queue *q)
164{
Christoph Hellwig6c3b46f2009-05-18 14:38:28 +0200165 struct virtio_blk *vblk = q->queuedata;
Rusty Russelle467cde2007-10-22 11:03:38 +1000166 struct request *req;
167 unsigned int issued = 0;
168
Tejun Heo9934c8c2009-05-08 11:54:16 +0900169 while ((req = blk_peek_request(q)) != NULL) {
Rusty Russell0864b792008-12-30 09:26:05 -0600170 BUG_ON(req->nr_phys_segments + 2 > vblk->sg_elems);
Rusty Russelle467cde2007-10-22 11:03:38 +1000171
172 /* If this request fails, stop queue and wait for something to
173 finish to restart it. */
174 if (!do_req(q, vblk, req)) {
175 blk_stop_queue(q);
176 break;
177 }
Tejun Heo9934c8c2009-05-08 11:54:16 +0900178 blk_start_request(req);
Rusty Russelle467cde2007-10-22 11:03:38 +1000179 issued++;
180 }
181
182 if (issued)
183 vblk->vq->vq_ops->kick(vblk->vq);
184}
185
john cooper1d589bb2009-06-09 14:41:40 +0200186/* return ATA identify data
187 */
188static int virtblk_identify(struct gendisk *disk, void *argp)
189{
190 struct virtio_blk *vblk = disk->private_data;
191 void *opaque;
192 int err = -ENOMEM;
193
194 opaque = kmalloc(VIRTIO_BLK_ID_BYTES, GFP_KERNEL);
195 if (!opaque)
196 goto out;
197
198 err = virtio_config_buf(vblk->vdev, VIRTIO_BLK_F_IDENTIFY,
199 offsetof(struct virtio_blk_config, identify), opaque,
200 VIRTIO_BLK_ID_BYTES);
201
202 if (err)
203 goto out_kfree;
204
205 if (copy_to_user(argp, opaque, VIRTIO_BLK_ID_BYTES))
206 err = -EFAULT;
207
208out_kfree:
209 kfree(opaque);
210out:
211 return err;
212}
213
Christoph Hellwigf1b0ef062009-09-17 19:57:42 +0200214static void virtblk_prepare_flush(struct request_queue *q, struct request *req)
215{
216 req->cmd_type = REQ_TYPE_LINUX_BLOCK;
217 req->cmd[0] = REQ_LB_OP_FLUSH;
218}
219
Al Viro4e109852008-03-02 10:22:33 -0500220static int virtblk_ioctl(struct block_device *bdev, fmode_t mode,
Rusty Russelle467cde2007-10-22 11:03:38 +1000221 unsigned cmd, unsigned long data)
222{
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200223 struct gendisk *disk = bdev->bd_disk;
224 struct virtio_blk *vblk = disk->private_data;
john cooper1d589bb2009-06-09 14:41:40 +0200225 void __user *argp = (void __user *)data;
226
227 if (cmd == HDIO_GET_IDENTITY)
228 return virtblk_identify(disk, argp);
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200229
230 /*
231 * Only allow the generic SCSI ioctls if the host can support it.
232 */
233 if (!virtio_has_feature(vblk->vdev, VIRTIO_BLK_F_SCSI))
Christoph Hellwigd9ecdea2009-06-20 21:29:41 +0200234 return -ENOTTY;
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200235
john cooper1d589bb2009-06-09 14:41:40 +0200236 return scsi_cmd_ioctl(disk->queue, disk, mode, cmd, argp);
Rusty Russelle467cde2007-10-22 11:03:38 +1000237}
238
Christian Borntraeger135da0b2008-01-23 17:56:50 +0100239/* We provide getgeo only to please some old bootloader/partitioning tools */
240static int virtblk_getgeo(struct block_device *bd, struct hd_geometry *geo)
241{
Ryan Harper48e40432008-04-16 13:56:37 -0500242 struct virtio_blk *vblk = bd->bd_disk->private_data;
243 struct virtio_blk_geometry vgeo;
244 int err;
245
246 /* see if the host passed in geometry config */
247 err = virtio_config_val(vblk->vdev, VIRTIO_BLK_F_GEOMETRY,
248 offsetof(struct virtio_blk_config, geometry),
249 &vgeo);
250
251 if (!err) {
252 geo->heads = vgeo.heads;
253 geo->sectors = vgeo.sectors;
254 geo->cylinders = vgeo.cylinders;
255 } else {
256 /* some standard values, similar to sd */
257 geo->heads = 1 << 6;
258 geo->sectors = 1 << 5;
259 geo->cylinders = get_capacity(bd->bd_disk) >> 11;
260 }
Christian Borntraeger135da0b2008-01-23 17:56:50 +0100261 return 0;
262}
263
Rusty Russelle467cde2007-10-22 11:03:38 +1000264static struct block_device_operations virtblk_fops = {
Al Viro4e109852008-03-02 10:22:33 -0500265 .locked_ioctl = virtblk_ioctl,
Christian Borntraeger135da0b2008-01-23 17:56:50 +0100266 .owner = THIS_MODULE,
267 .getgeo = virtblk_getgeo,
Rusty Russelle467cde2007-10-22 11:03:38 +1000268};
269
Christian Borntraegerd50ed902008-02-01 09:05:00 +0100270static int index_to_minor(int index)
271{
272 return index << PART_BITS;
273}
274
Mike Frysinger98e94442009-05-18 03:39:09 -0400275static int __devinit virtblk_probe(struct virtio_device *vdev)
Rusty Russelle467cde2007-10-22 11:03:38 +1000276{
277 struct virtio_blk *vblk;
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100278 int err;
Rusty Russelle467cde2007-10-22 11:03:38 +1000279 u64 cap;
280 u32 v;
Rusty Russell0864b792008-12-30 09:26:05 -0600281 u32 blk_size, sg_elems;
Rusty Russelle467cde2007-10-22 11:03:38 +1000282
Christian Borntraegerd50ed902008-02-01 09:05:00 +0100283 if (index_to_minor(index) >= 1 << MINORBITS)
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100284 return -ENOSPC;
285
Rusty Russell0864b792008-12-30 09:26:05 -0600286 /* We need to know how many segments before we allocate. */
287 err = virtio_config_val(vdev, VIRTIO_BLK_F_SEG_MAX,
288 offsetof(struct virtio_blk_config, seg_max),
289 &sg_elems);
290 if (err)
291 sg_elems = 1;
292
293 /* We need an extra sg elements at head and tail. */
294 sg_elems += 2;
295 vdev->priv = vblk = kmalloc(sizeof(*vblk) +
296 sizeof(vblk->sg[0]) * sg_elems, GFP_KERNEL);
Rusty Russelle467cde2007-10-22 11:03:38 +1000297 if (!vblk) {
298 err = -ENOMEM;
299 goto out;
300 }
301
302 INIT_LIST_HEAD(&vblk->reqs);
303 spin_lock_init(&vblk->lock);
304 vblk->vdev = vdev;
Rusty Russell0864b792008-12-30 09:26:05 -0600305 vblk->sg_elems = sg_elems;
306 sg_init_table(vblk->sg, vblk->sg_elems);
Rusty Russelle467cde2007-10-22 11:03:38 +1000307
308 /* We expect one virtqueue, for output. */
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600309 vblk->vq = virtio_find_single_vq(vdev, blk_done, "requests");
Rusty Russelle467cde2007-10-22 11:03:38 +1000310 if (IS_ERR(vblk->vq)) {
311 err = PTR_ERR(vblk->vq);
312 goto out_free_vblk;
313 }
314
315 vblk->pool = mempool_create_kmalloc_pool(1,sizeof(struct virtblk_req));
316 if (!vblk->pool) {
317 err = -ENOMEM;
318 goto out_free_vq;
319 }
320
Rusty Russelle467cde2007-10-22 11:03:38 +1000321 /* FIXME: How many partitions? How long is a piece of string? */
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100322 vblk->disk = alloc_disk(1 << PART_BITS);
Rusty Russelle467cde2007-10-22 11:03:38 +1000323 if (!vblk->disk) {
324 err = -ENOMEM;
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100325 goto out_mempool;
Rusty Russelle467cde2007-10-22 11:03:38 +1000326 }
327
328 vblk->disk->queue = blk_init_queue(do_virtblk_request, &vblk->lock);
329 if (!vblk->disk->queue) {
330 err = -ENOMEM;
331 goto out_put_disk;
332 }
333
Christoph Hellwig6c3b46f2009-05-18 14:38:28 +0200334 vblk->disk->queue->queuedata = vblk;
Fernando Luis Vázquez Cao7d116b62008-10-27 18:45:15 +0900335 queue_flag_set_unlocked(QUEUE_FLAG_VIRT, vblk->disk->queue);
336
Christian Borntraegerd50ed902008-02-01 09:05:00 +0100337 if (index < 26) {
338 sprintf(vblk->disk->disk_name, "vd%c", 'a' + index % 26);
339 } else if (index < (26 + 1) * 26) {
340 sprintf(vblk->disk->disk_name, "vd%c%c",
341 'a' + index / 26 - 1, 'a' + index % 26);
342 } else {
343 const unsigned int m1 = (index / 26 - 1) / 26 - 1;
344 const unsigned int m2 = (index / 26 - 1) % 26;
345 const unsigned int m3 = index % 26;
346 sprintf(vblk->disk->disk_name, "vd%c%c%c",
347 'a' + m1, 'a' + m2, 'a' + m3);
348 }
349
Rusty Russelle467cde2007-10-22 11:03:38 +1000350 vblk->disk->major = major;
Christian Borntraegerd50ed902008-02-01 09:05:00 +0100351 vblk->disk->first_minor = index_to_minor(index);
Rusty Russelle467cde2007-10-22 11:03:38 +1000352 vblk->disk->private_data = vblk;
353 vblk->disk->fops = &virtblk_fops;
Jeremy Katzc4839342008-03-02 17:00:15 -0500354 vblk->disk->driverfs_dev = &vdev->dev;
Christian Borntraegerd50ed902008-02-01 09:05:00 +0100355 index++;
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100356
Rusty Russelle467cde2007-10-22 11:03:38 +1000357 /* If barriers are supported, tell block layer that queue is ordered */
Christoph Hellwigf1b0ef062009-09-17 19:57:42 +0200358 if (virtio_has_feature(vdev, VIRTIO_BLK_F_FLUSH))
359 blk_queue_ordered(vblk->disk->queue, QUEUE_ORDERED_DRAIN_FLUSH,
360 virtblk_prepare_flush);
361 else if (virtio_has_feature(vdev, VIRTIO_BLK_F_BARRIER))
Rusty Russelle467cde2007-10-22 11:03:38 +1000362 blk_queue_ordered(vblk->disk->queue, QUEUE_ORDERED_TAG, NULL);
363
Christian Borntraeger3ef53602008-05-16 11:17:03 +0200364 /* If disk is read-only in the host, the guest should obey */
365 if (virtio_has_feature(vdev, VIRTIO_BLK_F_RO))
366 set_disk_ro(vblk->disk, 1);
367
Rusty Russella586d4f2008-02-04 23:49:56 -0500368 /* Host must always specify the capacity. */
Rusty Russell72e61eb2008-05-02 21:50:49 -0500369 vdev->config->get(vdev, offsetof(struct virtio_blk_config, capacity),
370 &cap, sizeof(cap));
Rusty Russelle467cde2007-10-22 11:03:38 +1000371
372 /* If capacity is too big, truncate with warning. */
373 if ((sector_t)cap != cap) {
374 dev_warn(&vdev->dev, "Capacity %llu too large: truncating\n",
375 (unsigned long long)cap);
376 cap = (sector_t)-1;
377 }
378 set_capacity(vblk->disk, cap);
379
Rusty Russell0864b792008-12-30 09:26:05 -0600380 /* We can handle whatever the host told us to handle. */
381 blk_queue_max_phys_segments(vblk->disk->queue, vblk->sg_elems-2);
382 blk_queue_max_hw_segments(vblk->disk->queue, vblk->sg_elems-2);
383
Christoph Hellwig4eff3ca2009-07-17 21:47:45 -0600384 /* No need to bounce any requests */
385 blk_queue_bounce_limit(vblk->disk->queue, BLK_BOUNCE_ANY);
386
Rusty Russell4b7f7e22008-12-30 09:26:04 -0600387 /* No real sector limit. */
388 blk_queue_max_sectors(vblk->disk->queue, -1U);
389
Rusty Russella586d4f2008-02-04 23:49:56 -0500390 /* Host can optionally specify maximum segment size and number of
391 * segments. */
392 err = virtio_config_val(vdev, VIRTIO_BLK_F_SIZE_MAX,
393 offsetof(struct virtio_blk_config, size_max),
394 &v);
Rusty Russelle467cde2007-10-22 11:03:38 +1000395 if (!err)
396 blk_queue_max_segment_size(vblk->disk->queue, v);
Rusty Russell4b7f7e22008-12-30 09:26:04 -0600397 else
Randy Dunlapb194aee2008-11-26 13:15:50 -0800398 blk_queue_max_segment_size(vblk->disk->queue, -1U);
Rusty Russelle467cde2007-10-22 11:03:38 +1000399
Christian Borntraeger066f4d82008-05-29 11:08:26 +0200400 /* Host can optionally specify the block size of the device */
401 err = virtio_config_val(vdev, VIRTIO_BLK_F_BLK_SIZE,
402 offsetof(struct virtio_blk_config, blk_size),
403 &blk_size);
404 if (!err)
Martin K. Petersene1defc42009-05-22 17:17:49 -0400405 blk_queue_logical_block_size(vblk->disk->queue, blk_size);
Christian Borntraeger066f4d82008-05-29 11:08:26 +0200406
Rusty Russelle467cde2007-10-22 11:03:38 +1000407 add_disk(vblk->disk);
408 return 0;
409
410out_put_disk:
411 put_disk(vblk->disk);
Rusty Russelle467cde2007-10-22 11:03:38 +1000412out_mempool:
413 mempool_destroy(vblk->pool);
414out_free_vq:
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600415 vdev->config->del_vqs(vdev);
Rusty Russelle467cde2007-10-22 11:03:38 +1000416out_free_vblk:
417 kfree(vblk);
418out:
419 return err;
420}
421
Mike Frysinger98e94442009-05-18 03:39:09 -0400422static void __devexit virtblk_remove(struct virtio_device *vdev)
Rusty Russelle467cde2007-10-22 11:03:38 +1000423{
424 struct virtio_blk *vblk = vdev->priv;
Rusty Russelle467cde2007-10-22 11:03:38 +1000425
Rusty Russell6e5aa7e2008-02-04 23:50:03 -0500426 /* Nothing should be pending. */
Rusty Russelle467cde2007-10-22 11:03:38 +1000427 BUG_ON(!list_empty(&vblk->reqs));
Rusty Russell6e5aa7e2008-02-04 23:50:03 -0500428
429 /* Stop all the virtqueues. */
430 vdev->config->reset(vdev);
431
Chris Lalancetteac9d4632008-05-30 15:09:41 -0500432 del_gendisk(vblk->disk);
Rusty Russelle467cde2007-10-22 11:03:38 +1000433 blk_cleanup_queue(vblk->disk->queue);
434 put_disk(vblk->disk);
Rusty Russelle467cde2007-10-22 11:03:38 +1000435 mempool_destroy(vblk->pool);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600436 vdev->config->del_vqs(vdev);
Rusty Russelle467cde2007-10-22 11:03:38 +1000437 kfree(vblk);
438}
439
440static struct virtio_device_id id_table[] = {
441 { VIRTIO_ID_BLOCK, VIRTIO_DEV_ANY_ID },
442 { 0 },
443};
444
Rusty Russellc45a6812008-05-02 21:50:50 -0500445static unsigned int features[] = {
446 VIRTIO_BLK_F_BARRIER, VIRTIO_BLK_F_SEG_MAX, VIRTIO_BLK_F_SIZE_MAX,
Christian Borntraeger066f4d82008-05-29 11:08:26 +0200447 VIRTIO_BLK_F_GEOMETRY, VIRTIO_BLK_F_RO, VIRTIO_BLK_F_BLK_SIZE,
Christoph Hellwigf1b0ef062009-09-17 19:57:42 +0200448 VIRTIO_BLK_F_SCSI, VIRTIO_BLK_F_IDENTIFY, VIRTIO_BLK_F_FLUSH
Rusty Russellc45a6812008-05-02 21:50:50 -0500449};
450
Rakib Mullick4fbfff762009-07-17 20:13:22 +0600451/*
452 * virtio_blk causes spurious section mismatch warning by
453 * simultaneously referring to a __devinit and a __devexit function.
454 * Use __refdata to avoid this warning.
455 */
456static struct virtio_driver __refdata virtio_blk = {
Rusty Russellc45a6812008-05-02 21:50:50 -0500457 .feature_table = features,
458 .feature_table_size = ARRAY_SIZE(features),
Rusty Russelle467cde2007-10-22 11:03:38 +1000459 .driver.name = KBUILD_MODNAME,
460 .driver.owner = THIS_MODULE,
461 .id_table = id_table,
462 .probe = virtblk_probe,
463 .remove = __devexit_p(virtblk_remove),
464};
465
466static int __init init(void)
467{
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100468 major = register_blkdev(0, "virtblk");
469 if (major < 0)
470 return major;
Rusty Russelle467cde2007-10-22 11:03:38 +1000471 return register_virtio_driver(&virtio_blk);
472}
473
474static void __exit fini(void)
475{
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100476 unregister_blkdev(major, "virtblk");
Rusty Russelle467cde2007-10-22 11:03:38 +1000477 unregister_virtio_driver(&virtio_blk);
478}
479module_init(init);
480module_exit(fini);
481
482MODULE_DEVICE_TABLE(virtio, id_table);
483MODULE_DESCRIPTION("Virtio block driver");
484MODULE_LICENSE("GPL");