virtio_scsi.c 30.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * Virtio SCSI HBA driver
 *
 * Copyright IBM Corp. 2010
 * Copyright Red Hat, Inc. 2011
 *
 * Authors:
 *  Stefan Hajnoczi   <stefanha@linux.vnet.ibm.com>
 *  Paolo Bonzini   <pbonzini@redhat.com>
 *
 * This work is licensed under the terms of the GNU GPL, version 2 or later.
 * See the COPYING file in the top-level directory.
 *
 */

16 17
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

18 19 20 21 22 23 24
#include <linux/module.h>
#include <linux/slab.h>
#include <linux/mempool.h>
#include <linux/virtio.h>
#include <linux/virtio_ids.h>
#include <linux/virtio_config.h>
#include <linux/virtio_scsi.h>
25
#include <linux/cpu.h>
26
#include <linux/blkdev.h>
27 28 29
#include <scsi/scsi_host.h>
#include <scsi/scsi_device.h>
#include <scsi/scsi_cmnd.h>
30
#include <scsi/scsi_tcq.h>
31
#include <linux/seqlock.h>
32 33

#define VIRTIO_SCSI_MEMPOOL_SZ 64
34
#define VIRTIO_SCSI_EVENT_LEN 8
35
#define VIRTIO_SCSI_VQ_BASE 2
36 37 38 39 40 41 42

/* Command queue element */
struct virtio_scsi_cmd {
	struct scsi_cmnd *sc;
	struct completion *comp;
	union {
		struct virtio_scsi_cmd_req       cmd;
43
		struct virtio_scsi_cmd_req_pi    cmd_pi;
44 45 46 47 48 49 50 51 52 53 54
		struct virtio_scsi_ctrl_tmf_req  tmf;
		struct virtio_scsi_ctrl_an_req   an;
	} req;
	union {
		struct virtio_scsi_cmd_resp      cmd;
		struct virtio_scsi_ctrl_tmf_resp tmf;
		struct virtio_scsi_ctrl_an_resp  an;
		struct virtio_scsi_event         evt;
	} resp;
} ____cacheline_aligned_in_smp;

55 56 57 58 59 60
struct virtio_scsi_event_node {
	struct virtio_scsi *vscsi;
	struct virtio_scsi_event event;
	struct work_struct work;
};

61 62 63 64 65 66 67
struct virtio_scsi_vq {
	/* Protects vq */
	spinlock_t vq_lock;

	struct virtqueue *vq;
};

68 69 70 71 72 73 74 75 76 77 78 79
/*
 * Per-target queue state.
 *
 * This struct holds the data needed by the queue steering policy.  When a
 * target is sent multiple requests, we need to drive them to the same queue so
 * that FIFO processing order is kept.  However, if a target was idle, we can
 * choose a queue arbitrarily.  In this case the queue is chosen according to
 * the current VCPU, so the driver expects the number of request queues to be
 * equal to the number of VCPUs.  This makes it easy and fast to select the
 * queue, and also lets the driver optimize the IRQ affinity for the virtqueues
 * (each virtqueue's affinity is set to the CPU that "owns" the queue).
 *
80
 * tgt_seq is held to serialize reading and writing req_vq.
81
 *
82 83 84
 * Decrements of reqs are never concurrent with writes of req_vq: before the
 * decrement reqs will be != 0; after the decrement the virtqueue completion
 * routine will not use the req_vq so it can be changed by a new request.
85
 * Thus they can happen outside the tgt_seq, provided of course we make reqs
86 87
 * an atomic_t.
 */
88
struct virtio_scsi_target_state {
89
	seqcount_t tgt_seq;
90 91 92 93 94 95

	/* Count of outstanding requests. */
	atomic_t reqs;

	/* Currently active virtqueue for requests sent to this target. */
	struct virtio_scsi_vq *req_vq;
96 97
};

98 99 100
/* Driver instance state */
struct virtio_scsi {
	struct virtio_device *vdev;
101

102 103
	/* Get some buffers ready for event vq */
	struct virtio_scsi_event_node event_list[VIRTIO_SCSI_EVENT_LEN];
104 105 106 107 108 109

	u32 num_queues;

	/* If the affinity hint is set for virtqueues */
	bool affinity_hint_set;

110 111
	struct hlist_node node;
	struct hlist_node node_dead;
112

113 114 115
	/* Protected by event_vq lock */
	bool stop_events;

116 117 118
	struct virtio_scsi_vq ctrl_vq;
	struct virtio_scsi_vq event_vq;
	struct virtio_scsi_vq req_vqs[];
119 120
};

121
static enum cpuhp_state virtioscsi_online;
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
static struct kmem_cache *virtscsi_cmd_cache;
static mempool_t *virtscsi_cmd_pool;

static inline struct Scsi_Host *virtio_scsi_host(struct virtio_device *vdev)
{
	return vdev->priv;
}

static void virtscsi_compute_resid(struct scsi_cmnd *sc, u32 resid)
{
	if (!resid)
		return;

	if (!scsi_bidi_cmnd(sc)) {
		scsi_set_resid(sc, resid);
		return;
	}

	scsi_in(sc)->resid = min(resid, scsi_in(sc)->length);
	scsi_out(sc)->resid = resid - scsi_in(sc)->resid;
}

/**
 * virtscsi_complete_cmd - finish a scsi_cmd and invoke scsi_done
 *
 * Called with vq_lock held.
 */
