Merge branch 'for-3.10' of git://linux-nfs.org/~bfields/linux
[deliverable/linux.git] / drivers / vhost / net.c
CommitLineData
3a4d5c94
MT
1/* Copyright (C) 2009 Red Hat, Inc.
2 * Author: Michael S. Tsirkin <mst@redhat.com>
3 *
4 * This work is licensed under the terms of the GNU GPL, version 2.
5 *
6 * virtio-net server in host kernel.
7 */
8
9#include <linux/compat.h>
10#include <linux/eventfd.h>
11#include <linux/vhost.h>
12#include <linux/virtio_net.h>
3a4d5c94
MT
13#include <linux/miscdevice.h>
14#include <linux/module.h>
bab632d6 15#include <linux/moduleparam.h>
3a4d5c94
MT
16#include <linux/mutex.h>
17#include <linux/workqueue.h>
18#include <linux/rcupdate.h>
19#include <linux/file.h>
5a0e3ad6 20#include <linux/slab.h>
3a4d5c94
MT
21
22#include <linux/net.h>
23#include <linux/if_packet.h>
24#include <linux/if_arp.h>
25#include <linux/if_tun.h>
501c774c 26#include <linux/if_macvlan.h>
c53cff5e 27#include <linux/if_vlan.h>
3a4d5c94
MT
28
29#include <net/sock.h>
30
31#include "vhost.h"
32
f9611c43 33static int experimental_zcopytx = 1;
bab632d6 34module_param(experimental_zcopytx, int, 0444);
f9611c43
MT
35MODULE_PARM_DESC(experimental_zcopytx, "Enable Zero Copy TX;"
36 " 1 -Enable; 0 - Disable");
bab632d6 37
3a4d5c94
MT
38/* Max number of bytes transferred before requeueing the job.
39 * Using this limit prevents one virtqueue from starving others. */
40#define VHOST_NET_WEIGHT 0x80000
41
bab632d6
MT
42/* MAX number of TX used buffers for outstanding zerocopy */
43#define VHOST_MAX_PEND 128
44#define VHOST_GOODCOPY_LEN 256
45
eaae8132
MT
46/*
47 * For transmit, used buffer len is unused; we override it to track buffer
48 * status internally; used for zerocopy tx only.
49 */
50/* Lower device DMA failed */
51#define VHOST_DMA_FAILED_LEN 3
52/* Lower device DMA done */
53#define VHOST_DMA_DONE_LEN 2
54/* Lower device DMA in progress */
55#define VHOST_DMA_IN_PROGRESS 1
56/* Buffer unused */
57#define VHOST_DMA_CLEAR_LEN 0
58
59#define VHOST_DMA_IS_DONE(len) ((len) >= VHOST_DMA_DONE_LEN)
60
8570a6e7
AH
61enum {
62 VHOST_NET_FEATURES = VHOST_FEATURES |
63 (1ULL << VHOST_NET_F_VIRTIO_NET_HDR) |
64 (1ULL << VIRTIO_NET_F_MRG_RXBUF),
65};
66
3a4d5c94
MT
67enum {
68 VHOST_NET_VQ_RX = 0,
69 VHOST_NET_VQ_TX = 1,
70 VHOST_NET_VQ_MAX = 2,
71};
72
fe729a57 73struct vhost_net_ubuf_ref {
2839400f
AH
74 struct kref kref;
75 wait_queue_head_t wait;
76 struct vhost_virtqueue *vq;
77};
78
3ab2e420
AH
79struct vhost_net_virtqueue {
80 struct vhost_virtqueue vq;
81f95a55
MT
81 /* hdr is used to store the virtio header.
82 * Since each iovec has >= 1 byte length, we never need more than
83 * header length entries to store the header. */
84 struct iovec hdr[sizeof(struct virtio_net_hdr_mrg_rxbuf)];
85 size_t vhost_hlen;
86 size_t sock_hlen;
2839400f
AH
87 /* vhost zerocopy support fields below: */
88 /* last used idx for outstanding DMA zerocopy buffers */
89 int upend_idx;
90 /* first used idx for DMA done zerocopy buffers */
91 int done_idx;
92 /* an array of userspace buffers info */
93 struct ubuf_info *ubuf_info;
94 /* Reference counting for outstanding ubufs.
95 * Protected by vq mutex. Writers must also take device mutex. */
fe729a57 96 struct vhost_net_ubuf_ref *ubufs;
3ab2e420
AH
97};
98
3a4d5c94
MT
99struct vhost_net {
100 struct vhost_dev dev;
3ab2e420 101 struct vhost_net_virtqueue vqs[VHOST_NET_VQ_MAX];
3a4d5c94 102 struct vhost_poll poll[VHOST_NET_VQ_MAX];
eaae8132
MT
103 /* Number of TX recently submitted.
104 * Protected by tx vq lock. */
105 unsigned tx_packets;
106 /* Number of times zerocopy TX recently failed.
107 * Protected by tx vq lock. */
108 unsigned tx_zcopy_err;
1280c27f
MT
109 /* Flush in progress. Protected by tx vq lock. */
110 bool tx_flush;
3a4d5c94
MT
111};
112
fe729a57 113static unsigned vhost_net_zcopy_mask __read_mostly;
2839400f 114
fe729a57 115static void vhost_net_enable_zcopy(int vq)
2839400f 116{
fe729a57 117 vhost_net_zcopy_mask |= 0x1 << vq;
2839400f
AH
118}
119
fe729a57 120static void vhost_net_zerocopy_done_signal(struct kref *kref)
2839400f 121{
fe729a57
AH
122 struct vhost_net_ubuf_ref *ubufs;
123
124 ubufs = container_of(kref, struct vhost_net_ubuf_ref, kref);
2839400f
AH
125 wake_up(&ubufs->wait);
126}
127
fe729a57
AH
128static struct vhost_net_ubuf_ref *
129vhost_net_ubuf_alloc(struct vhost_virtqueue *vq, bool zcopy)
2839400f 130{
fe729a57 131 struct vhost_net_ubuf_ref *ubufs;
2839400f
AH
132 /* No zero copy backend? Nothing to count. */
133 if (!zcopy)
134 return NULL;
135 ubufs = kmalloc(sizeof(*ubufs), GFP_KERNEL);
136 if (!ubufs)
137 return ERR_PTR(-ENOMEM);
138 kref_init(&ubufs->kref);
139 init_waitqueue_head(&ubufs->wait);
140 ubufs->vq = vq;
141 return ubufs;
142}
143
fe729a57 144static void vhost_net_ubuf_put(struct vhost_net_ubuf_ref *ubufs)
2839400f 145{
fe729a57 146 kref_put(&ubufs->kref, vhost_net_zerocopy_done_signal);
2839400f
AH
147}
148
fe729a57 149static void vhost_net_ubuf_put_and_wait(struct vhost_net_ubuf_ref *ubufs)
2839400f 150{
fe729a57 151 kref_put(&ubufs->kref, vhost_net_zerocopy_done_signal);
2839400f
AH
152 wait_event(ubufs->wait, !atomic_read(&ubufs->kref.refcount));
153 kfree(ubufs);
154}
155
b1ad8496
AH
156static void vhost_net_clear_ubuf_info(struct vhost_net *n)
157{
158
159 bool zcopy;
160 int i;
161
162 for (i = 0; i < n->dev.nvqs; ++i) {
fe729a57 163 zcopy = vhost_net_zcopy_mask & (0x1 << i);
b1ad8496
AH
164 if (zcopy)
165 kfree(n->vqs[i].ubuf_info);
166 }
167}
168
2839400f
AH
169int vhost_net_set_ubuf_info(struct vhost_net *n)
170{
171 bool zcopy;
172 int i;
173
174 for (i = 0; i < n->dev.nvqs; ++i) {
fe729a57 175 zcopy = vhost_net_zcopy_mask & (0x1 << i);
2839400f
AH
176 if (!zcopy)
177 continue;
178 n->vqs[i].ubuf_info = kmalloc(sizeof(*n->vqs[i].ubuf_info) *
179 UIO_MAXIOV, GFP_KERNEL);
180 if (!n->vqs[i].ubuf_info)
181 goto err;
182 }
183 return 0;
184
185err:
186 while (i--) {
fe729a57 187 zcopy = vhost_net_zcopy_mask & (0x1 << i);
2839400f
AH
188 if (!zcopy)
189 continue;
190 kfree(n->vqs[i].ubuf_info);
191 }
192 return -ENOMEM;
193}
194
81f95a55 195void vhost_net_vq_reset(struct vhost_net *n)
2839400f
AH
196{
197 int i;
198
199 for (i = 0; i < VHOST_NET_VQ_MAX; i++) {
200 n->vqs[i].done_idx = 0;
201 n->vqs[i].upend_idx = 0;
202 n->vqs[i].ubufs = NULL;
203 kfree(n->vqs[i].ubuf_info);
204 n->vqs[i].ubuf_info = NULL;
81f95a55
MT
205 n->vqs[i].vhost_hlen = 0;
206 n->vqs[i].sock_hlen = 0;
2839400f
AH
207 }
208
209}
210
eaae8132
MT
211static void vhost_net_tx_packet(struct vhost_net *net)
212{
213 ++net->tx_packets;
214 if (net->tx_packets < 1024)
215 return;
216 net->tx_packets = 0;
217 net->tx_zcopy_err = 0;
218}
219
220static void vhost_net_tx_err(struct vhost_net *net)
221{
222 ++net->tx_zcopy_err;
223}
224
225static bool vhost_net_tx_select_zcopy(struct vhost_net *net)
226{
1280c27f
MT
227 /* TX flush waits for outstanding DMAs to be done.
228 * Don't start new DMAs.
229 */
230 return !net->tx_flush &&
231 net->tx_packets / 64 >= net->tx_zcopy_err;
eaae8132
MT
232}
233
bab632d6
MT
234static bool vhost_sock_zcopy(struct socket *sock)
235{
236 return unlikely(experimental_zcopytx) &&
237 sock_flag(sock->sk, SOCK_ZEROCOPY);
238}
239
3a4d5c94
MT
240/* Pop first len bytes from iovec. Return number of segments used. */
241static int move_iovec_hdr(struct iovec *from, struct iovec *to,
242 size_t len, int iov_count)
243{
244 int seg = 0;
245 size_t size;
d47effe1 246
3a4d5c94
MT
247 while (len && seg < iov_count) {
248 size = min(from->iov_len, len);
249 to->iov_base = from->iov_base;
250 to->iov_len = size;
251 from->iov_len -= size;
252 from->iov_base += size;
253 len -= size;
254 ++from;
255 ++to;
256 ++seg;
257 }
258 return seg;
259}
8dd014ad
DS
260/* Copy iovec entries for len bytes from iovec. */
261static void copy_iovec_hdr(const struct iovec *from, struct iovec *to,
262 size_t len, int iovcount)
263{
264 int seg = 0;
265 size_t size;
d47effe1 266
8dd014ad
DS
267 while (len && seg < iovcount) {
268 size = min(from->iov_len, len);
269 to->iov_base = from->iov_base;
270 to->iov_len = size;
271 len -= size;
272 ++from;
273 ++to;
274 ++seg;
275 }
276}
3a4d5c94 277
b211616d
MT
278/* In case of DMA done not in order in lower device driver for some reason.
279 * upend_idx is used to track end of used idx, done_idx is used to track head
280 * of used idx. Once lower device DMA done contiguously, we will signal KVM
281 * guest used idx.
282 */
eaae8132
MT
283static int vhost_zerocopy_signal_used(struct vhost_net *net,
284 struct vhost_virtqueue *vq)
b211616d 285{
2839400f
AH
286 struct vhost_net_virtqueue *nvq =
287 container_of(vq, struct vhost_net_virtqueue, vq);
b211616d
MT
288 int i;
289 int j = 0;
290
2839400f 291 for (i = nvq->done_idx; i != nvq->upend_idx; i = (i + 1) % UIO_MAXIOV) {
eaae8132
MT
292 if (vq->heads[i].len == VHOST_DMA_FAILED_LEN)
293 vhost_net_tx_err(net);
b211616d
MT
294 if (VHOST_DMA_IS_DONE(vq->heads[i].len)) {
295 vq->heads[i].len = VHOST_DMA_CLEAR_LEN;
296 vhost_add_used_and_signal(vq->dev, vq,
297 vq->heads[i].id, 0);
298 ++j;
299 } else
300 break;
301 }
302 if (j)
2839400f 303 nvq->done_idx = i;
b211616d
MT
304 return j;
305}
306
eaae8132 307static void vhost_zerocopy_callback(struct ubuf_info *ubuf, bool success)
b211616d 308{
fe729a57 309 struct vhost_net_ubuf_ref *ubufs = ubuf->ctx;
b211616d 310 struct vhost_virtqueue *vq = ubufs->vq;
24eb21a1
MT
311 int cnt = atomic_read(&ubufs->kref.refcount);
312
313 /*
314 * Trigger polling thread if guest stopped submitting new buffers:
315 * in this case, the refcount after decrement will eventually reach 1
316 * so here it is 2.
317 * We also trigger polling periodically after each 16 packets
318 * (the value 16 here is more or less arbitrary, it's tuned to trigger
319 * less than 10% of times).
320 */
321 if (cnt <= 2 || !(cnt % 16))
322 vhost_poll_queue(&vq->poll);
b211616d 323 /* set len to mark this desc buffers done DMA */
eaae8132
MT
324 vq->heads[ubuf->desc].len = success ?
325 VHOST_DMA_DONE_LEN : VHOST_DMA_FAILED_LEN;
fe729a57 326 vhost_net_ubuf_put(ubufs);
b211616d
MT
327}
328
3a4d5c94
MT
329/* Expects to be always run from workqueue - which acts as
330 * read-size critical section for our kind of RCU. */
331static void handle_tx(struct vhost_net *net)
332{
2839400f 333 struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_TX];
81f95a55 334 struct vhost_virtqueue *vq = &nvq->vq;
d5675bd2
MT
335 unsigned out, in, s;
336 int head;
3a4d5c94
MT
337 struct msghdr msg = {
338 .msg_name = NULL,
339 .msg_namelen = 0,
340 .msg_control = NULL,
341 .msg_controllen = 0,
342 .msg_iov = vq->iov,
343 .msg_flags = MSG_DONTWAIT,
344 };
345 size_t len, total_len = 0;
70181d51 346 int err;
3a4d5c94 347 size_t hdr_size;
28457ee6 348 struct socket *sock;
fe729a57 349 struct vhost_net_ubuf_ref *uninitialized_var(ubufs);
cedb9bdc 350 bool zcopy, zcopy_used;
28457ee6 351
5e18247b 352 /* TODO: check that we are running from vhost_worker? */
11cd1a8b 353 sock = rcu_dereference_check(vq->private_data, 1);
3a4d5c94
MT
354 if (!sock)
355 return;
356
3a4d5c94 357 mutex_lock(&vq->mutex);
8ea8cf89 358 vhost_disable_notify(&net->dev, vq);
3a4d5c94 359
81f95a55 360 hdr_size = nvq->vhost_hlen;
2839400f 361 zcopy = nvq->ubufs;
3a4d5c94
MT
362
363 for (;;) {
bab632d6
MT
364 /* Release DMAs done buffers first */
365 if (zcopy)
eaae8132 366 vhost_zerocopy_signal_used(net, vq);
bab632d6 367
3a4d5c94
MT
368 head = vhost_get_vq_desc(&net->dev, vq, vq->iov,
369 ARRAY_SIZE(vq->iov),
370 &out, &in,
371 NULL, NULL);
d5675bd2 372 /* On error, stop handling until the next kick. */
7b3384fc 373 if (unlikely(head < 0))
d5675bd2 374 break;
3a4d5c94
MT
375 /* Nothing new? Wait for eventfd to tell us they refilled. */
376 if (head == vq->num) {
9e380825
SM
377 int num_pends;
378
9e380825
SM
379 /* If more outstanding DMAs, queue the work.
380 * Handle upend_idx wrap around
381 */
2839400f
AH
382 num_pends = likely(nvq->upend_idx >= nvq->done_idx) ?
383 (nvq->upend_idx - nvq->done_idx) :
384 (nvq->upend_idx + UIO_MAXIOV -
385 nvq->done_idx);
70181d51 386 if (unlikely(num_pends > VHOST_MAX_PEND))
bab632d6 387 break;
8ea8cf89
MT
388 if (unlikely(vhost_enable_notify(&net->dev, vq))) {
389 vhost_disable_notify(&net->dev, vq);
3a4d5c94
MT
390 continue;
391 }
392 break;
393 }
394 if (in) {
395 vq_err(vq, "Unexpected descriptor format for TX: "
396 "out %d, int %d\n", out, in);
397 break;
398 }
399 /* Skip header. TODO: support TSO. */
81f95a55 400 s = move_iovec_hdr(vq->iov, nvq->hdr, hdr_size, out);
3a4d5c94
MT
401 msg.msg_iovlen = out;
402 len = iov_length(vq->iov, out);
403 /* Sanity check */
404 if (!len) {
405 vq_err(vq, "Unexpected header len for TX: "
406 "%zd expected %zd\n",
81f95a55 407 iov_length(nvq->hdr, s), hdr_size);
3a4d5c94
MT
408 break;
409 }
cedb9bdc 410 zcopy_used = zcopy && (len >= VHOST_GOODCOPY_LEN ||
2839400f 411 nvq->upend_idx != nvq->done_idx);
cedb9bdc 412
bab632d6 413 /* use msg_control to pass vhost zerocopy ubuf info to skb */
cedb9bdc 414 if (zcopy_used) {
2839400f 415 vq->heads[nvq->upend_idx].id = head;
eaae8132
MT
416 if (!vhost_net_tx_select_zcopy(net) ||
417 len < VHOST_GOODCOPY_LEN) {
bab632d6 418 /* copy don't need to wait for DMA done */
2839400f 419 vq->heads[nvq->upend_idx].len =
bab632d6
MT
420 VHOST_DMA_DONE_LEN;
421 msg.msg_control = NULL;
422 msg.msg_controllen = 0;
423 ubufs = NULL;
424 } else {
46aa92d1 425 struct ubuf_info *ubuf;
2839400f 426 ubuf = nvq->ubuf_info + nvq->upend_idx;
bab632d6 427
2839400f 428 vq->heads[nvq->upend_idx].len =
70e4cb9a 429 VHOST_DMA_IN_PROGRESS;
bab632d6 430 ubuf->callback = vhost_zerocopy_callback;
2839400f
AH
431 ubuf->ctx = nvq->ubufs;
432 ubuf->desc = nvq->upend_idx;
bab632d6
MT
433 msg.msg_control = ubuf;
434 msg.msg_controllen = sizeof(ubuf);
2839400f 435 ubufs = nvq->ubufs;
bab632d6
MT
436 kref_get(&ubufs->kref);
437 }
2839400f 438 nvq->upend_idx = (nvq->upend_idx + 1) % UIO_MAXIOV;
bab632d6 439 }
3a4d5c94
MT
440 /* TODO: Check specific error and bomb out unless ENOBUFS? */
441 err = sock->ops->sendmsg(NULL, sock, &msg, len);
442 if (unlikely(err < 0)) {
cedb9bdc 443 if (zcopy_used) {
bab632d6 444 if (ubufs)
fe729a57 445 vhost_net_ubuf_put(ubufs);
2839400f
AH
446 nvq->upend_idx = ((unsigned)nvq->upend_idx - 1)
447 % UIO_MAXIOV;
bab632d6 448 }
8dd014ad 449 vhost_discard_vq_desc(vq, 1);
3a4d5c94
MT
450 break;
451 }
452 if (err != len)
95c0ec6a
MT
453 pr_debug("Truncated TX packet: "
454 " len %d != %zd\n", err, len);
cedb9bdc 455 if (!zcopy_used)
bab632d6 456 vhost_add_used_and_signal(&net->dev, vq, head, 0);
c8fb217a 457 else
eaae8132 458 vhost_zerocopy_signal_used(net, vq);
3a4d5c94 459 total_len += len;
eaae8132 460 vhost_net_tx_packet(net);
3a4d5c94
MT
461 if (unlikely(total_len >= VHOST_NET_WEIGHT)) {
462 vhost_poll_queue(&vq->poll);
463 break;
464 }
465 }
466
467 mutex_unlock(&vq->mutex);
3a4d5c94
MT
468}
469
8dd014ad
DS
470static int peek_head_len(struct sock *sk)
471{
472 struct sk_buff *head;
473 int len = 0;
783e3988 474 unsigned long flags;
8dd014ad 475
783e3988 476 spin_lock_irqsave(&sk->sk_receive_queue.lock, flags);
8dd014ad 477 head = skb_peek(&sk->sk_receive_queue);
c53cff5e 478 if (likely(head)) {
8dd014ad 479 len = head->len;
c53cff5e
BG
480 if (vlan_tx_tag_present(head))
481 len += VLAN_HLEN;
482 }
483
783e3988 484 spin_unlock_irqrestore(&sk->sk_receive_queue.lock, flags);
8dd014ad
DS
485 return len;
486}
487
488/* This is a multi-buffer version of vhost_get_desc, that works if
489 * vq has read descriptors only.
490 * @vq - the relevant virtqueue
491 * @datalen - data length we'll be reading
492 * @iovcount - returned count of io vectors we fill
493 * @log - vhost log
494 * @log_num - log offset
94249369 495 * @quota - headcount quota, 1 for big buffer
8dd014ad
DS
496 * returns number of buffer heads allocated, negative on error
497 */
498static int get_rx_bufs(struct vhost_virtqueue *vq,
499 struct vring_used_elem *heads,
500 int datalen,
501 unsigned *iovcount,
502 struct vhost_log *log,
94249369
JW
503 unsigned *log_num,
504 unsigned int quota)
8dd014ad
DS
505{
506 unsigned int out, in;
507 int seg = 0;
508 int headcount = 0;
509 unsigned d;
510 int r, nlogs = 0;
511
94249369 512 while (datalen > 0 && headcount < quota) {
e0e9b406 513 if (unlikely(seg >= UIO_MAXIOV)) {
8dd014ad
DS
514 r = -ENOBUFS;
515 goto err;
516 }
517 d = vhost_get_vq_desc(vq->dev, vq, vq->iov + seg,
518 ARRAY_SIZE(vq->iov) - seg, &out,
519 &in, log, log_num);
520 if (d == vq->num) {
521 r = 0;
522 goto err;
523 }
524 if (unlikely(out || in <= 0)) {
525 vq_err(vq, "unexpected descriptor format for RX: "
526 "out %d, in %d\n", out, in);
527 r = -EINVAL;
528 goto err;
529 }
530 if (unlikely(log)) {
531 nlogs += *log_num;
532 log += *log_num;
533 }
534 heads[headcount].id = d;
535 heads[headcount].len = iov_length(vq->iov + seg, in);
536 datalen -= heads[headcount].len;
537 ++headcount;
538 seg += in;
539 }
540 heads[headcount - 1].len += datalen;
541 *iovcount = seg;
542 if (unlikely(log))
543 *log_num = nlogs;
544 return headcount;
545err:
546 vhost_discard_vq_desc(vq, headcount);
547 return r;
548}
549
3a4d5c94
MT
550/* Expects to be always run from workqueue - which acts as
551 * read-size critical section for our kind of RCU. */
94249369 552static void handle_rx(struct vhost_net *net)
3a4d5c94 553{
81f95a55
MT
554 struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_RX];
555 struct vhost_virtqueue *vq = &nvq->vq;
8dd014ad
DS
556 unsigned uninitialized_var(in), log;
557 struct vhost_log *vq_log;
558 struct msghdr msg = {
559 .msg_name = NULL,
560 .msg_namelen = 0,
561 .msg_control = NULL, /* FIXME: get and handle RX aux data. */
562 .msg_controllen = 0,
563 .msg_iov = vq->iov,
564 .msg_flags = MSG_DONTWAIT,
565 };
8dd014ad
DS
566 struct virtio_net_hdr_mrg_rxbuf hdr = {
567 .hdr.flags = 0,
568 .hdr.gso_type = VIRTIO_NET_HDR_GSO_NONE
569 };
8dd014ad 570 size_t total_len = 0;
910a578f
MT
571 int err, mergeable;
572 s16 headcount;
8dd014ad
DS
573 size_t vhost_hlen, sock_hlen;
574 size_t vhost_len, sock_len;
5e18247b
MT
575 /* TODO: check that we are running from vhost_worker? */
576 struct socket *sock = rcu_dereference_check(vq->private_data, 1);
d47effe1 577
de4d768a 578 if (!sock)
8dd014ad
DS
579 return;
580
8dd014ad 581 mutex_lock(&vq->mutex);
8ea8cf89 582 vhost_disable_notify(&net->dev, vq);
81f95a55
MT
583 vhost_hlen = nvq->vhost_hlen;
584 sock_hlen = nvq->sock_hlen;
8dd014ad
DS
585
586 vq_log = unlikely(vhost_has_feature(&net->dev, VHOST_F_LOG_ALL)) ?
587 vq->log : NULL;
cfbdab95 588 mergeable = vhost_has_feature(&net->dev, VIRTIO_NET_F_MRG_RXBUF);
8dd014ad
DS
589
590 while ((sock_len = peek_head_len(sock->sk))) {
591 sock_len += sock_hlen;
592 vhost_len = sock_len + vhost_hlen;
593 headcount = get_rx_bufs(vq, vq->heads, vhost_len,
94249369
JW
594 &in, vq_log, &log,
595 likely(mergeable) ? UIO_MAXIOV : 1);
8dd014ad
DS
596 /* On error, stop handling until the next kick. */
597 if (unlikely(headcount < 0))
598 break;
599 /* OK, now we need to know about added descriptors. */
600 if (!headcount) {
8ea8cf89 601 if (unlikely(vhost_enable_notify(&net->dev, vq))) {
8dd014ad
DS
602 /* They have slipped one in as we were
603 * doing that: check again. */
8ea8cf89 604 vhost_disable_notify(&net->dev, vq);
8dd014ad
DS
605 continue;
606 }
607 /* Nothing new? Wait for eventfd to tell us
608 * they refilled. */
609 break;
610 }
611 /* We don't need to be notified again. */
612 if (unlikely((vhost_hlen)))
613 /* Skip header. TODO: support TSO. */
81f95a55 614 move_iovec_hdr(vq->iov, nvq->hdr, vhost_hlen, in);
8dd014ad
DS
615 else
616 /* Copy the header for use in VIRTIO_NET_F_MRG_RXBUF:
a290aec8 617 * needed because recvmsg can modify msg_iov. */
81f95a55 618 copy_iovec_hdr(vq->iov, nvq->hdr, sock_hlen, in);
8dd014ad
DS
619 msg.msg_iovlen = in;
620 err = sock->ops->recvmsg(NULL, sock, &msg,
621 sock_len, MSG_DONTWAIT | MSG_TRUNC);
622 /* Userspace might have consumed the packet meanwhile:
623 * it's not supposed to do this usually, but might be hard
624 * to prevent. Discard data we got (if any) and keep going. */
625 if (unlikely(err != sock_len)) {
626 pr_debug("Discarded rx packet: "
627 " len %d, expected %zd\n", err, sock_len);
628 vhost_discard_vq_desc(vq, headcount);
629 continue;
630 }
631 if (unlikely(vhost_hlen) &&
81f95a55 632 memcpy_toiovecend(nvq->hdr, (unsigned char *)&hdr, 0,
8dd014ad
DS
633 vhost_hlen)) {
634 vq_err(vq, "Unable to write vnet_hdr at addr %p\n",
635 vq->iov->iov_base);
636 break;
637 }
638 /* TODO: Should check and handle checksum. */
cfbdab95 639 if (likely(mergeable) &&
81f95a55 640 memcpy_toiovecend(nvq->hdr, (unsigned char *)&headcount,
8dd014ad
DS
641 offsetof(typeof(hdr), num_buffers),
642 sizeof hdr.num_buffers)) {
643 vq_err(vq, "Failed num_buffers write");
644 vhost_discard_vq_desc(vq, headcount);
645 break;
646 }
647 vhost_add_used_and_signal_n(&net->dev, vq, vq->heads,
648 headcount);
649 if (unlikely(vq_log))
650 vhost_log_write(vq, vq_log, log, vhost_len);
651 total_len += vhost_len;
652 if (unlikely(total_len >= VHOST_NET_WEIGHT)) {
653 vhost_poll_queue(&vq->poll);
654 break;
655 }
656 }
657
658 mutex_unlock(&vq->mutex);
8dd014ad
DS
659}
660
c23f3445 661static void handle_tx_kick(struct vhost_work *work)
3a4d5c94 662{
c23f3445
TH
663 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
664 poll.work);
665 struct vhost_net *net = container_of(vq->dev, struct vhost_net, dev);
666
3a4d5c94
MT
667 handle_tx(net);
668}
669
c23f3445 670static void handle_rx_kick(struct vhost_work *work)
3a4d5c94 671{
c23f3445
TH
672 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
673 poll.work);
674 struct vhost_net *net = container_of(vq->dev, struct vhost_net, dev);
675
3a4d5c94
MT
676 handle_rx(net);
677}
678
c23f3445 679static void handle_tx_net(struct vhost_work *work)
3a4d5c94 680{
c23f3445
TH
681 struct vhost_net *net = container_of(work, struct vhost_net,
682 poll[VHOST_NET_VQ_TX].work);
3a4d5c94
MT
683 handle_tx(net);
684}
685
c23f3445 686static void handle_rx_net(struct vhost_work *work)
3a4d5c94 687{
c23f3445
TH
688 struct vhost_net *net = container_of(work, struct vhost_net,
689 poll[VHOST_NET_VQ_RX].work);
3a4d5c94
MT
690 handle_rx(net);
691}
692
693static int vhost_net_open(struct inode *inode, struct file *f)
694{
695 struct vhost_net *n = kmalloc(sizeof *n, GFP_KERNEL);
c23f3445 696 struct vhost_dev *dev;
3ab2e420 697 struct vhost_virtqueue **vqs;
2839400f 698 int r, i;
c23f3445 699
3a4d5c94
MT
700 if (!n)
701 return -ENOMEM;
3ab2e420
AH
702 vqs = kmalloc(VHOST_NET_VQ_MAX * sizeof(*vqs), GFP_KERNEL);
703 if (!vqs) {
704 kfree(n);
705 return -ENOMEM;
706 }
c23f3445
TH
707
708 dev = &n->dev;
3ab2e420
AH
709 vqs[VHOST_NET_VQ_TX] = &n->vqs[VHOST_NET_VQ_TX].vq;
710 vqs[VHOST_NET_VQ_RX] = &n->vqs[VHOST_NET_VQ_RX].vq;
711 n->vqs[VHOST_NET_VQ_TX].vq.handle_kick = handle_tx_kick;
712 n->vqs[VHOST_NET_VQ_RX].vq.handle_kick = handle_rx_kick;
2839400f
AH
713 for (i = 0; i < VHOST_NET_VQ_MAX; i++) {
714 n->vqs[i].ubufs = NULL;
715 n->vqs[i].ubuf_info = NULL;
716 n->vqs[i].upend_idx = 0;
717 n->vqs[i].done_idx = 0;
81f95a55
MT
718 n->vqs[i].vhost_hlen = 0;
719 n->vqs[i].sock_hlen = 0;
2839400f 720 }
3ab2e420 721 r = vhost_dev_init(dev, vqs, VHOST_NET_VQ_MAX);
3a4d5c94
MT
722 if (r < 0) {
723 kfree(n);
3ab2e420 724 kfree(vqs);
3a4d5c94
MT
725 return r;
726 }
727
c23f3445
TH
728 vhost_poll_init(n->poll + VHOST_NET_VQ_TX, handle_tx_net, POLLOUT, dev);
729 vhost_poll_init(n->poll + VHOST_NET_VQ_RX, handle_rx_net, POLLIN, dev);
3a4d5c94
MT
730
731 f->private_data = n;
732
733 return 0;
734}
735
736static void vhost_net_disable_vq(struct vhost_net *n,
737 struct vhost_virtqueue *vq)
738{
3ab2e420
AH
739 struct vhost_net_virtqueue *nvq =
740 container_of(vq, struct vhost_net_virtqueue, vq);
741 struct vhost_poll *poll = n->poll + (nvq - n->vqs);
3a4d5c94
MT
742 if (!vq->private_data)
743 return;
70181d51 744 vhost_poll_stop(poll);
3a4d5c94
MT
745}
746
2b8b328b 747static int vhost_net_enable_vq(struct vhost_net *n,
3a4d5c94
MT
748 struct vhost_virtqueue *vq)
749{
3ab2e420
AH
750 struct vhost_net_virtqueue *nvq =
751 container_of(vq, struct vhost_net_virtqueue, vq);
752 struct vhost_poll *poll = n->poll + (nvq - n->vqs);
28457ee6
AB
753 struct socket *sock;
754
755 sock = rcu_dereference_protected(vq->private_data,
756 lockdep_is_held(&vq->mutex));
3a4d5c94 757 if (!sock)
2b8b328b 758 return 0;
2b8b328b 759
70181d51 760 return vhost_poll_start(poll, sock->file);
3a4d5c94
MT
761}
762
763static struct socket *vhost_net_stop_vq(struct vhost_net *n,
764 struct vhost_virtqueue *vq)
765{
766 struct socket *sock;
767
768 mutex_lock(&vq->mutex);
28457ee6
AB
769 sock = rcu_dereference_protected(vq->private_data,
770 lockdep_is_held(&vq->mutex));
3a4d5c94
MT
771 vhost_net_disable_vq(n, vq);
772 rcu_assign_pointer(vq->private_data, NULL);
773 mutex_unlock(&vq->mutex);
774 return sock;
775}
776
777static void vhost_net_stop(struct vhost_net *n, struct socket **tx_sock,
778 struct socket **rx_sock)
779{
3ab2e420
AH
780 *tx_sock = vhost_net_stop_vq(n, &n->vqs[VHOST_NET_VQ_TX].vq);
781 *rx_sock = vhost_net_stop_vq(n, &n->vqs[VHOST_NET_VQ_RX].vq);
3a4d5c94
MT
782}
783
784static void vhost_net_flush_vq(struct vhost_net *n, int index)
785{
786 vhost_poll_flush(n->poll + index);
3ab2e420 787 vhost_poll_flush(&n->vqs[index].vq.poll);
3a4d5c94
MT
788}
789
790static void vhost_net_flush(struct vhost_net *n)
791{
792 vhost_net_flush_vq(n, VHOST_NET_VQ_TX);
793 vhost_net_flush_vq(n, VHOST_NET_VQ_RX);
2839400f 794 if (n->vqs[VHOST_NET_VQ_TX].ubufs) {
3ab2e420 795 mutex_lock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
1280c27f 796 n->tx_flush = true;
3ab2e420 797 mutex_unlock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
1280c27f 798 /* Wait for all lower device DMAs done. */
fe729a57 799 vhost_net_ubuf_put_and_wait(n->vqs[VHOST_NET_VQ_TX].ubufs);
3ab2e420 800 mutex_lock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
1280c27f 801 n->tx_flush = false;
2839400f 802 kref_init(&n->vqs[VHOST_NET_VQ_TX].ubufs->kref);
3ab2e420 803 mutex_unlock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
1280c27f 804 }
3a4d5c94
MT
805}
806
807static int vhost_net_release(struct inode *inode, struct file *f)
808{
809 struct vhost_net *n = f->private_data;
810 struct socket *tx_sock;
811 struct socket *rx_sock;
812
813 vhost_net_stop(n, &tx_sock, &rx_sock);
814 vhost_net_flush(n);
b211616d 815 vhost_dev_stop(&n->dev);
ea5d4046 816 vhost_dev_cleanup(&n->dev, false);
81f95a55 817 vhost_net_vq_reset(n);
3a4d5c94
MT
818 if (tx_sock)
819 fput(tx_sock->file);
820 if (rx_sock)
821 fput(rx_sock->file);
822 /* We do an extra flush before freeing memory,
823 * since jobs can re-queue themselves. */
824 vhost_net_flush(n);
3ab2e420 825 kfree(n->dev.vqs);
3a4d5c94
MT
826 kfree(n);
827 return 0;
828}
829
830static struct socket *get_raw_socket(int fd)
831{
832 struct {
833 struct sockaddr_ll sa;
834 char buf[MAX_ADDR_LEN];
835 } uaddr;
836 int uaddr_len = sizeof uaddr, r;
837 struct socket *sock = sockfd_lookup(fd, &r);
d47effe1 838
3a4d5c94
MT
839 if (!sock)
840 return ERR_PTR(-ENOTSOCK);
841
842 /* Parameter checking */
843 if (sock->sk->sk_type != SOCK_RAW) {
844 r = -ESOCKTNOSUPPORT;
845 goto err;
846 }
847
848 r = sock->ops->getname(sock, (struct sockaddr *)&uaddr.sa,
849 &uaddr_len, 0);
850 if (r)
851 goto err;
852
853 if (uaddr.sa.sll_family != AF_PACKET) {
854 r = -EPFNOSUPPORT;
855 goto err;
856 }
857 return sock;
858err:
859 fput(sock->file);
860 return ERR_PTR(r);
861}
862
501c774c 863static struct socket *get_tap_socket(int fd)
3a4d5c94
MT
864{
865 struct file *file = fget(fd);
866 struct socket *sock;
d47effe1 867
3a4d5c94
MT
868 if (!file)
869 return ERR_PTR(-EBADF);
870 sock = tun_get_socket(file);
501c774c
AB
871 if (!IS_ERR(sock))
872 return sock;
873 sock = macvtap_get_socket(file);
3a4d5c94
MT
874 if (IS_ERR(sock))
875 fput(file);
876 return sock;
877}
878
879static struct socket *get_socket(int fd)
880{
881 struct socket *sock;
d47effe1 882
3a4d5c94
MT
883 /* special case to disable backend */
884 if (fd == -1)
885 return NULL;
886 sock = get_raw_socket(fd);
887 if (!IS_ERR(sock))
888 return sock;
501c774c 889 sock = get_tap_socket(fd);
3a4d5c94
MT
890 if (!IS_ERR(sock))
891 return sock;
892 return ERR_PTR(-ENOTSOCK);
893}
894
895static long vhost_net_set_backend(struct vhost_net *n, unsigned index, int fd)
896{
897 struct socket *sock, *oldsock;
898 struct vhost_virtqueue *vq;
2839400f 899 struct vhost_net_virtqueue *nvq;
fe729a57 900 struct vhost_net_ubuf_ref *ubufs, *oldubufs = NULL;
3a4d5c94
MT
901 int r;
902
903 mutex_lock(&n->dev.mutex);
904 r = vhost_dev_check_owner(&n->dev);
905 if (r)
906 goto err;
907
908 if (index >= VHOST_NET_VQ_MAX) {
909 r = -ENOBUFS;
910 goto err;
911 }
3ab2e420 912 vq = &n->vqs[index].vq;
2839400f 913 nvq = &n->vqs[index];
3a4d5c94
MT
914 mutex_lock(&vq->mutex);
915
916 /* Verify that ring has been setup correctly. */
917 if (!vhost_vq_access_ok(vq)) {
918 r = -EFAULT;
1dace8c8 919 goto err_vq;
3a4d5c94
MT
920 }
921 sock = get_socket(fd);
922 if (IS_ERR(sock)) {
923 r = PTR_ERR(sock);
1dace8c8 924 goto err_vq;
3a4d5c94
MT
925 }
926
927 /* start polling new socket */
28457ee6
AB
928 oldsock = rcu_dereference_protected(vq->private_data,
929 lockdep_is_held(&vq->mutex));
11fe8839 930 if (sock != oldsock) {
fe729a57
AH
931 ubufs = vhost_net_ubuf_alloc(vq,
932 sock && vhost_sock_zcopy(sock));
bab632d6
MT
933 if (IS_ERR(ubufs)) {
934 r = PTR_ERR(ubufs);
935 goto err_ubufs;
936 }
692a998b 937
d47effe1
KK
938 vhost_net_disable_vq(n, vq);
939 rcu_assign_pointer(vq->private_data, sock);
f59281da
JW
940 r = vhost_init_used(vq);
941 if (r)
692a998b 942 goto err_used;
2b8b328b
JW
943 r = vhost_net_enable_vq(n, vq);
944 if (r)
945 goto err_used;
692a998b 946
2839400f
AH
947 oldubufs = nvq->ubufs;
948 nvq->ubufs = ubufs;
64e9a9b8
MT
949
950 n->tx_packets = 0;
951 n->tx_zcopy_err = 0;
1280c27f 952 n->tx_flush = false;
dd1f4078 953 }
3a4d5c94 954
1680e906
MT
955 mutex_unlock(&vq->mutex);
956
c047e5f3 957 if (oldubufs) {
fe729a57 958 vhost_net_ubuf_put_and_wait(oldubufs);
c047e5f3 959 mutex_lock(&vq->mutex);
eaae8132 960 vhost_zerocopy_signal_used(n, vq);
c047e5f3
MT
961 mutex_unlock(&vq->mutex);
962 }
bab632d6 963
3a4d5c94
MT
964 if (oldsock) {
965 vhost_net_flush_vq(n, index);
966 fput(oldsock->file);
967 }
1dace8c8 968
1680e906
MT
969 mutex_unlock(&n->dev.mutex);
970 return 0;
971
692a998b
JW
972err_used:
973 rcu_assign_pointer(vq->private_data, oldsock);
974 vhost_net_enable_vq(n, vq);
975 if (ubufs)
fe729a57 976 vhost_net_ubuf_put_and_wait(ubufs);
bab632d6
MT
977err_ubufs:
978 fput(sock->file);
1dace8c8
JD
979err_vq:
980 mutex_unlock(&vq->mutex);
3a4d5c94
MT
981err:
982 mutex_unlock(&n->dev.mutex);
983 return r;
984}
985
986static long vhost_net_reset_owner(struct vhost_net *n)
987{
988 struct socket *tx_sock = NULL;
989 struct socket *rx_sock = NULL;
990 long err;
150b9e51 991 struct vhost_memory *memory;
d47effe1 992
3a4d5c94
MT
993 mutex_lock(&n->dev.mutex);
994 err = vhost_dev_check_owner(&n->dev);
995 if (err)
996 goto done;
150b9e51
MT
997 memory = vhost_dev_reset_owner_prepare();
998 if (!memory) {
999 err = -ENOMEM;
1000 goto done;
1001 }
3a4d5c94
MT
1002 vhost_net_stop(n, &tx_sock, &rx_sock);
1003 vhost_net_flush(n);
150b9e51 1004 vhost_dev_reset_owner(&n->dev, memory);
81f95a55 1005 vhost_net_vq_reset(n);
3a4d5c94
MT
1006done:
1007 mutex_unlock(&n->dev.mutex);
1008 if (tx_sock)
1009 fput(tx_sock->file);
1010 if (rx_sock)
1011 fput(rx_sock->file);
1012 return err;
1013}
1014
1015static int vhost_net_set_features(struct vhost_net *n, u64 features)
1016{
8dd014ad 1017 size_t vhost_hlen, sock_hlen, hdr_len;
3a4d5c94 1018 int i;
8dd014ad
DS
1019
1020 hdr_len = (features & (1 << VIRTIO_NET_F_MRG_RXBUF)) ?
1021 sizeof(struct virtio_net_hdr_mrg_rxbuf) :
1022 sizeof(struct virtio_net_hdr);
1023 if (features & (1 << VHOST_NET_F_VIRTIO_NET_HDR)) {
1024 /* vhost provides vnet_hdr */
1025 vhost_hlen = hdr_len;
1026 sock_hlen = 0;
1027 } else {
1028 /* socket provides vnet_hdr */
1029 vhost_hlen = 0;
1030 sock_hlen = hdr_len;
1031 }
3a4d5c94
MT
1032 mutex_lock(&n->dev.mutex);
1033 if ((features & (1 << VHOST_F_LOG_ALL)) &&
1034 !vhost_log_access_ok(&n->dev)) {
1035 mutex_unlock(&n->dev.mutex);
1036 return -EFAULT;
1037 }
1038 n->dev.acked_features = features;
1039 smp_wmb();
1040 for (i = 0; i < VHOST_NET_VQ_MAX; ++i) {
3ab2e420 1041 mutex_lock(&n->vqs[i].vq.mutex);
81f95a55
MT
1042 n->vqs[i].vhost_hlen = vhost_hlen;
1043 n->vqs[i].sock_hlen = sock_hlen;
3ab2e420 1044 mutex_unlock(&n->vqs[i].vq.mutex);
3a4d5c94
MT
1045 }
1046 vhost_net_flush(n);
1047 mutex_unlock(&n->dev.mutex);
1048 return 0;
1049}
1050
b1ad8496
AH
1051static long vhost_net_set_owner(struct vhost_net *n)
1052{
1053 int r;
1054
1055 mutex_lock(&n->dev.mutex);
1056 r = vhost_net_set_ubuf_info(n);
1057 if (r)
1058 goto out;
1059 r = vhost_dev_set_owner(&n->dev);
1060 if (r)
1061 vhost_net_clear_ubuf_info(n);
1062 vhost_net_flush(n);
1063out:
1064 mutex_unlock(&n->dev.mutex);
1065 return r;
1066}
1067
3a4d5c94
MT
1068static long vhost_net_ioctl(struct file *f, unsigned int ioctl,
1069 unsigned long arg)
1070{
1071 struct vhost_net *n = f->private_data;
1072 void __user *argp = (void __user *)arg;
1073 u64 __user *featurep = argp;
1074 struct vhost_vring_file backend;
1075 u64 features;
1076 int r;
d47effe1 1077
3a4d5c94
MT
1078 switch (ioctl) {
1079 case VHOST_NET_SET_BACKEND:
d3553a52
TY
1080 if (copy_from_user(&backend, argp, sizeof backend))
1081 return -EFAULT;
3a4d5c94
MT
1082 return vhost_net_set_backend(n, backend.index, backend.fd);
1083 case VHOST_GET_FEATURES:
0dd05a3b 1084 features = VHOST_NET_FEATURES;
d3553a52
TY
1085 if (copy_to_user(featurep, &features, sizeof features))
1086 return -EFAULT;
1087 return 0;
3a4d5c94 1088 case VHOST_SET_FEATURES:
d3553a52
TY
1089 if (copy_from_user(&features, featurep, sizeof features))
1090 return -EFAULT;
0dd05a3b 1091 if (features & ~VHOST_NET_FEATURES)
3a4d5c94
MT
1092 return -EOPNOTSUPP;
1093 return vhost_net_set_features(n, features);
1094 case VHOST_RESET_OWNER:
1095 return vhost_net_reset_owner(n);
b1ad8496
AH
1096 case VHOST_SET_OWNER:
1097 return vhost_net_set_owner(n);
3a4d5c94
MT
1098 default:
1099 mutex_lock(&n->dev.mutex);
935cdee7
MT
1100 r = vhost_dev_ioctl(&n->dev, ioctl, argp);
1101 if (r == -ENOIOCTLCMD)
1102 r = vhost_vring_ioctl(&n->dev, ioctl, argp);
1103 else
1104 vhost_net_flush(n);
3a4d5c94
MT
1105 mutex_unlock(&n->dev.mutex);
1106 return r;
1107 }
1108}
1109
1110#ifdef CONFIG_COMPAT
1111static long vhost_net_compat_ioctl(struct file *f, unsigned int ioctl,
1112 unsigned long arg)
1113{
1114 return vhost_net_ioctl(f, ioctl, (unsigned long)compat_ptr(arg));
1115}
1116#endif
1117
373a83a6 1118static const struct file_operations vhost_net_fops = {
3a4d5c94
MT
1119 .owner = THIS_MODULE,
1120 .release = vhost_net_release,
1121 .unlocked_ioctl = vhost_net_ioctl,
1122#ifdef CONFIG_COMPAT
1123 .compat_ioctl = vhost_net_compat_ioctl,
1124#endif
1125 .open = vhost_net_open,
6038f373 1126 .llseek = noop_llseek,
3a4d5c94
MT
1127};
1128
1129static struct miscdevice vhost_net_misc = {
7c7c7f01 1130 .minor = VHOST_NET_MINOR,
1131 .name = "vhost-net",
1132 .fops = &vhost_net_fops,
3a4d5c94
MT
1133};
1134
a8d3782f 1135static int vhost_net_init(void)
3a4d5c94 1136{
bab632d6 1137 if (experimental_zcopytx)
fe729a57 1138 vhost_net_enable_zcopy(VHOST_NET_VQ_TX);
c23f3445 1139 return misc_register(&vhost_net_misc);
3a4d5c94
MT
1140}
1141module_init(vhost_net_init);
1142
a8d3782f 1143static void vhost_net_exit(void)
3a4d5c94
MT
1144{
1145 misc_deregister(&vhost_net_misc);
3a4d5c94
MT
1146}
1147module_exit(vhost_net_exit);
1148
1149MODULE_VERSION("0.0.1");
1150MODULE_LICENSE("GPL v2");
1151MODULE_AUTHOR("Michael S. Tsirkin");
1152MODULE_DESCRIPTION("Host kernel accelerator for virtio net");
7c7c7f01 1153MODULE_ALIAS_MISCDEV(VHOST_NET_MINOR);
1154MODULE_ALIAS("devname:vhost-net");
This page took 0.312165 seconds and 5 git commands to generate.