blob: 7eff828b21170731fd5c02290136a12665b4e9ea [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>
6#include <linux/virtio_blk.h>
Jens Axboe3d1266c2007-10-24 13:21:21 +02007#include <linux/scatterlist.h>
8
Christian Borntraeger4f3bf192008-01-31 15:53:53 +01009#define PART_BITS 4
Rusty Russelle467cde2007-10-22 11:03:38 +100010
Christian Borntraegerd50ed902008-02-01 09:05:00 +010011static int major, index;
Christian Borntraeger4f3bf192008-01-31 15:53:53 +010012
Rusty Russelle467cde2007-10-22 11:03:38 +100013struct virtio_blk
14{
15 spinlock_t lock;
16
17 struct virtio_device *vdev;
18 struct virtqueue *vq;
19
20 /* The disk structure for the kernel. */
21 struct gendisk *disk;
22
23 /* Request tracking. */
24 struct list_head reqs;
25
26 mempool_t *pool;
27
Rusty Russell0864b792008-12-30 09:26:05 -060028 /* What host tells us, plus 2 for header & tailer. */
29 unsigned int sg_elems;
30
Rusty Russelle467cde2007-10-22 11:03:38 +100031 /* Scatterlist: can be too big for stack. */
Rusty Russell0864b792008-12-30 09:26:05 -060032 struct scatterlist sg[/*sg_elems*/];
Rusty Russelle467cde2007-10-22 11:03:38 +100033};
34
35struct virtblk_req
36{
37 struct list_head list;
38 struct request *req;
39 struct virtio_blk_outhdr out_hdr;
Hannes Reinecke1cde26f2009-05-18 14:41:30 +020040 struct virtio_scsi_inhdr in_hdr;
Rusty Russellcb38fa22008-05-02 21:50:45 -050041 u8 status;
Rusty Russelle467cde2007-10-22 11:03:38 +100042};
43
Rusty Russell18445c42008-02-04 23:49:57 -050044static void blk_done(struct virtqueue *vq)
Rusty Russelle467cde2007-10-22 11:03:38 +100045{
46 struct virtio_blk *vblk = vq->vdev->priv;
47 struct virtblk_req *vbr;
48 unsigned int len;
49 unsigned long flags;
50
51 spin_lock_irqsave(&vblk->lock, flags);
52 while ((vbr = vblk->vq->vq_ops->get_buf(vblk->vq, &len)) != NULL) {
Kiyoshi Ueda83169822008-10-01 10:11:20 -040053 int error;
Hannes Reinecke1cde26f2009-05-18 14:41:30 +020054
Rusty Russellcb38fa22008-05-02 21:50:45 -050055 switch (vbr->status) {
Rusty Russelle467cde2007-10-22 11:03:38 +100056 case VIRTIO_BLK_S_OK:
Kiyoshi Ueda83169822008-10-01 10:11:20 -040057 error = 0;
Rusty Russelle467cde2007-10-22 11:03:38 +100058 break;
59 case VIRTIO_BLK_S_UNSUPP:
Kiyoshi Ueda83169822008-10-01 10:11:20 -040060 error = -ENOTTY;
Rusty Russelle467cde2007-10-22 11:03:38 +100061 break;
62 default:
Kiyoshi Ueda83169822008-10-01 10:11:20 -040063 error = -EIO;
Rusty Russelle467cde2007-10-22 11:03:38 +100064 break;
65 }
66
Hannes Reinecke1cde26f2009-05-18 14:41:30 +020067 if (blk_pc_request(vbr->req)) {
68 vbr->req->resid_len = vbr->in_hdr.residual;
69 vbr->req->sense_len = vbr->in_hdr.sense_len;
70 vbr->req->errors = vbr->in_hdr.errors;
71 }
72
Tejun Heo40cbbb72009-04-23 11:05:19 +090073 __blk_end_request_all(vbr->req, error);
Rusty Russelle467cde2007-10-22 11:03:38 +100074 list_del(&vbr->list);
75 mempool_free(vbr, vblk->pool);
76 }
77 /* In case queue is stopped waiting for more buffers. */
78 blk_start_queue(vblk->disk->queue);
79 spin_unlock_irqrestore(&vblk->lock, flags);
Rusty Russelle467cde2007-10-22 11:03:38 +100080}
81
82static bool do_req(struct request_queue *q, struct virtio_blk *vblk,
83 struct request *req)
84{
Hannes Reinecke1cde26f2009-05-18 14:41:30 +020085 unsigned long num, out = 0, in = 0;
Rusty Russelle467cde2007-10-22 11:03:38 +100086 struct virtblk_req *vbr;
87
88 vbr = mempool_alloc(vblk->pool, GFP_ATOMIC);
89 if (!vbr)
90 /* When another request finishes we'll try again. */
91 return false;
92
93 vbr->req = req;
Christoph Hellwigf1b0ef062009-09-17 19:57:42 +020094 switch (req->cmd_type) {
95 case REQ_TYPE_FS:
Rusty Russelle467cde2007-10-22 11:03:38 +100096 vbr->out_hdr.type = 0;
Tejun Heo83096eb2009-05-07 22:24:39 +090097 vbr->out_hdr.sector = blk_rq_pos(vbr->req);
Fernando Luis Vázquez Cao766ca442008-08-14 09:59:13 +020098 vbr->out_hdr.ioprio = req_get_ioprio(vbr->req);
Christoph Hellwigf1b0ef062009-09-17 19:57:42 +020099 break;
100 case REQ_TYPE_BLOCK_PC:
Rusty Russelle467cde2007-10-22 11:03:38 +1000101 vbr->out_hdr.type = VIRTIO_BLK_T_SCSI_CMD;
102 vbr->out_hdr.sector = 0;
Fernando Luis Vázquez Cao766ca442008-08-14 09:59:13 +0200103 vbr->out_hdr.ioprio = req_get_ioprio(vbr->req);
Christoph Hellwigf1b0ef062009-09-17 19:57:42 +0200104 break;
105 case REQ_TYPE_LINUX_BLOCK:
106 if (req->cmd[0] == REQ_LB_OP_FLUSH) {
107 vbr->out_hdr.type = VIRTIO_BLK_T_FLUSH;
108 vbr->out_hdr.sector = 0;
109 vbr->out_hdr.ioprio = req_get_ioprio(vbr->req);
110 break;
111 }
112 /*FALLTHRU*/
113 default:
Rusty Russelle467cde2007-10-22 11:03:38 +1000114 /* We don't put anything else in the queue. */
115 BUG();
116 }
117
118 if (blk_barrier_rq(vbr->req))
119 vbr->out_hdr.type |= VIRTIO_BLK_T_BARRIER;
120
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200121 sg_set_buf(&vblk->sg[out++], &vbr->out_hdr, sizeof(vbr->out_hdr));
Rusty Russelle467cde2007-10-22 11:03:38 +1000122
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200123 /*
124 * If this is a packet command we need a couple of additional headers.
125 * Behind the normal outhdr we put a segment with the scsi command
126 * block, and before the normal inhdr we put the sense data and the
127 * inhdr with additional status information before the normal inhdr.
128 */
129 if (blk_pc_request(vbr->req))
130 sg_set_buf(&vblk->sg[out++], vbr->req->cmd, vbr->req->cmd_len);
131
132 num = blk_rq_map_sg(q, vbr->req, vblk->sg + out);
133
134 if (blk_pc_request(vbr->req)) {
135 sg_set_buf(&vblk->sg[num + out + in++], vbr->req->sense, 96);
136 sg_set_buf(&vblk->sg[num + out + in++], &vbr->in_hdr,
137 sizeof(vbr->in_hdr));
138 }
139
140 sg_set_buf(&vblk->sg[num + out + in++], &vbr->status,
141 sizeof(vbr->status));
142
143 if (num) {
144 if (rq_data_dir(vbr->req) == WRITE) {
145 vbr->out_hdr.type |= VIRTIO_BLK_T_OUT;
146 out += num;
147 } else {
148 vbr->out_hdr.type |= VIRTIO_BLK_T_IN;
149 in += num;
150 }
Rusty Russelle467cde2007-10-22 11:03:38 +1000151 }
152
Rusty Russell3c1b27d2009-09-23 22:26:31 -0600153 if (vblk->vq->vq_ops->add_buf(vblk->vq, vblk->sg, out, in, vbr) < 0) {
Rusty Russelle467cde2007-10-22 11:03:38 +1000154 mempool_free(vbr, vblk->pool);
155 return false;
156 }
157
158 list_add_tail(&vbr->list, &vblk->reqs);
159 return true;
160}
161
162static void do_virtblk_request(struct request_queue *q)
163{
Christoph Hellwig6c3b46f2009-05-18 14:38:28 +0200164 struct virtio_blk *vblk = q->queuedata;
Rusty Russelle467cde2007-10-22 11:03:38 +1000165 struct request *req;
166 unsigned int issued = 0;
167
Tejun Heo9934c8c2009-05-08 11:54:16 +0900168 while ((req = blk_peek_request(q)) != NULL) {
Rusty Russell0864b792008-12-30 09:26:05 -0600169 BUG_ON(req->nr_phys_segments + 2 > vblk->sg_elems);
Rusty Russelle467cde2007-10-22 11:03:38 +1000170
171 /* If this request fails, stop queue and wait for something to
172 finish to restart it. */
173 if (!do_req(q, vblk, req)) {
174 blk_stop_queue(q);
175 break;
176 }
Tejun Heo9934c8c2009-05-08 11:54:16 +0900177 blk_start_request(req);
Rusty Russelle467cde2007-10-22 11:03:38 +1000178 issued++;
179 }
180
181 if (issued)
182 vblk->vq->vq_ops->kick(vblk->vq);
183}
184
Christoph Hellwigf1b0ef062009-09-17 19:57:42 +0200185static void virtblk_prepare_flush(struct request_queue *q, struct request *req)
186{
187 req->cmd_type = REQ_TYPE_LINUX_BLOCK;
188 req->cmd[0] = REQ_LB_OP_FLUSH;
189}
190
Al Viro4e109852008-03-02 10:22:33 -0500191static int virtblk_ioctl(struct block_device *bdev, fmode_t mode,
Rusty Russelle467cde2007-10-22 11:03:38 +1000192 unsigned cmd, unsigned long data)
193{
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200194 struct gendisk *disk = bdev->bd_disk;
195 struct virtio_blk *vblk = disk->private_data;
196
197 /*
198 * Only allow the generic SCSI ioctls if the host can support it.
199 */
200 if (!virtio_has_feature(vblk->vdev, VIRTIO_BLK_F_SCSI))
Christoph Hellwigd9ecdea2009-06-20 21:29:41 +0200201 return -ENOTTY;
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200202
Rusty Russell3225bea2009-10-22 16:39:28 -0600203 return scsi_cmd_ioctl(disk->queue, disk, mode, cmd,
204 (void __user *)data);
Rusty Russelle467cde2007-10-22 11:03:38 +1000205}
206
Christian Borntraeger135da0b2008-01-23 17:56:50 +0100207/* We provide getgeo only to please some old bootloader/partitioning tools */
208static int virtblk_getgeo(struct block_device *bd, struct hd_geometry *geo)
209{
Ryan Harper48e40432008-04-16 13:56:37 -0500210 struct virtio_blk *vblk = bd->bd_disk->private_data;
211 struct virtio_blk_geometry vgeo;
212 int err;
213
214 /* see if the host passed in geometry config */
215 err = virtio_config_val(vblk->vdev, VIRTIO_BLK_F_GEOMETRY,
216 offsetof(struct virtio_blk_config, geometry),
217 &vgeo);
218
219 if (!err) {
220 geo->heads = vgeo.heads;
221 geo->sectors = vgeo.sectors;
222 geo->cylinders = vgeo.cylinders;
223 } else {
224 /* some standard values, similar to sd */
225 geo->heads = 1 << 6;
226 geo->sectors = 1 << 5;
227 geo->cylinders = get_capacity(bd->bd_disk) >> 11;
228 }
Christian Borntraeger135da0b2008-01-23 17:56:50 +0100229 return 0;
230}
231
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -0700232static const struct block_device_operations virtblk_fops = {
Al Viro4e109852008-03-02 10:22:33 -0500233 .locked_ioctl = virtblk_ioctl,
Christian Borntraeger135da0b2008-01-23 17:56:50 +0100234 .owner = THIS_MODULE,
235 .getgeo = virtblk_getgeo,
Rusty Russelle467cde2007-10-22 11:03:38 +1000236};
237
Christian Borntraegerd50ed902008-02-01 09:05:00 +0100238static int index_to_minor(int index)
239{
240 return index << PART_BITS;
241}
242
Mike Frysinger98e94442009-05-18 03:39:09 -0400243static int __devinit virtblk_probe(struct virtio_device *vdev)
Rusty Russelle467cde2007-10-22 11:03:38 +1000244{
245 struct virtio_blk *vblk;
Christoph Hellwig69740c82010-02-24 14:22:25 -0600246 struct request_queue *q;
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100247 int err;
Rusty Russelle467cde2007-10-22 11:03:38 +1000248 u64 cap;
Christoph Hellwig69740c82010-02-24 14:22:25 -0600249 u32 v, blk_size, sg_elems, opt_io_size;
250 u16 min_io_size;
251 u8 physical_block_exp, alignment_offset;
Rusty Russelle467cde2007-10-22 11:03:38 +1000252
Christian Borntraegerd50ed902008-02-01 09:05:00 +0100253 if (index_to_minor(index) >= 1 << MINORBITS)
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100254 return -ENOSPC;
255
Rusty Russell0864b792008-12-30 09:26:05 -0600256 /* We need to know how many segments before we allocate. */
257 err = virtio_config_val(vdev, VIRTIO_BLK_F_SEG_MAX,
258 offsetof(struct virtio_blk_config, seg_max),
259 &sg_elems);
260 if (err)
261 sg_elems = 1;
262
263 /* We need an extra sg elements at head and tail. */
264 sg_elems += 2;
265 vdev->priv = vblk = kmalloc(sizeof(*vblk) +
266 sizeof(vblk->sg[0]) * sg_elems, GFP_KERNEL);
Rusty Russelle467cde2007-10-22 11:03:38 +1000267 if (!vblk) {
268 err = -ENOMEM;
269 goto out;
270 }
271
272 INIT_LIST_HEAD(&vblk->reqs);
273 spin_lock_init(&vblk->lock);
274 vblk->vdev = vdev;
Rusty Russell0864b792008-12-30 09:26:05 -0600275 vblk->sg_elems = sg_elems;
276 sg_init_table(vblk->sg, vblk->sg_elems);
Rusty Russelle467cde2007-10-22 11:03:38 +1000277
278 /* We expect one virtqueue, for output. */
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600279 vblk->vq = virtio_find_single_vq(vdev, blk_done, "requests");
Rusty Russelle467cde2007-10-22 11:03:38 +1000280 if (IS_ERR(vblk->vq)) {
281 err = PTR_ERR(vblk->vq);
282 goto out_free_vblk;
283 }
284
285 vblk->pool = mempool_create_kmalloc_pool(1,sizeof(struct virtblk_req));
286 if (!vblk->pool) {
287 err = -ENOMEM;
288 goto out_free_vq;
289 }
290
Rusty Russelle467cde2007-10-22 11:03:38 +1000291 /* FIXME: How many partitions? How long is a piece of string? */
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100292 vblk->disk = alloc_disk(1 << PART_BITS);
Rusty Russelle467cde2007-10-22 11:03:38 +1000293 if (!vblk->disk) {
294 err = -ENOMEM;
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100295 goto out_mempool;
Rusty Russelle467cde2007-10-22 11:03:38 +1000296 }
297
Christoph Hellwig69740c82010-02-24 14:22:25 -0600298 q = vblk->disk->queue = blk_init_queue(do_virtblk_request, &vblk->lock);
299 if (!q) {
Rusty Russelle467cde2007-10-22 11:03:38 +1000300 err = -ENOMEM;
301 goto out_put_disk;
302 }
303
Christoph Hellwig69740c82010-02-24 14:22:25 -0600304 q->queuedata = vblk;
Fernando Luis Vázquez Cao7d116b62008-10-27 18:45:15 +0900305
Christian Borntraegerd50ed902008-02-01 09:05:00 +0100306 if (index < 26) {
307 sprintf(vblk->disk->disk_name, "vd%c", 'a' + index % 26);
308 } else if (index < (26 + 1) * 26) {
309 sprintf(vblk->disk->disk_name, "vd%c%c",
310 'a' + index / 26 - 1, 'a' + index % 26);
311 } else {
312 const unsigned int m1 = (index / 26 - 1) / 26 - 1;
313 const unsigned int m2 = (index / 26 - 1) % 26;
314 const unsigned int m3 = index % 26;
315 sprintf(vblk->disk->disk_name, "vd%c%c%c",
316 'a' + m1, 'a' + m2, 'a' + m3);
317 }
318
Rusty Russelle467cde2007-10-22 11:03:38 +1000319 vblk->disk->major = major;
Christian Borntraegerd50ed902008-02-01 09:05:00 +0100320 vblk->disk->first_minor = index_to_minor(index);
Rusty Russelle467cde2007-10-22 11:03:38 +1000321 vblk->disk->private_data = vblk;
322 vblk->disk->fops = &virtblk_fops;
Jeremy Katzc4839342008-03-02 17:00:15 -0500323 vblk->disk->driverfs_dev = &vdev->dev;
Christian Borntraegerd50ed902008-02-01 09:05:00 +0100324 index++;
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100325
Rusty Russelle467cde2007-10-22 11:03:38 +1000326 /* If barriers are supported, tell block layer that queue is ordered */
Christoph Hellwigf1b0ef062009-09-17 19:57:42 +0200327 if (virtio_has_feature(vdev, VIRTIO_BLK_F_FLUSH))
Christoph Hellwig69740c82010-02-24 14:22:25 -0600328 blk_queue_ordered(q, QUEUE_ORDERED_DRAIN_FLUSH,
Christoph Hellwigf1b0ef062009-09-17 19:57:42 +0200329 virtblk_prepare_flush);
330 else if (virtio_has_feature(vdev, VIRTIO_BLK_F_BARRIER))
Christoph Hellwig69740c82010-02-24 14:22:25 -0600331 blk_queue_ordered(q, QUEUE_ORDERED_TAG, NULL);
Rusty Russelle467cde2007-10-22 11:03:38 +1000332
Christian Borntraeger3ef53602008-05-16 11:17:03 +0200333 /* If disk is read-only in the host, the guest should obey */
334 if (virtio_has_feature(vdev, VIRTIO_BLK_F_RO))
335 set_disk_ro(vblk->disk, 1);
336
Rusty Russella586d4f2008-02-04 23:49:56 -0500337 /* Host must always specify the capacity. */
Rusty Russell72e61eb2008-05-02 21:50:49 -0500338 vdev->config->get(vdev, offsetof(struct virtio_blk_config, capacity),
339 &cap, sizeof(cap));
Rusty Russelle467cde2007-10-22 11:03:38 +1000340
341 /* If capacity is too big, truncate with warning. */
342 if ((sector_t)cap != cap) {
343 dev_warn(&vdev->dev, "Capacity %llu too large: truncating\n",
344 (unsigned long long)cap);
345 cap = (sector_t)-1;
346 }
347 set_capacity(vblk->disk, cap);
348
Rusty Russell0864b792008-12-30 09:26:05 -0600349 /* We can handle whatever the host told us to handle. */
Christoph Hellwig69740c82010-02-24 14:22:25 -0600350 blk_queue_max_phys_segments(q, vblk->sg_elems-2);
351 blk_queue_max_hw_segments(q, vblk->sg_elems-2);
Rusty Russell0864b792008-12-30 09:26:05 -0600352
Christoph Hellwig4eff3ca2009-07-17 21:47:45 -0600353 /* No need to bounce any requests */
Christoph Hellwig69740c82010-02-24 14:22:25 -0600354 blk_queue_bounce_limit(q, BLK_BOUNCE_ANY);
Christoph Hellwig4eff3ca2009-07-17 21:47:45 -0600355
Rusty Russell4b7f7e22008-12-30 09:26:04 -0600356 /* No real sector limit. */
Christoph Hellwig69740c82010-02-24 14:22:25 -0600357 blk_queue_max_sectors(q, -1U);
Rusty Russell4b7f7e22008-12-30 09:26:04 -0600358
Rusty Russella586d4f2008-02-04 23:49:56 -0500359 /* Host can optionally specify maximum segment size and number of
360 * segments. */
361 err = virtio_config_val(vdev, VIRTIO_BLK_F_SIZE_MAX,
362 offsetof(struct virtio_blk_config, size_max),
363 &v);
Rusty Russelle467cde2007-10-22 11:03:38 +1000364 if (!err)
Christoph Hellwig69740c82010-02-24 14:22:25 -0600365 blk_queue_max_segment_size(q, v);
Rusty Russell4b7f7e22008-12-30 09:26:04 -0600366 else
Christoph Hellwig69740c82010-02-24 14:22:25 -0600367 blk_queue_max_segment_size(q, -1U);
Rusty Russelle467cde2007-10-22 11:03:38 +1000368
Christian Borntraeger066f4d82008-05-29 11:08:26 +0200369 /* Host can optionally specify the block size of the device */
370 err = virtio_config_val(vdev, VIRTIO_BLK_F_BLK_SIZE,
371 offsetof(struct virtio_blk_config, blk_size),
372 &blk_size);
373 if (!err)
Christoph Hellwig69740c82010-02-24 14:22:25 -0600374 blk_queue_logical_block_size(q, blk_size);
375 else
376 blk_size = queue_logical_block_size(q);
377
378 /* Use topology information if available */
379 err = virtio_config_val(vdev, VIRTIO_BLK_F_TOPOLOGY,
380 offsetof(struct virtio_blk_config, physical_block_exp),
381 &physical_block_exp);
382 if (!err && physical_block_exp)
383 blk_queue_physical_block_size(q,
384 blk_size * (1 << physical_block_exp));
385
386 err = virtio_config_val(vdev, VIRTIO_BLK_F_TOPOLOGY,
387 offsetof(struct virtio_blk_config, alignment_offset),
388 &alignment_offset);
389 if (!err && alignment_offset)
390 blk_queue_alignment_offset(q, blk_size * alignment_offset);
391
392 err = virtio_config_val(vdev, VIRTIO_BLK_F_TOPOLOGY,
393 offsetof(struct virtio_blk_config, min_io_size),
394 &min_io_size);
395 if (!err && min_io_size)
396 blk_queue_io_min(q, blk_size * min_io_size);
397
398 err = virtio_config_val(vdev, VIRTIO_BLK_F_TOPOLOGY,
399 offsetof(struct virtio_blk_config, opt_io_size),
400 &opt_io_size);
401 if (!err && opt_io_size)
402 blk_queue_io_opt(q, blk_size * opt_io_size);
403
Christian Borntraeger066f4d82008-05-29 11:08:26 +0200404
Rusty Russelle467cde2007-10-22 11:03:38 +1000405 add_disk(vblk->disk);
406 return 0;
407
408out_put_disk:
409 put_disk(vblk->disk);
Rusty Russelle467cde2007-10-22 11:03:38 +1000410out_mempool:
411 mempool_destroy(vblk->pool);
412out_free_vq:
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600413 vdev->config->del_vqs(vdev);
Rusty Russelle467cde2007-10-22 11:03:38 +1000414out_free_vblk:
415 kfree(vblk);
416out:
417 return err;
418}
419
Mike Frysinger98e94442009-05-18 03:39:09 -0400420static void __devexit virtblk_remove(struct virtio_device *vdev)
Rusty Russelle467cde2007-10-22 11:03:38 +1000421{
422 struct virtio_blk *vblk = vdev->priv;
Rusty Russelle467cde2007-10-22 11:03:38 +1000423
Rusty Russell6e5aa7e2008-02-04 23:50:03 -0500424 /* Nothing should be pending. */
Rusty Russelle467cde2007-10-22 11:03:38 +1000425 BUG_ON(!list_empty(&vblk->reqs));
Rusty Russell6e5aa7e2008-02-04 23:50:03 -0500426
427 /* Stop all the virtqueues. */
428 vdev->config->reset(vdev);
429
Chris Lalancetteac9d4632008-05-30 15:09:41 -0500430 del_gendisk(vblk->disk);
Rusty Russelle467cde2007-10-22 11:03:38 +1000431 blk_cleanup_queue(vblk->disk->queue);
432 put_disk(vblk->disk);
Rusty Russelle467cde2007-10-22 11:03:38 +1000433 mempool_destroy(vblk->pool);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600434 vdev->config->del_vqs(vdev);
Rusty Russelle467cde2007-10-22 11:03:38 +1000435 kfree(vblk);
436}
437
438static struct virtio_device_id id_table[] = {
439 { VIRTIO_ID_BLOCK, VIRTIO_DEV_ANY_ID },
440 { 0 },
441};
442
Rusty Russellc45a6812008-05-02 21:50:50 -0500443static unsigned int features[] = {
444 VIRTIO_BLK_F_BARRIER, VIRTIO_BLK_F_SEG_MAX, VIRTIO_BLK_F_SIZE_MAX,
Christian Borntraeger066f4d82008-05-29 11:08:26 +0200445 VIRTIO_BLK_F_GEOMETRY, VIRTIO_BLK_F_RO, VIRTIO_BLK_F_BLK_SIZE,
Christoph Hellwig69740c82010-02-24 14:22:25 -0600446 VIRTIO_BLK_F_SCSI, VIRTIO_BLK_F_FLUSH, VIRTIO_BLK_F_TOPOLOGY
Rusty Russellc45a6812008-05-02 21:50:50 -0500447};
448
Rakib Mullick4fbfff762009-07-17 20:13:22 +0600449/*
450 * virtio_blk causes spurious section mismatch warning by
451 * simultaneously referring to a __devinit and a __devexit function.
452 * Use __refdata to avoid this warning.
453 */
454static struct virtio_driver __refdata virtio_blk = {
Rusty Russellc45a6812008-05-02 21:50:50 -0500455 .feature_table = features,
456 .feature_table_size = ARRAY_SIZE(features),
Rusty Russelle467cde2007-10-22 11:03:38 +1000457 .driver.name = KBUILD_MODNAME,
458 .driver.owner = THIS_MODULE,
459 .id_table = id_table,
460 .probe = virtblk_probe,
461 .remove = __devexit_p(virtblk_remove),
462};
463
464static int __init init(void)
465{
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100466 major = register_blkdev(0, "virtblk");
467 if (major < 0)
468 return major;
Rusty Russelle467cde2007-10-22 11:03:38 +1000469 return register_virtio_driver(&virtio_blk);
470}
471
472static void __exit fini(void)
473{
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100474 unregister_blkdev(major, "virtblk");
Rusty Russelle467cde2007-10-22 11:03:38 +1000475 unregister_virtio_driver(&virtio_blk);
476}
477module_init(init);
478module_exit(fini);
479
480MODULE_DEVICE_TABLE(virtio, id_table);
481MODULE_DESCRIPTION("Virtio block driver");
482MODULE_LICENSE("GPL");