149
static void virtscsi_complete_cmd(struct virtio_scsi *vscsi, void *buf)
150 151 152 153
{
	struct virtio_scsi_cmd *cmd = buf;
	struct scsi_cmnd *sc = cmd->sc;
	struct virtio_scsi_cmd_resp *resp = &cmd->resp.cmd;
154 155
	struct virtio_scsi_target_state *tgt =
				scsi_target(sc->device)->hostdata;
156 157 158 159 160 161

	dev_dbg(&sc->device->sdev_gendev,
		"cmd %p response %u status %#02x sense_len %u\n",
		sc, resp->response, resp->status, resp->sense_len);

	sc->result = resp->status;
M
Michael S. Tsirkin 已提交
162
	virtscsi_compute_resid(sc, virtio32_to_cpu(vscsi->vdev, resp->resid));
163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
	switch (resp->response) {
	case VIRTIO_SCSI_S_OK:
		set_host_byte(sc, DID_OK);
		break;
	case VIRTIO_SCSI_S_OVERRUN:
		set_host_byte(sc, DID_ERROR);
		break;
	case VIRTIO_SCSI_S_ABORTED:
		set_host_byte(sc, DID_ABORT);
		break;
	case VIRTIO_SCSI_S_BAD_TARGET:
		set_host_byte(sc, DID_BAD_TARGET);
		break;
	case VIRTIO_SCSI_S_RESET:
		set_host_byte(sc, DID_RESET);
		break;
	case VIRTIO_SCSI_S_BUSY:
		set_host_byte(sc, DID_BUS_BUSY);
		break;
	case VIRTIO_SCSI_S_TRANSPORT_FAILURE:
		set_host_byte(sc, DID_TRANSPORT_DISRUPTED);
		break;
	case VIRTIO_SCSI_S_TARGET_FAILURE:
		set_host_byte(sc, DID_TARGET_FAILURE);
		break;
	case VIRTIO_SCSI_S_NEXUS_FAILURE:
		set_host_byte(sc, DID_NEXUS_FAILURE);
		break;
	default:
		scmd_printk(KERN_WARNING, sc, "Unknown response %d",
			    resp->response);
		/* fall through */
	case VIRTIO_SCSI_S_FAILURE:
		set_host_byte(sc, DID_ERROR);
		break;
	}

M
Michael S. Tsirkin 已提交
200 201
	WARN_ON(virtio32_to_cpu(vscsi->vdev, resp->sense_len) >
		VIRTIO_SCSI_SENSE_SIZE);
202 203
	if (sc->sense_buffer) {
		memcpy(sc->sense_buffer, resp->sense,
M
Michael S. Tsirkin 已提交
204 205 206
		       min_t(u32,
			     virtio32_to_cpu(vscsi->vdev, resp->sense_len),
			     VIRTIO_SCSI_SENSE_SIZE));
207 208 209 210 211
		if (resp->sense_len)
			set_driver_byte(sc, DRIVER_SENSE);
	}

	sc->scsi_done(sc);
212 213

	atomic_dec(&tgt->reqs);
214 215
}

216 217
static void virtscsi_vq_done(struct virtio_scsi *vscsi,
			     struct virtio_scsi_vq *virtscsi_vq,
218
			     void (*fn)(struct virtio_scsi *vscsi, void *buf))
219 220 221
{
	void *buf;
	unsigned int len;
222 223
	unsigned long flags;
	struct virtqueue *vq = virtscsi_vq->vq;
224

225
	spin_lock_irqsave(&virtscsi_vq->vq_lock, flags);
226 227 228
	do {
		virtqueue_disable_cb(vq);
		while ((buf = virtqueue_get_buf(vq, &len)) != NULL)
229
			fn(vscsi, buf);
230 231 232

		if (unlikely(virtqueue_is_broken(vq)))
			break;
233
	} while (!virtqueue_enable_cb(vq));
234
	spin_unlock_irqrestore(&virtscsi_vq->vq_lock, flags);
235 236 237 238
}

static void virtscsi_req_done(struct virtqueue *vq)
{
239 240
	struct Scsi_Host *sh = virtio_scsi_host(vq->vdev);
	struct virtio_scsi *vscsi = shost_priv(sh);
241 242 243 244
	int index = vq->index - VIRTIO_SCSI_VQ_BASE;
	struct virtio_scsi_vq *req_vq = &vscsi->req_vqs[index];

	virtscsi_vq_done(vscsi, req_vq, virtscsi_complete_cmd);
245 246
};

247 248 249 250 251 252 253 254 255 256
static void virtscsi_poll_requests(struct virtio_scsi *vscsi)
{
	int i, num_vqs;

	num_vqs = vscsi->num_queues;
	for (i = 0; i < num_vqs; i++)
		virtscsi_vq_done(vscsi, &vscsi->req_vqs[i],
				 virtscsi_complete_cmd);
}

257
static void virtscsi_complete_free(struct virtio_scsi *vscsi, void *buf)
258 259 260 261
{
	struct virtio_scsi_cmd *cmd = buf;

	if (cmd->comp)
262
		complete(cmd->comp);
263 264 265 266
}

static void virtscsi_ctrl_done(struct virtqueue *vq)
{
267 268 269
	struct Scsi_Host *sh = virtio_scsi_host(vq->vdev);
	struct virtio_scsi *vscsi = shost_priv(sh);

270
	virtscsi_vq_done(vscsi, &vscsi->ctrl_vq, virtscsi_complete_free);
271 272
};

273 274
static void virtscsi_handle_event(struct work_struct *work);

275 276 277
static int virtscsi_kick_event(struct virtio_scsi *vscsi,
			       struct virtio_scsi_event_node *event_node)
{
278
	int err;
279 280 281
	struct scatterlist sg;
	unsigned long flags;

282
	INIT_WORK(&event_node->work, virtscsi_handle_event);
283
	sg_init_one(&sg, &event_node->event, sizeof(struct virtio_scsi_event));
284 285 286

	spin_lock_irqsave(&vscsi->event_vq.vq_lock, flags);

287 288
	err = virtqueue_add_inbuf(vscsi->event_vq.vq, &sg, 1, event_node,
				  GFP_ATOMIC);
289
	if (!err)
290 291 292 293
		virtqueue_kick(vscsi->event_vq.vq);

	spin_unlock_irqrestore(&vscsi->event_vq.vq_lock, flags);

294
	return err;
295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312
}

static int virtscsi_kick_event_all(struct virtio_scsi *vscsi)
{
	int i;

	for (i = 0; i < VIRTIO_SCSI_EVENT_LEN; i++) {
		vscsi->event_list[i].vscsi = vscsi;
		virtscsi_kick_event(vscsi, &vscsi->event_list[i]);
	}

	return 0;
}

static void virtscsi_cancel_event_work(struct virtio_scsi *vscsi)
{
	int i;

313 314 315 316 317
	/* Stop scheduling work before calling cancel_work_sync.  */
	spin_lock_irq(&vscsi->event_vq.vq_lock);
	vscsi->stop_events = true;
	spin_unlock_irq(&vscsi->event_vq.vq_lock);

318 319 320 321 322
	for (i = 0; i < VIRTIO_SCSI_EVENT_LEN; i++)
		cancel_work_sync(&vscsi->event_list[i].work);
}

