Thomas Gleixner | 7a33847 | 2019-06-04 10:11:15 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 2 | /* Copyright (C) 2009 Red Hat, Inc. |
| 3 | * Author: Michael S. Tsirkin <mst@redhat.com> |
| 4 | * |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 5 | * test virtio server in host kernel. |
| 6 | */ |
| 7 | |
| 8 | #include <linux/compat.h> |
| 9 | #include <linux/eventfd.h> |
| 10 | #include <linux/vhost.h> |
| 11 | #include <linux/miscdevice.h> |
| 12 | #include <linux/module.h> |
| 13 | #include <linux/mutex.h> |
| 14 | #include <linux/workqueue.h> |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 15 | #include <linux/file.h> |
| 16 | #include <linux/slab.h> |
| 17 | |
| 18 | #include "test.h" |
Asias He | 6ac1afb | 2013-05-06 16:38:21 +0800 | [diff] [blame] | 19 | #include "vhost.h" |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 20 | |
| 21 | /* Max number of bytes transferred before requeueing the job. |
| 22 | * Using this limit prevents one virtqueue from starving others. */ |
| 23 | #define VHOST_TEST_WEIGHT 0x80000 |
| 24 | |
Tiwei Bie | 264b563 | 2019-08-28 13:37:00 +0800 | [diff] [blame] | 25 | /* Max number of packets transferred before requeueing the job. |
| 26 | * Using this limit prevents one virtqueue from starving others with |
| 27 | * pkts. |
| 28 | */ |
| 29 | #define VHOST_TEST_PKT_WEIGHT 256 |
| 30 | |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 31 | enum { |
| 32 | VHOST_TEST_VQ = 0, |
| 33 | VHOST_TEST_VQ_MAX = 1, |
| 34 | }; |
| 35 | |
| 36 | struct vhost_test { |
| 37 | struct vhost_dev dev; |
| 38 | struct vhost_virtqueue vqs[VHOST_TEST_VQ_MAX]; |
| 39 | }; |
| 40 | |
| 41 | /* Expects to be always run from workqueue - which acts as |
| 42 | * read-size critical section for our kind of RCU. */ |
| 43 | static void handle_vq(struct vhost_test *n) |
| 44 | { |
Michael S. Tsirkin | 09a34c8 | 2013-07-07 17:12:36 +0300 | [diff] [blame] | 45 | struct vhost_virtqueue *vq = &n->vqs[VHOST_TEST_VQ]; |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 46 | unsigned out, in; |
| 47 | int head; |
| 48 | size_t len, total_len = 0; |
| 49 | void *private; |
| 50 | |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 51 | mutex_lock(&vq->mutex); |
Eugenio Pérez | 247643f | 2020-03-31 21:27:57 +0200 | [diff] [blame] | 52 | private = vhost_vq_get_backend(vq); |
Michael S. Tsirkin | 09a34c8 | 2013-07-07 17:12:36 +0300 | [diff] [blame] | 53 | if (!private) { |
| 54 | mutex_unlock(&vq->mutex); |
| 55 | return; |
| 56 | } |
| 57 | |
Michael S. Tsirkin | 8ea8cf8 | 2011-05-20 02:10:54 +0300 | [diff] [blame] | 58 | vhost_disable_notify(&n->dev, vq); |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 59 | |
| 60 | for (;;) { |
Michael S. Tsirkin | 47283be | 2014-06-05 15:20:27 +0300 | [diff] [blame] | 61 | head = vhost_get_vq_desc(vq, vq->iov, |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 62 | ARRAY_SIZE(vq->iov), |
| 63 | &out, &in, |
| 64 | NULL, NULL); |
| 65 | /* On error, stop handling until the next kick. */ |
| 66 | if (unlikely(head < 0)) |
| 67 | break; |
| 68 | /* Nothing new? Wait for eventfd to tell us they refilled. */ |
| 69 | if (head == vq->num) { |
Michael S. Tsirkin | 8ea8cf8 | 2011-05-20 02:10:54 +0300 | [diff] [blame] | 70 | if (unlikely(vhost_enable_notify(&n->dev, vq))) { |
| 71 | vhost_disable_notify(&n->dev, vq); |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 72 | continue; |
| 73 | } |
| 74 | break; |
| 75 | } |
| 76 | if (in) { |
| 77 | vq_err(vq, "Unexpected descriptor format for TX: " |
| 78 | "out %d, int %d\n", out, in); |
| 79 | break; |
| 80 | } |
| 81 | len = iov_length(vq->iov, out); |
| 82 | /* Sanity check */ |
| 83 | if (!len) { |
| 84 | vq_err(vq, "Unexpected 0 len for TX\n"); |
| 85 | break; |
| 86 | } |
| 87 | vhost_add_used_and_signal(&n->dev, vq, head, 0); |
| 88 | total_len += len; |
Tiwei Bie | 264b563 | 2019-08-28 13:37:00 +0800 | [diff] [blame] | 89 | if (unlikely(vhost_exceeds_weight(vq, 0, total_len))) |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 90 | break; |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 91 | } |
| 92 | |
| 93 | mutex_unlock(&vq->mutex); |
| 94 | } |
| 95 | |
| 96 | static void handle_vq_kick(struct vhost_work *work) |
| 97 | { |
| 98 | struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue, |
| 99 | poll.work); |
| 100 | struct vhost_test *n = container_of(vq->dev, struct vhost_test, dev); |
| 101 | |
| 102 | handle_vq(n); |
| 103 | } |
| 104 | |
| 105 | static int vhost_test_open(struct inode *inode, struct file *f) |
| 106 | { |
| 107 | struct vhost_test *n = kmalloc(sizeof *n, GFP_KERNEL); |
| 108 | struct vhost_dev *dev; |
Michael S. Tsirkin | 09a34c8 | 2013-07-07 17:12:36 +0300 | [diff] [blame] | 109 | struct vhost_virtqueue **vqs; |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 110 | |
| 111 | if (!n) |
| 112 | return -ENOMEM; |
Kees Cook | 6da2ec5 | 2018-06-12 13:55:00 -0700 | [diff] [blame] | 113 | vqs = kmalloc_array(VHOST_TEST_VQ_MAX, sizeof(*vqs), GFP_KERNEL); |
Michael S. Tsirkin | 09a34c8 | 2013-07-07 17:12:36 +0300 | [diff] [blame] | 114 | if (!vqs) { |
| 115 | kfree(n); |
| 116 | return -ENOMEM; |
| 117 | } |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 118 | |
| 119 | dev = &n->dev; |
Michael S. Tsirkin | 09a34c8 | 2013-07-07 17:12:36 +0300 | [diff] [blame] | 120 | vqs[VHOST_TEST_VQ] = &n->vqs[VHOST_TEST_VQ]; |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 121 | n->vqs[VHOST_TEST_VQ].handle_kick = handle_vq_kick; |
Tiwei Bie | 264b563 | 2019-08-28 13:37:00 +0800 | [diff] [blame] | 122 | vhost_dev_init(dev, vqs, VHOST_TEST_VQ_MAX, UIO_MAXIOV, |
Michael S. Tsirkin | 044e4b0 | 2020-06-08 08:42:09 -0400 | [diff] [blame] | 123 | VHOST_TEST_PKT_WEIGHT, VHOST_TEST_WEIGHT, true, NULL); |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 124 | |
| 125 | f->private_data = n; |
| 126 | |
| 127 | return 0; |
| 128 | } |
| 129 | |
| 130 | static void *vhost_test_stop_vq(struct vhost_test *n, |
| 131 | struct vhost_virtqueue *vq) |
| 132 | { |
| 133 | void *private; |
| 134 | |
| 135 | mutex_lock(&vq->mutex); |
Eugenio Pérez | 247643f | 2020-03-31 21:27:57 +0200 | [diff] [blame] | 136 | private = vhost_vq_get_backend(vq); |
| 137 | vhost_vq_set_backend(vq, NULL); |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 138 | mutex_unlock(&vq->mutex); |
| 139 | return private; |
| 140 | } |
| 141 | |
| 142 | static void vhost_test_stop(struct vhost_test *n, void **privatep) |
| 143 | { |
| 144 | *privatep = vhost_test_stop_vq(n, n->vqs + VHOST_TEST_VQ); |
| 145 | } |
| 146 | |
| 147 | static void vhost_test_flush_vq(struct vhost_test *n, int index) |
| 148 | { |
Michael S. Tsirkin | 09a34c8 | 2013-07-07 17:12:36 +0300 | [diff] [blame] | 149 | vhost_poll_flush(&n->vqs[index].poll); |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 150 | } |
| 151 | |
| 152 | static void vhost_test_flush(struct vhost_test *n) |
| 153 | { |
| 154 | vhost_test_flush_vq(n, VHOST_TEST_VQ); |
| 155 | } |
| 156 | |
| 157 | static int vhost_test_release(struct inode *inode, struct file *f) |
| 158 | { |
| 159 | struct vhost_test *n = f->private_data; |
| 160 | void *private; |
| 161 | |
| 162 | vhost_test_stop(n, &private); |
| 163 | vhost_test_flush(n); |
Michael S. Tsirkin | 245cdd9 | 2019-10-07 13:56:59 -0400 | [diff] [blame] | 164 | vhost_dev_stop(&n->dev); |
夷则(Caspar) | f6f93f7 | 2017-12-25 00:08:58 +0800 | [diff] [blame] | 165 | vhost_dev_cleanup(&n->dev); |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 166 | /* We do an extra flush before freeing memory, |
| 167 | * since jobs can re-queue themselves. */ |
| 168 | vhost_test_flush(n); |
Xianting Tian | 0800639 | 2021-12-28 11:09:24 +0800 | [diff] [blame] | 169 | kfree(n->dev.vqs); |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 170 | kfree(n); |
| 171 | return 0; |
| 172 | } |
| 173 | |
| 174 | static long vhost_test_run(struct vhost_test *n, int test) |
| 175 | { |
| 176 | void *priv, *oldpriv; |
| 177 | struct vhost_virtqueue *vq; |
| 178 | int r, index; |
| 179 | |
| 180 | if (test < 0 || test > 1) |
| 181 | return -EINVAL; |
| 182 | |
| 183 | mutex_lock(&n->dev.mutex); |
| 184 | r = vhost_dev_check_owner(&n->dev); |
| 185 | if (r) |
| 186 | goto err; |
| 187 | |
| 188 | for (index = 0; index < n->dev.nvqs; ++index) { |
| 189 | /* Verify that ring has been setup correctly. */ |
| 190 | if (!vhost_vq_access_ok(&n->vqs[index])) { |
| 191 | r = -EFAULT; |
| 192 | goto err; |
| 193 | } |
| 194 | } |
| 195 | |
| 196 | for (index = 0; index < n->dev.nvqs; ++index) { |
| 197 | vq = n->vqs + index; |
| 198 | mutex_lock(&vq->mutex); |
| 199 | priv = test ? n : NULL; |
| 200 | |
| 201 | /* start polling new socket */ |
Eugenio Pérez | 247643f | 2020-03-31 21:27:57 +0200 | [diff] [blame] | 202 | oldpriv = vhost_vq_get_backend(vq); |
| 203 | vhost_vq_set_backend(vq, priv); |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 204 | |
Greg Kurz | 80f7d03 | 2016-02-16 15:59:44 +0100 | [diff] [blame] | 205 | r = vhost_vq_init_access(&n->vqs[index]); |
Jason Wang | f59281d | 2011-06-21 18:04:27 +0800 | [diff] [blame] | 206 | |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 207 | mutex_unlock(&vq->mutex); |
| 208 | |
Jason Wang | f59281d | 2011-06-21 18:04:27 +0800 | [diff] [blame] | 209 | if (r) |
| 210 | goto err; |
| 211 | |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 212 | if (oldpriv) { |
| 213 | vhost_test_flush_vq(n, index); |
| 214 | } |
| 215 | } |
| 216 | |
| 217 | mutex_unlock(&n->dev.mutex); |
| 218 | return 0; |
| 219 | |
| 220 | err: |
| 221 | mutex_unlock(&n->dev.mutex); |
| 222 | return r; |
| 223 | } |
| 224 | |
| 225 | static long vhost_test_reset_owner(struct vhost_test *n) |
| 226 | { |
| 227 | void *priv = NULL; |
| 228 | long err; |
Michael S. Tsirkin | 3302363 | 2020-04-01 12:46:22 -0400 | [diff] [blame] | 229 | struct vhost_iotlb *umem; |
Michael S. Tsirkin | 150b9e5 | 2013-04-28 17:12:08 +0300 | [diff] [blame] | 230 | |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 231 | mutex_lock(&n->dev.mutex); |
| 232 | err = vhost_dev_check_owner(&n->dev); |
| 233 | if (err) |
| 234 | goto done; |
Michael S. Tsirkin | 446374d | 2016-08-15 04:28:12 +0300 | [diff] [blame] | 235 | umem = vhost_dev_reset_owner_prepare(); |
| 236 | if (!umem) { |
Michael S. Tsirkin | 150b9e5 | 2013-04-28 17:12:08 +0300 | [diff] [blame] | 237 | err = -ENOMEM; |
| 238 | goto done; |
| 239 | } |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 240 | vhost_test_stop(n, &priv); |
| 241 | vhost_test_flush(n); |
Michael S. Tsirkin | 245cdd9 | 2019-10-07 13:56:59 -0400 | [diff] [blame] | 242 | vhost_dev_stop(&n->dev); |
Michael S. Tsirkin | 446374d | 2016-08-15 04:28:12 +0300 | [diff] [blame] | 243 | vhost_dev_reset_owner(&n->dev, umem); |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 244 | done: |
| 245 | mutex_unlock(&n->dev.mutex); |
| 246 | return err; |
| 247 | } |
| 248 | |
| 249 | static int vhost_test_set_features(struct vhost_test *n, u64 features) |
| 250 | { |
Michael S. Tsirkin | ea16c51 | 2014-06-05 15:20:23 +0300 | [diff] [blame] | 251 | struct vhost_virtqueue *vq; |
| 252 | |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 253 | mutex_lock(&n->dev.mutex); |
| 254 | if ((features & (1 << VHOST_F_LOG_ALL)) && |
| 255 | !vhost_log_access_ok(&n->dev)) { |
| 256 | mutex_unlock(&n->dev.mutex); |
| 257 | return -EFAULT; |
| 258 | } |
Michael S. Tsirkin | ea16c51 | 2014-06-05 15:20:23 +0300 | [diff] [blame] | 259 | vq = &n->vqs[VHOST_TEST_VQ]; |
| 260 | mutex_lock(&vq->mutex); |
| 261 | vq->acked_features = features; |
| 262 | mutex_unlock(&vq->mutex); |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 263 | mutex_unlock(&n->dev.mutex); |
| 264 | return 0; |
| 265 | } |
| 266 | |
Eugenio Pérez | 264ee5a | 2020-04-18 12:22:13 +0200 | [diff] [blame] | 267 | static long vhost_test_set_backend(struct vhost_test *n, unsigned index, int fd) |
| 268 | { |
| 269 | static void *backend; |
| 270 | |
| 271 | const bool enable = fd != -1; |
| 272 | struct vhost_virtqueue *vq; |
| 273 | int r; |
| 274 | |
| 275 | mutex_lock(&n->dev.mutex); |
| 276 | r = vhost_dev_check_owner(&n->dev); |
| 277 | if (r) |
| 278 | goto err; |
| 279 | |
| 280 | if (index >= VHOST_TEST_VQ_MAX) { |
| 281 | r = -ENOBUFS; |
| 282 | goto err; |
| 283 | } |
| 284 | vq = &n->vqs[index]; |
| 285 | mutex_lock(&vq->mutex); |
| 286 | |
| 287 | /* Verify that ring has been setup correctly. */ |
| 288 | if (!vhost_vq_access_ok(vq)) { |
| 289 | r = -EFAULT; |
| 290 | goto err_vq; |
| 291 | } |
| 292 | if (!enable) { |
| 293 | vhost_poll_stop(&vq->poll); |
| 294 | backend = vhost_vq_get_backend(vq); |
| 295 | vhost_vq_set_backend(vq, NULL); |
| 296 | } else { |
| 297 | vhost_vq_set_backend(vq, backend); |
| 298 | r = vhost_vq_init_access(vq); |
| 299 | if (r == 0) |
| 300 | r = vhost_poll_start(&vq->poll, vq->kick); |
| 301 | } |
| 302 | |
| 303 | mutex_unlock(&vq->mutex); |
| 304 | |
| 305 | if (enable) { |
| 306 | vhost_test_flush_vq(n, index); |
| 307 | } |
| 308 | |
| 309 | mutex_unlock(&n->dev.mutex); |
| 310 | return 0; |
| 311 | |
| 312 | err_vq: |
| 313 | mutex_unlock(&vq->mutex); |
| 314 | err: |
| 315 | mutex_unlock(&n->dev.mutex); |
| 316 | return r; |
| 317 | } |
| 318 | |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 319 | static long vhost_test_ioctl(struct file *f, unsigned int ioctl, |
| 320 | unsigned long arg) |
| 321 | { |
Eugenio Pérez | 264ee5a | 2020-04-18 12:22:13 +0200 | [diff] [blame] | 322 | struct vhost_vring_file backend; |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 323 | struct vhost_test *n = f->private_data; |
| 324 | void __user *argp = (void __user *)arg; |
| 325 | u64 __user *featurep = argp; |
| 326 | int test; |
| 327 | u64 features; |
| 328 | int r; |
| 329 | switch (ioctl) { |
| 330 | case VHOST_TEST_RUN: |
| 331 | if (copy_from_user(&test, argp, sizeof test)) |
| 332 | return -EFAULT; |
| 333 | return vhost_test_run(n, test); |
Eugenio Pérez | 264ee5a | 2020-04-18 12:22:13 +0200 | [diff] [blame] | 334 | case VHOST_TEST_SET_BACKEND: |
| 335 | if (copy_from_user(&backend, argp, sizeof backend)) |
| 336 | return -EFAULT; |
| 337 | return vhost_test_set_backend(n, backend.index, backend.fd); |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 338 | case VHOST_GET_FEATURES: |
Michael S. Tsirkin | 09a34c8 | 2013-07-07 17:12:36 +0300 | [diff] [blame] | 339 | features = VHOST_FEATURES; |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 340 | if (copy_to_user(featurep, &features, sizeof features)) |
| 341 | return -EFAULT; |
| 342 | return 0; |
| 343 | case VHOST_SET_FEATURES: |
Michael S. Tsirkin | 4e9fa50 | 2015-09-09 22:24:56 +0300 | [diff] [blame] | 344 | printk(KERN_ERR "1\n"); |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 345 | if (copy_from_user(&features, featurep, sizeof features)) |
| 346 | return -EFAULT; |
Michael S. Tsirkin | 4e9fa50 | 2015-09-09 22:24:56 +0300 | [diff] [blame] | 347 | printk(KERN_ERR "2\n"); |
Michael S. Tsirkin | 09a34c8 | 2013-07-07 17:12:36 +0300 | [diff] [blame] | 348 | if (features & ~VHOST_FEATURES) |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 349 | return -EOPNOTSUPP; |
Michael S. Tsirkin | 4e9fa50 | 2015-09-09 22:24:56 +0300 | [diff] [blame] | 350 | printk(KERN_ERR "3\n"); |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 351 | return vhost_test_set_features(n, features); |
| 352 | case VHOST_RESET_OWNER: |
| 353 | return vhost_test_reset_owner(n); |
| 354 | default: |
| 355 | mutex_lock(&n->dev.mutex); |
Michael S. Tsirkin | 73640c9 | 2013-03-18 13:22:18 +1030 | [diff] [blame] | 356 | r = vhost_dev_ioctl(&n->dev, ioctl, argp); |
| 357 | if (r == -ENOIOCTLCMD) |
| 358 | r = vhost_vring_ioctl(&n->dev, ioctl, argp); |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 359 | vhost_test_flush(n); |
| 360 | mutex_unlock(&n->dev.mutex); |
| 361 | return r; |
| 362 | } |
| 363 | } |
| 364 | |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 365 | static const struct file_operations vhost_test_fops = { |
| 366 | .owner = THIS_MODULE, |
| 367 | .release = vhost_test_release, |
| 368 | .unlocked_ioctl = vhost_test_ioctl, |
Arnd Bergmann | 407e9ef | 2018-09-11 17:23:00 +0200 | [diff] [blame] | 369 | .compat_ioctl = compat_ptr_ioctl, |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 370 | .open = vhost_test_open, |
| 371 | .llseek = noop_llseek, |
| 372 | }; |
| 373 | |
| 374 | static struct miscdevice vhost_test_misc = { |
| 375 | MISC_DYNAMIC_MINOR, |
| 376 | "vhost-test", |
| 377 | &vhost_test_fops, |
| 378 | }; |
PrasannaKumar Muralidharan | ca75d60 | 2016-08-25 22:30:49 +0530 | [diff] [blame] | 379 | module_misc_device(vhost_test_misc); |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 380 | |
| 381 | MODULE_VERSION("0.0.1"); |
| 382 | MODULE_LICENSE("GPL v2"); |
| 383 | MODULE_AUTHOR("Michael S. Tsirkin"); |
| 384 | MODULE_DESCRIPTION("Host kernel side for virtio simulator"); |