static void virtscsi_handle_transport_reset(struct virtio_scsi *vscsi,
323
					    struct virtio_scsi_event *event)
324 325 326 327 328 329
{
	struct scsi_device *sdev;
	struct Scsi_Host *shost = virtio_scsi_host(vscsi->vdev);
	unsigned int target = event->lun[1];
	unsigned int lun = (event->lun[2] << 8) | event->lun[3];

M
Michael S. Tsirkin 已提交
330
	switch (virtio32_to_cpu(vscsi->vdev, event->reason)) {
331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348
	case VIRTIO_SCSI_EVT_RESET_RESCAN:
		scsi_add_device(shost, 0, target, lun);
		break;
	case VIRTIO_SCSI_EVT_RESET_REMOVED:
		sdev = scsi_device_lookup(shost, 0, target, lun);
		if (sdev) {
			scsi_remove_device(sdev);
			scsi_device_put(sdev);
		} else {
			pr_err("SCSI device %d 0 %d %d not found\n",
				shost->host_no, target, lun);
		}
		break;
	default:
		pr_info("Unsupport virtio scsi event reason %x\n", event->reason);
	}
}

349 350 351 352 353 354 355
static void virtscsi_handle_param_change(struct virtio_scsi *vscsi,
					 struct virtio_scsi_event *event)
{
	struct scsi_device *sdev;
	struct Scsi_Host *shost = virtio_scsi_host(vscsi->vdev);
	unsigned int target = event->lun[1];
	unsigned int lun = (event->lun[2] << 8) | event->lun[3];
M
Michael S. Tsirkin 已提交
356 357
	u8 asc = virtio32_to_cpu(vscsi->vdev, event->reason) & 255;
	u8 ascq = virtio32_to_cpu(vscsi->vdev, event->reason) >> 8;
358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373

	sdev = scsi_device_lookup(shost, 0, target, lun);
	if (!sdev) {
		pr_err("SCSI device %d 0 %d %d not found\n",
			shost->host_no, target, lun);
		return;
	}

	/* Handle "Parameters changed", "Mode parameters changed", and
	   "Capacity data has changed".  */
	if (asc == 0x2a && (ascq == 0x00 || ascq == 0x01 || ascq == 0x09))
		scsi_rescan_device(&sdev->sdev_gendev);

	scsi_device_put(sdev);
}

374 375 376 377 378 379 380
static void virtscsi_handle_event(struct work_struct *work)
{
	struct virtio_scsi_event_node *event_node =
		container_of(work, struct virtio_scsi_event_node, work);
	struct virtio_scsi *vscsi = event_node->vscsi;
	struct virtio_scsi_event *event = &event_node->event;

M
Michael S. Tsirkin 已提交
381 382 383 384
	if (event->event &
	    cpu_to_virtio32(vscsi->vdev, VIRTIO_SCSI_T_EVENTS_MISSED)) {
		event->event &= ~cpu_to_virtio32(vscsi->vdev,
						   VIRTIO_SCSI_T_EVENTS_MISSED);
385 386 387
		scsi_scan_host(virtio_scsi_host(vscsi->vdev));
	}

M
Michael S. Tsirkin 已提交
388
	switch (virtio32_to_cpu(vscsi->vdev, event->event)) {
389 390 391 392 393
	case VIRTIO_SCSI_T_NO_EVENT:
		break;
	case VIRTIO_SCSI_T_TRANSPORT_RESET:
		virtscsi_handle_transport_reset(vscsi, event);
		break;
394 395 396
	case VIRTIO_SCSI_T_PARAM_CHANGE:
		virtscsi_handle_param_change(vscsi, event);
		break;
397 398 399 400 401 402
	default:
		pr_err("Unsupport virtio scsi event %x\n", event->event);
	}
	virtscsi_kick_event(vscsi, event_node);
}

403
static void virtscsi_complete_event(struct virtio_scsi *vscsi, void *buf)
404 405 406
{
	struct virtio_scsi_event_node *event_node = buf;

407 408
	if (!vscsi->stop_events)
		queue_work(system_freezable_wq, &event_node->work);
409 410
}

411 412
static void virtscsi_event_done(struct virtqueue *vq)
{
413 414 415
	struct Scsi_Host *sh = virtio_scsi_host(vq->vdev);
	struct virtio_scsi *vscsi = shost_priv(sh);

416
	virtscsi_vq_done(vscsi, &vscsi->event_vq, virtscsi_complete_event);
417 418 419
};

/**
420 421
 * virtscsi_add_cmd - add a virtio_scsi_cmd to a virtqueue
 * @vq		: the struct virtqueue we're talking about
422 423 424 425
 * @cmd		: command structure
 * @req_size	: size of the request buffer
 * @resp_size	: size of the response buffer
 */
426 427
static int virtscsi_add_cmd(struct virtqueue *vq,
			    struct virtio_scsi_cmd *cmd,
428
			    size_t req_size, size_t resp_size)
429 430
{
	struct scsi_cmnd *sc = cmd->sc;
431
	struct scatterlist *sgs[6], req, resp;
432 433 434 435 436 437 438 439 440 441 442
	struct sg_table *out, *in;
	unsigned out_num = 0, in_num = 0;

	out = in = NULL;

	if (sc && sc->sc_data_direction != DMA_NONE) {
		if (sc->sc_data_direction != DMA_FROM_DEVICE)
			out = &scsi_out(sc)->table;
		if (sc->sc_data_direction != DMA_TO_DEVICE)
			in = &scsi_in(sc)->table;
	}
443 444

	/* Request header.  */
445 446
	sg_init_one(&req, &cmd->req, req_size);
	sgs[out_num++] = &req;
447 448

	/* Data-out buffer.  */
449 450 451 452
	if (out) {
		/* Place WRITE protection SGLs before Data OUT payload */
		if (scsi_prot_sg_count(sc))
			sgs[out_num++] = scsi_prot_sglist(sc);
453
		sgs[out_num++] = out->sgl;
454
	}
455 456

	/* Response header.  */
457 458
	sg_init_one(&resp, &cmd->resp, resp_size);
	sgs[out_num + in_num++] = &resp;
459 460

	/* Data-in buffer */
461 462 463 464
	if (in) {
		/* Place READ protection SGLs before Data IN payload */
		if (scsi_prot_sg_count(sc))
			sgs[out_num + in_num++] = scsi_prot_sglist(sc);
465
		sgs[out_num + in_num++] = in->sgl;
466
	}
467

468
	return virtqueue_add_sgs(vq, sgs, out_num, in_num, cmd, GFP_ATOMIC);
469 470
}

471
static int virtscsi_kick_cmd(struct virtio_scsi_vq *vq,
472
			     struct virtio_scsi_cmd *cmd,
473
			     size_t req_size, size_t resp_size)
474 475
{
	unsigned long flags;
476 477
	int err;
	bool needs_kick = false;
478

479
	spin_lock_irqsave(&vq->vq_lock, flags);
480
	err = virtscsi_add_cmd(vq->vq, cmd, req_size, resp_size);
481 482
	if (!err)
		needs_kick = virtqueue_kick_prepare(vq->vq);
483

484
	spin_unlock_irqrestore(&vq->vq_lock, flags);
485

486
	if (needs_kick)
487
		virtqueue_notify(vq->vq);
488
	return err;
489 490
}

M
Michael S. Tsirkin 已提交
491 492
static void virtio_scsi_init_hdr(struct virtio_device *vdev,
				 struct virtio_scsi_cmd_req *cmd,
493 494 495 496 497 498
				 struct scsi_cmnd *sc)
{
	cmd->lun[0] = 1;
	cmd->lun[1] = sc->device->id;
	cmd->lun[2] = (sc->device->lun >> 8) | 0x40;
	cmd->lun[3] = sc->device->lun & 0xff;
M
Michael S. Tsirkin 已提交
499
	cmd->tag = cpu_to_virtio64(vdev, (unsigned long)sc);
500 501 502 503 504
	cmd->task_attr = VIRTIO_SCSI_S_SIMPLE;
	cmd->prio = 0;
	cmd->crn = 0;
}

505
#ifdef CONFIG_BLK_DEV_INTEGRITY
M
Michael S. Tsirkin 已提交
506 507
static void virtio_scsi_init_hdr_pi(struct virtio_device *vdev,
				    struct virtio_scsi_cmd_req_pi *cmd_pi,
508 509 510 511 512
				    struct scsi_cmnd *sc)
{
	struct request *rq = sc->request;
	struct blk_integrity *bi;

M
Michael S. Tsirkin 已提交
513
	virtio_scsi_init_hdr(vdev, (struct virtio_scsi_cmd_req *)cmd_pi, sc);
514 515 516 517 518 519 520

	if (!rq || !scsi_prot_sg_count(sc))
		return;

	bi = blk_get_integrity(rq->rq_disk);

	if (sc->sc_data_direction == DMA_TO_DEVICE)
M
Michael S. Tsirkin 已提交
521 522 523
		cmd_pi->pi_bytesout = cpu_to_virtio32(vdev,
							blk_rq_sectors(rq) *
							bi->tuple_size);
524
	else if (sc->sc_data_direction == DMA_FROM_DEVICE)
M
Michael S. Tsirkin 已提交
525 526 527
		cmd_pi->pi_bytesin = cpu_to_virtio32(vdev,
						       blk_rq_sectors(rq) *
						       bi->tuple_size);
528
}
529
#endif
530

531 532 533
static int virtscsi_queuecommand(struct virtio_scsi *vscsi,
				 struct virtio_scsi_vq *req_vq,
				 struct scsi_cmnd *sc)
534
{
535
	struct Scsi_Host *shost = virtio_scsi_host(vscsi->vdev);
C
Christoph Hellwig 已提交
536
	struct virtio_scsi_cmd *cmd = scsi_cmd_priv(sc);
537
	int req_size;
C
Christoph Hellwig 已提交
538

539 540 541 542 543
	BUG_ON(scsi_sg_count(sc) > shost->sg_tablesize);

	/* TODO: check feature bit and fail if unsupported?  */
	BUG_ON(sc->sc_data_direction == DMA_BIDIRECTIONAL);

544 545 546 547 548 549 550 551
	dev_dbg(&sc->device->sdev_gendev,
		"cmd %p CDB: %#02x\n", sc, sc->cmnd[0]);

	memset(cmd, 0, sizeof(*cmd));
	cmd->sc = sc;

	BUG_ON(sc->cmd_len > VIRTIO_SCSI_CDB_SIZE);

552
#ifdef CONFIG_BLK_DEV_INTEGRITY
553
	if (virtio_has_feature(vscsi->vdev, VIRTIO_SCSI_F_T10_PI)) {
M
Michael S. Tsirkin 已提交
554
		virtio_scsi_init_hdr_pi(vscsi->vdev, &cmd->req.cmd_pi, sc);
555 556
		memcpy(cmd->req.cmd_pi.cdb, sc->cmnd, sc->cmd_len);
		req_size = sizeof(cmd->req.cmd_pi);
557 558 559
	} else
#endif
	{
M
Michael S. Tsirkin 已提交
560
		virtio_scsi_init_hdr(vscsi->vdev, &cmd->req.cmd, sc);
561 562 563 564
		memcpy(cmd->req.cmd.cdb, sc->cmnd, sc->cmd_len);
		req_size = sizeof(cmd->req.cmd);
	}

565
	if (virtscsi_kick_cmd(req_vq, cmd, req_size, sizeof(cmd->resp.cmd)) != 0)
C
Christoph Hellwig 已提交
566 567
		return SCSI_MLQUEUE_HOST_BUSY;
	return 0;
568 569
}

570 571 572 573 574 575 576 577 578 579 580
static int virtscsi_queuecommand_single(struct Scsi_Host *sh,
					struct scsi_cmnd *sc)
{
	struct virtio_scsi *vscsi = shost_priv(sh);
	struct virtio_scsi_target_state *tgt =
				scsi_target(sc->device)->hostdata;

	atomic_inc(&tgt->reqs);
	return virtscsi_queuecommand(vscsi, &vscsi->req_vqs[0], sc);
}

581 582 583 584 585 586 587 588 589
static struct virtio_scsi_vq *virtscsi_pick_vq_mq(struct virtio_scsi *vscsi,
						  struct scsi_cmnd *sc)
{
	u32 tag = blk_mq_unique_tag(sc->request);
	u16 hwq = blk_mq_unique_tag_to_hwq(tag);

	return &vscsi->req_vqs[hwq];
}

590 591 592 593 594 595 596
static struct virtio_scsi_vq *virtscsi_pick_vq(struct virtio_scsi *vscsi,
					       struct virtio_scsi_target_state *tgt)
{
	struct virtio_scsi_vq *vq;
	unsigned long flags;
	u32 queue_num;

597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613
	local_irq_save(flags);
	if (atomic_inc_return(&tgt->reqs) > 1) {
		unsigned long seq;

		do {
			seq = read_seqcount_begin(&tgt->tgt_seq);
			vq = tgt->req_vq;
		} while (read_seqcount_retry(&tgt->tgt_seq, seq));
	} else {
		/* no writes can be concurrent because of atomic_t */
		write_seqcount_begin(&tgt->tgt_seq);

		/* keep previous req_vq if a reader just arrived */
		if (unlikely(atomic_read(&tgt->reqs) > 1)) {
			vq = tgt->req_vq;
			goto unlock;
		}
614 615 616 617 618

		queue_num = smp_processor_id();
		while (unlikely(queue_num >= vscsi->num_queues))
			queue_num -= vscsi->num_queues;
		tgt->req_vq = vq = &vscsi->req_vqs[queue_num];
619 620
 unlock:
		write_seqcount_end(&tgt->tgt_seq);
621
	}
622
	local_irq_restore(flags);
623 624 625 626 627 628 629 630 631 632

	return vq;
}

static int virtscsi_queuecommand_multi(struct Scsi_Host *sh,
				       struct scsi_cmnd *sc)
{
	struct virtio_scsi *vscsi = shost_priv(sh);
	struct virtio_scsi_target_state *tgt =
				scsi_target(sc->device)->hostdata;
633 634 635 636 637 638
	struct virtio_scsi_vq *req_vq;

	if (shost_use_blk_mq(sh))
		req_vq = virtscsi_pick_vq_mq(vscsi, sc);
	else
		req_vq = virtscsi_pick_vq(vscsi, tgt);
639 640 641 642

	return virtscsi_queuecommand(vscsi, req_vq, sc);
}

643 644 645
static int virtscsi_tmf(struct virtio_scsi *vscsi, struct virtio_scsi_cmd *cmd)
{
	DECLARE_COMPLETION_ONSTACK(comp);
646
	int ret = FAILED;
647 648

	cmd->comp = &comp;
649
	if (virtscsi_kick_cmd(&vscsi->ctrl_vq, cmd,
650
			      sizeof cmd->req.tmf, sizeof cmd->resp.tmf) < 0)
651
		goto out;
652 653

	wait_for_completion(&comp);
654 655 656
	if (cmd->resp.tmf.response == VIRTIO_SCSI_S_OK ||
	    cmd->resp.tmf.response == VIRTIO_SCSI_S_FUNCTION_SUCCEEDED)
		ret = SUCCESS;
657

658 659 660 661 662 663 664 665 666 667 668 669
	/*
	 * The spec guarantees that all requests related to the TMF have
	 * been completed, but the callback might not have run yet if
	 * we're using independent interrupts (e.g. MSI).  Poll the
	 * virtqueues once.
	 *
	 * In the abort case, sc->scsi_done will do nothing, because
	 * the block layer must have detected a timeout and as a result
	 * REQ_ATOM_COMPLETE has been set.
	 */
	virtscsi_poll_requests(vscsi);

670 671 672
out:
	mempool_free(cmd, virtscsi_cmd_pool);
	return ret;
673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688
}

static int virtscsi_device_reset(struct scsi_cmnd *sc)
{
	struct virtio_scsi *vscsi = shost_priv(sc->device->host);
	struct virtio_scsi_cmd *cmd;

	sdev_printk(KERN_INFO, sc->device, "device reset\n");
	cmd = mempool_alloc(virtscsi_cmd_pool, GFP_NOIO);
	if (!cmd)
		return FAILED;

	memset(cmd, 0, sizeof(*cmd));
	cmd->sc = sc;
	cmd->req.tmf = (struct virtio_scsi_ctrl_tmf_req){
		.type = VIRTIO_SCSI_T_TMF,
M
Michael S. Tsirkin 已提交
689 690
		.subtype = cpu_to_virtio32(vscsi->vdev,
					     VIRTIO_SCSI_T_TMF_LOGICAL_UNIT_RESET),
691 692 693 694 695 696 697 698
		.lun[0] = 1,
		.lun[1] = sc->device->id,
		.lun[2] = (sc->device->lun >> 8) | 0x40,
		.lun[3] = sc->device->lun & 0xff,
	};
	return virtscsi_tmf(vscsi, cmd);
}

699 700 701 702 703
/**
 * virtscsi_change_queue_depth() - Change a virtscsi target's queue depth
 * @sdev:	Virtscsi target whose queue depth to change
 * @qdepth:	New queue depth
 */
704
static int virtscsi_change_queue_depth(struct scsi_device *sdev, int qdepth)
705 706 707 708
{
	struct Scsi_Host *shost = sdev->host;
	int max_depth = shost->cmd_per_lun;

709
	return scsi_change_queue_depth(sdev, min(max_depth, qdepth));
710 711
}

712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730
static int virtscsi_abort(struct scsi_cmnd *sc)
{
	struct virtio_scsi *vscsi = shost_priv(sc->device->host);
	struct virtio_scsi_cmd *cmd;

	scmd_printk(KERN_INFO, sc, "abort\n");
	cmd = mempool_alloc(virtscsi_cmd_pool, GFP_NOIO);
	if (!cmd)
		return FAILED;

	memset(cmd, 0, sizeof(*cmd));
	cmd->sc = sc;
	cmd->req.tmf = (struct virtio_scsi_ctrl_tmf_req){
		.type = VIRTIO_SCSI_T_TMF,
		.subtype = VIRTIO_SCSI_T_TMF_ABORT_TASK,
		.lun[0] = 1,
		.lun[1] = sc->device->id,
		.lun[2] = (sc->device->lun >> 8) | 0x40,
		.lun[3] = sc->device->lun & 0xff,
M
Michael S. Tsirkin 已提交
731
		.tag = cpu_to_virtio64(vscsi->vdev, (unsigned long)sc),
732 733 734 735
	};
	return virtscsi_tmf(vscsi, cmd);
}

736 737
static int virtscsi_target_alloc(struct scsi_target *starget)
{
738 739 740
	struct Scsi_Host *sh = dev_to_shost(starget->dev.parent);
	struct virtio_scsi *vscsi = shost_priv(sh);

741 742 743 744 745
	struct virtio_scsi_target_state *tgt =
				kmalloc(sizeof(*tgt), GFP_KERNEL);
	if (!tgt)
		return -ENOMEM;

746
	seqcount_init(&tgt->tgt_seq);
747
	atomic_set(&tgt->reqs, 0);
748
	tgt->req_vq = &vscsi->req_vqs[0];
749 750 751 752 753 754 755 756 757 758 759

	starget->hostdata = tgt;
	return 0;
}

static void virtscsi_target_destroy(struct scsi_target *starget)
{
	struct virtio_scsi_target_state *tgt = starget->hostdata;
	kfree(tgt);
}

760 761 762 763 764
static struct scsi_host_template virtscsi_host_template_single = {
	.module = THIS_MODULE,
	.name = "Virtio SCSI HBA",
	.proc_name = "virtio_scsi",
	.this_id = -1,
C
Christoph Hellwig 已提交
765
	.cmd_size = sizeof(struct virtio_scsi_cmd),
766
	.queuecommand = virtscsi_queuecommand_single,
767
	.change_queue_depth = virtscsi_change_queue_depth,
768 769 770 771 772 773 774 775
	.eh_abort_handler = virtscsi_abort,
	.eh_device_reset_handler = virtscsi_device_reset,

	.can_queue = 1024,
	.dma_boundary = UINT_MAX,
	.use_clustering = ENABLE_CLUSTERING,
	.target_alloc = virtscsi_target_alloc,
	.target_destroy = virtscsi_target_destroy,
776
	.track_queue_depth = 1,
777 778 779
};

static struct scsi_host_template virtscsi_host_template_multi = {
780 781 782 783
	.module = THIS_MODULE,
	.name = "Virtio SCSI HBA",
	.proc_name = "virtio_scsi",
	.this_id = -1,
C
Christoph Hellwig 已提交
784
	.cmd_size = sizeof(struct virtio_scsi_cmd),
785
	.queuecommand = virtscsi_queuecommand_multi,
786
	.change_queue_depth = virtscsi_change_queue_depth,
787 788 789 790 791 792
	.eh_abort_handler = virtscsi_abort,
	.eh_device_reset_handler = virtscsi_device_reset,

	.can_queue = 1024,
	.dma_boundary = UINT_MAX,
	.use_clustering = ENABLE_CLUSTERING,
793 794
	.target_alloc = virtscsi_target_alloc,
	.target_destroy = virtscsi_target_destroy,
795
	.track_queue_depth = 1,
796 797 798 799 800
};

#define virtscsi_config_get(vdev, fld) \
	({ \
		typeof(((struct virtio_scsi_config *)0)->fld) __val; \
801
		virtio_cread(vdev, struct virtio_scsi_config, fld, &__val); \
802 803 804 805
		__val; \
	})

#define virtscsi_config_set(vdev, fld, val) \
806
	do { \
807
		typeof(((struct virtio_scsi_config *)0)->fld) __val = (val); \
808 809
		virtio_cwrite(vdev, struct virtio_scsi_config, fld, &__val); \
	} while(0)
810

811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837
static void __virtscsi_set_affinity(struct virtio_scsi *vscsi, bool affinity)
{
	int i;
	int cpu;

	/* In multiqueue mode, when the number of cpu is equal
	 * to the number of request queues, we let the qeueues
	 * to be private to one cpu by setting the affinity hint
	 * to eliminate the contention.
	 */
	if ((vscsi->num_queues == 1 ||
	     vscsi->num_queues != num_online_cpus()) && affinity) {
		if (vscsi->affinity_hint_set)
			affinity = false;
		else
			return;
	}

	if (affinity) {
		i = 0;
		for_each_online_cpu(cpu) {
			virtqueue_set_affinity(vscsi->req_vqs[i].vq, cpu);
			i++;
		}

		vscsi->affinity_hint_set = true;
	} else {
838 839 840 841
		for (i = 0; i < vscsi->num_queues; i++) {
			if (!vscsi->req_vqs[i].vq)
				continue;

842
			virtqueue_set_affinity(vscsi->req_vqs[i].vq, -1);
843
		}
844 845 846 847 848 849 850 851 852 853 854 855

		vscsi->affinity_hint_set = false;
	}
}

static void virtscsi_set_affinity(struct virtio_scsi *vscsi, bool affinity)
{
	get_online_cpus();
	__virtscsi_set_affinity(vscsi, affinity);
	put_online_cpus();
}

856
static int virtscsi_cpu_online(unsigned int cpu, struct hlist_node *node)
857
{
858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882
	struct virtio_scsi *vscsi = hlist_entry_safe(node, struct virtio_scsi,
						     node);
	__virtscsi_set_affinity(vscsi, true);
	return 0;
}

static int virtscsi_cpu_notif_add(struct virtio_scsi *vi)
{
	int ret;

	ret = cpuhp_state_add_instance(virtioscsi_online, &vi->node);
	if (ret)
		return ret;

	ret = cpuhp_state_add_instance(CPUHP_VIRT_SCSI_DEAD, &vi->node_dead);
	if (ret)
		cpuhp_state_remove_instance(virtioscsi_online, &vi->node);
	return ret;
}

static void virtscsi_cpu_notif_remove(struct virtio_scsi *vi)
{
	cpuhp_state_remove_instance_nocalls(virtioscsi_online, &vi->node);
	cpuhp_state_remove_instance_nocalls(CPUHP_VIRT_SCSI_DEAD,
					    &vi->node_dead);
883 884
}

885 886 887 888 889 890 891
static void virtscsi_init_vq(struct virtio_scsi_vq *virtscsi_vq,
			     struct virtqueue *vq)
{
	spin_lock_init(&virtscsi_vq->vq_lock);
	virtscsi_vq->vq = vq;
}

892 893
static void virtscsi_remove_vqs(struct virtio_device *vdev)
{
894 895 896 897 898
	struct Scsi_Host *sh = virtio_scsi_host(vdev);
	struct virtio_scsi *vscsi = shost_priv(sh);

	virtscsi_set_affinity(vscsi, false);

899 900 901 902 903 904
	/* Stop all the virtqueues. */
	vdev->config->reset(vdev);

	vdev->config->del_vqs(vdev);
}

905
static int virtscsi_init(struct virtio_device *vdev,
906
			 struct virtio_scsi *vscsi)
907 908
{
	int err;
909 910 911 912 913 914 915 916 917 918 919 920 921 922 923
	u32 i;
	u32 num_vqs;
	vq_callback_t **callbacks;
	const char **names;
	struct virtqueue **vqs;

	num_vqs = vscsi->num_queues + VIRTIO_SCSI_VQ_BASE;
	vqs = kmalloc(num_vqs * sizeof(struct virtqueue *), GFP_KERNEL);
	callbacks = kmalloc(num_vqs * sizeof(vq_callback_t *), GFP_KERNEL);
	names = kmalloc(num_vqs * sizeof(char *), GFP_KERNEL);

	if (!callbacks || !vqs || !names) {
		err = -ENOMEM;
		goto out;
	}
924

925 926 927 928 929 930 931 932
	callbacks[0] = virtscsi_ctrl_done;
	callbacks[1] = virtscsi_event_done;
	names[0] = "control";
	names[1] = "event";
	for (i = VIRTIO_SCSI_VQ_BASE; i < num_vqs; i++) {
		callbacks[i] = virtscsi_req_done;
		names[i] = "request";
	}
933 934

	/* Discover virtqueues and write information to configuration.  */
935
	err = vdev->config->find_vqs(vdev, num_vqs, vqs, callbacks, names);
936
	if (err)
937
		goto out;
938

939 940
	virtscsi_init_vq(&vscsi->ctrl_vq, vqs[0]);
	virtscsi_init_vq(&vscsi->event_vq, vqs[1]);
941 942 943 944
	for (i = VIRTIO_SCSI_VQ_BASE; i < num_vqs; i++)
		virtscsi_init_vq(&vscsi->req_vqs[i - VIRTIO_SCSI_VQ_BASE],
				 vqs[i]);

945 946
	virtscsi_config_set(vdev, cdb_size, VIRTIO_SCSI_CDB_SIZE);
	virtscsi_config_set(vdev, sense_size, VIRTIO_SCSI_SENSE_SIZE);
947

948 949 950 951 952 953 954 955
	err = 0;

out:
	kfree(names);
	kfree(callbacks);
	kfree(vqs);
	if (err)
		virtscsi_remove_vqs(vdev);
956
	return err;
957 958
}

959
static int virtscsi_probe(struct virtio_device *vdev)
960 961 962
{
	struct Scsi_Host *shost;
	struct virtio_scsi *vscsi;
963
	int err;
964
	u32 sg_elems, num_targets;
965
	u32 cmd_per_lun;
966 967 968
	u32 num_queues;
	struct scsi_host_template *hostt;

969 970 971 972 973 974
	if (!vdev->config->get) {
		dev_err(&vdev->dev, "%s failure: config access disabled\n",
			__func__);
		return -EINVAL;
	}

975 976
	/* We need to know how many queues before we allocate. */
	num_queues = virtscsi_config_get(vdev, num_queues) ? : 1;
977

978
	num_targets = virtscsi_config_get(vdev, max_target) + 1;
979

980 981 982 983 984 985 986
	if (num_queues == 1)
		hostt = &virtscsi_host_template_single;
	else
		hostt = &virtscsi_host_template_multi;

	shost = scsi_host_alloc(hostt,
		sizeof(*vscsi) + sizeof(vscsi->req_vqs[0]) * num_queues);
987 988 989
	if (!shost)
		return -ENOMEM;

990
	sg_elems = virtscsi_config_get(vdev, seg_max) ?: 1;
991 992 993
	shost->sg_tablesize = sg_elems;
	vscsi = shost_priv(shost);
	vscsi->vdev = vdev;
994
	vscsi->num_queues = num_queues;
995 996
	vdev->priv = shost;

997
	err = virtscsi_init(vdev, vscsi);
998 999 1000
	if (err)
		goto virtscsi_init_failed;

1001 1002
	err = virtscsi_cpu_notif_add(vscsi);
	if (err)
1003 1004
		goto scsi_add_host_failed;

1005 1006 1007
	cmd_per_lun = virtscsi_config_get(vdev, cmd_per_lun) ?: 1;
	shost->cmd_per_lun = min_t(u32, cmd_per_lun, shost->can_queue);
	shost->max_sectors = virtscsi_config_get(vdev, max_sectors) ?: 0xFFFF;
1008 1009 1010 1011 1012

	/* LUNs > 256 are reported with format 1, so they go in the range
	 * 16640-32767.
	 */
	shost->max_lun = virtscsi_config_get(vdev, max_lun) + 1 + 0x4000;
1013
	shost->max_id = num_targets;
1014 1015
	shost->max_channel = 0;
	shost->max_cmd_len = VIRTIO_SCSI_CDB_SIZE;
1016
	shost->nr_hw_queues = num_queues;
1017

1018
#ifdef CONFIG_BLK_DEV_INTEGRITY
1019
	if (virtio_has_feature(vdev, VIRTIO_SCSI_F_T10_PI)) {
1020 1021
		int host_prot;

1022 1023 1024 1025 1026 1027 1028
		host_prot = SHOST_DIF_TYPE1_PROTECTION | SHOST_DIF_TYPE2_PROTECTION |
			    SHOST_DIF_TYPE3_PROTECTION | SHOST_DIX_TYPE1_PROTECTION |
			    SHOST_DIX_TYPE2_PROTECTION | SHOST_DIX_TYPE3_PROTECTION;

		scsi_host_set_prot(shost, host_prot);
		scsi_host_set_guard(shost, SHOST_DIX_GUARD_CRC);
	}
1029
#endif
1030

1031 1032 1033
	err = scsi_add_host(shost, &vdev->dev);
	if (err)
		goto scsi_add_host_failed;
1034 1035 1036 1037 1038 1039 1040

	virtio_device_ready(vdev);

	if (virtio_has_feature(vdev, VIRTIO_SCSI_F_HOTPLUG))
		virtscsi_kick_event_all(vscsi);

	scsi_scan_host(shost);
1041 1042 1043 1044 1045 1046 1047 1048 1049
	return 0;

scsi_add_host_failed:
	vdev->config->del_vqs(vdev);
virtscsi_init_failed:
	scsi_host_put(shost);
	return err;
}

1050
static void virtscsi_remove(struct virtio_device *vdev)
1051 1052
{
	struct Scsi_Host *shost = virtio_scsi_host(vdev);
1053 1054 1055 1056
	struct virtio_scsi *vscsi = shost_priv(shost);

	if (virtio_has_feature(vdev, VIRTIO_SCSI_F_HOTPLUG))
		virtscsi_cancel_event_work(vscsi);
1057 1058 1059

	scsi_remove_host(shost);

1060
	virtscsi_cpu_notif_remove(vscsi);
1061

1062 1063 1064 1065
	virtscsi_remove_vqs(vdev);
	scsi_host_put(shost);
}

1066
#ifdef CONFIG_PM_SLEEP
1067 1068
static int virtscsi_freeze(struct virtio_device *vdev)
{
1069 1070 1071
	struct Scsi_Host *sh = virtio_scsi_host(vdev);
	struct virtio_scsi *vscsi = shost_priv(sh);

1072
	virtscsi_cpu_notif_remove(vscsi);
1073 1074 1075 1076 1077 1078 1079 1080
	virtscsi_remove_vqs(vdev);
	return 0;
}

static int virtscsi_restore(struct virtio_device *vdev)
{
	struct Scsi_Host *sh = virtio_scsi_host(vdev);
	struct virtio_scsi *vscsi = shost_priv(sh);
1081 1082 1083 1084 1085 1086
	int err;

	err = virtscsi_init(vdev, vscsi);
	if (err)
		return err;

1087
	err = virtscsi_cpu_notif_add(vscsi);
1088
	if (err) {
1089
		vdev->config->del_vqs(vdev);
1090 1091
		return err;
	}
1092 1093
	virtio_device_ready(vdev);

1094 1095
	if (virtio_has_feature(vdev, VIRTIO_SCSI_F_HOTPLUG))
		virtscsi_kick_event_all(vscsi);
1096

1097
	return err;
1098 1099 1100 1101 1102 1103 1104 1105
}
#endif

static struct virtio_device_id id_table[] = {
	{ VIRTIO_ID_SCSI, VIRTIO_DEV_ANY_ID },
	{ 0 },
};

1106
static unsigned int features[] = {
1107 1108
	VIRTIO_SCSI_F_HOTPLUG,
	VIRTIO_SCSI_F_CHANGE,
1109
#ifdef CONFIG_BLK_DEV_INTEGRITY
1110
	VIRTIO_SCSI_F_T10_PI,
1111
#endif
1112 1113
};

1114
static struct virtio_driver virtio_scsi_driver = {
1115 1116
	.feature_table = features,
	.feature_table_size = ARRAY_SIZE(features),
1117 1118 1119 1120
	.driver.name = KBUILD_MODNAME,
	.driver.owner = THIS_MODULE,
	.id_table = id_table,
	.probe = virtscsi_probe,
1121
#ifdef CONFIG_PM_SLEEP
1122 1123 1124
	.freeze = virtscsi_freeze,
	.restore = virtscsi_restore,
#endif
1125
	.remove = virtscsi_remove,
1126 1127 1128 1129 1130 1131 1132 1133
};

static int __init init(void)
{
	int ret = -ENOMEM;

	virtscsi_cmd_cache = KMEM_CACHE(virtio_scsi_cmd, 0);
	if (!virtscsi_cmd_cache) {
1134
		pr_err("kmem_cache_create() for virtscsi_cmd_cache failed\n");
1135 1136 1137 1138 1139 1140 1141 1142
		goto error;
	}


	virtscsi_cmd_pool =
		mempool_create_slab_pool(VIRTIO_SCSI_MEMPOOL_SZ,
					 virtscsi_cmd_cache);
	if (!virtscsi_cmd_pool) {
1143
		pr_err("mempool_create() for virtscsi_cmd_pool failed\n");
1144 1145
		goto error;
	}
1146 1147 1148 1149 1150 1151 1152 1153 1154 1155
	ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN,
				      "scsi/virtio:online",
				      virtscsi_cpu_online, NULL);
	if (ret < 0)
		goto error;
	virtioscsi_online = ret;
	ret = cpuhp_setup_state_multi(CPUHP_VIRT_SCSI_DEAD, "scsi/virtio:dead",
				      NULL, virtscsi_cpu_online);
	if (ret)
		goto error;
1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170
	ret = register_virtio_driver(&virtio_scsi_driver);
	if (ret < 0)
		goto error;

	return 0;

error:
	if (virtscsi_cmd_pool) {
		mempool_destroy(virtscsi_cmd_pool);
		virtscsi_cmd_pool = NULL;
	}
	if (virtscsi_cmd_cache) {
		kmem_cache_destroy(virtscsi_cmd_cache);
		virtscsi_cmd_cache = NULL;
	}
1171 1172 1173
	if (virtioscsi_online)
		cpuhp_remove_multi_state(virtioscsi_online);
	cpuhp_remove_multi_state(CPUHP_VIRT_SCSI_DEAD);
1174 1175 1176 1177 1178 1179
	return ret;
}

static void __exit fini(void)
{
	unregister_virtio_driver(&virtio_scsi_driver);
1180 1181
	cpuhp_remove_multi_state(virtioscsi_online);
	cpuhp_remove_multi_state(CPUHP_VIRT_SCSI_DEAD);
1182 1183 1184 1185 1186 1187 1188 1189 1190
	mempool_destroy(virtscsi_cmd_pool);
	kmem_cache_destroy(virtscsi_cmd_cache);
}
module_init(init);
module_exit(fini);

MODULE_DEVICE_TABLE(virtio, id_table);
MODULE_DESCRIPTION("Virtio SCSI HBA driver");
MODULE_LICENSE("GPL");