blob: dacd43b276d4a307d2d536879c9543238fc9c361 [file] [log] [blame]
Rusty Russell48925e32009-09-24 09:59:20 -06001/* A network driver using virtio.
Rusty Russell296f96f2007-10-22 11:03:37 +10002 *
3 * Copyright 2007 Rusty Russell <rusty@rustcorp.com.au> IBM Corporation
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
Jeff Kirsheradf8d3f2013-12-06 06:28:47 -080016 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Rusty Russell296f96f2007-10-22 11:03:37 +100017 */
18//#define DEBUG
19#include <linux/netdevice.h>
20#include <linux/etherdevice.h>
Herbert Xua9ea3fc2008-04-18 11:21:42 +080021#include <linux/ethtool.h>
Rusty Russell296f96f2007-10-22 11:03:37 +100022#include <linux/module.h>
23#include <linux/virtio.h>
24#include <linux/virtio_net.h>
25#include <linux/scatterlist.h>
Alex Williamsone918085a2009-01-25 18:06:26 -080026#include <linux/if_vlan.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Wanlong Gao8de4b2f2013-01-24 23:51:31 +000028#include <linux/cpu.h>
Michael Daltonab7db912014-01-16 22:23:27 -080029#include <linux/average.h>
Rusty Russell296f96f2007-10-22 11:03:37 +100030
Amerigo Wangd34710e2013-05-09 19:50:51 +000031static int napi_weight = NAPI_POLL_WEIGHT;
Dor Laor6c0cd7c2007-12-16 15:19:43 +020032module_param(napi_weight, int, 0444);
33
Rusty Russelleb939922011-12-19 14:08:01 +000034static bool csum = true, gso = true;
Rusty Russell34a48572008-02-04 23:50:02 -050035module_param(csum, bool, 0444);
36module_param(gso, bool, 0444);
37
Rusty Russell296f96f2007-10-22 11:03:37 +100038/* FIXME: MTU in config. */
Michael Dalton5061de32013-11-14 10:41:04 -080039#define GOOD_PACKET_LEN (ETH_HLEN + VLAN_HLEN + ETH_DATA_LEN)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -080040#define GOOD_COPY_LEN 128
Rusty Russell296f96f2007-10-22 11:03:37 +100041
Michael Daltonab7db912014-01-16 22:23:27 -080042/* Weight used for the RX packet size EWMA. The average packet size is used to
43 * determine the packet buffer size when refilling RX rings. As the entire RX
44 * ring may be refilled at once, the weight is chosen so that the EWMA will be
45 * insensitive to short-term, transient changes in packet size.
46 */
47#define RECEIVE_AVG_WEIGHT 64
48
49/* Minimum alignment for mergeable packet buffers. */
50#define MERGEABLE_BUFFER_ALIGN max(L1_CACHE_BYTES, 256)
51
Rick Jones66846042011-11-14 14:17:08 +000052#define VIRTNET_DRIVER_VERSION "1.0.0"
Alex Williamson2a41f712009-02-04 09:02:34 +000053
stephen hemminger3fa2a1d2011-06-15 06:36:29 +000054struct virtnet_stats {
Eric Dumazet83a27052012-06-05 22:35:24 +000055 struct u64_stats_sync tx_syncp;
56 struct u64_stats_sync rx_syncp;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +000057 u64 tx_bytes;
58 u64 tx_packets;
59
60 u64 rx_bytes;
61 u64 rx_packets;
62};
63
Jason Wange9d74172012-12-07 07:04:55 +000064/* Internal representation of a send virtqueue */
65struct send_queue {
66 /* Virtqueue associated with this send _queue */
67 struct virtqueue *vq;
68
69 /* TX: fragments + linear part + virtio header */
70 struct scatterlist sg[MAX_SKB_FRAGS + 2];
Jason Wang986a4f42012-12-07 07:04:56 +000071
72 /* Name of the send queue: output.$index */
73 char name[40];
Jason Wange9d74172012-12-07 07:04:55 +000074};
75
76/* Internal representation of a receive virtqueue */
77struct receive_queue {
78 /* Virtqueue associated with this receive_queue */
79 struct virtqueue *vq;
80
Rusty Russell296f96f2007-10-22 11:03:37 +100081 struct napi_struct napi;
82
Jason Wange9d74172012-12-07 07:04:55 +000083 /* Chain pages by the private ptr. */
84 struct page *pages;
85
Michael Daltonab7db912014-01-16 22:23:27 -080086 /* Average packet length for mergeable receive buffers. */
87 struct ewma mrg_avg_pkt_len;
88
Michael Daltonfb518792014-01-16 22:23:26 -080089 /* Page frag for packet buffer allocation. */
90 struct page_frag alloc_frag;
91
Jason Wange9d74172012-12-07 07:04:55 +000092 /* RX: fragments + linear part + virtio header */
93 struct scatterlist sg[MAX_SKB_FRAGS + 2];
Jason Wang986a4f42012-12-07 07:04:56 +000094
95 /* Name of this receive queue: input.$index */
96 char name[40];
Jason Wange9d74172012-12-07 07:04:55 +000097};
98
99struct virtnet_info {
100 struct virtio_device *vdev;
101 struct virtqueue *cvq;
102 struct net_device *dev;
Jason Wang986a4f42012-12-07 07:04:56 +0000103 struct send_queue *sq;
104 struct receive_queue *rq;
Jason Wange9d74172012-12-07 07:04:55 +0000105 unsigned int status;
106
Jason Wang986a4f42012-12-07 07:04:56 +0000107 /* Max # of queue pairs supported by the device */
108 u16 max_queue_pairs;
109
110 /* # of queue pairs currently used by the driver */
111 u16 curr_queue_pairs;
112
Herbert Xu97402b92008-04-18 11:24:27 +0800113 /* I like... big packets and I cannot lie! */
114 bool big_packets;
115
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800116 /* Host will merge rx buffers for big packets (shake it! shake it!) */
117 bool mergeable_rx_bufs;
118
Jason Wang986a4f42012-12-07 07:04:56 +0000119 /* Has control virtqueue */
120 bool has_cvq;
121
Michael S. Tsirkine7428e92013-07-25 10:20:23 +0930122 /* Host can handle any s/g split between our header and packet data */
123 bool any_header_sg;
124
Jason Wang586d17c2012-04-11 20:43:52 +0000125 /* enable config space updates */
126 bool config_enable;
127
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000128 /* Active statistics */
129 struct virtnet_stats __percpu *stats;
130
Rusty Russell3161e452009-08-26 12:22:32 -0700131 /* Work struct for refilling if we run low on memory. */
132 struct delayed_work refill;
133
Jason Wang586d17c2012-04-11 20:43:52 +0000134 /* Work struct for config space updates */
135 struct work_struct config_work;
136
137 /* Lock for config space updates */
138 struct mutex config_lock;
Jason Wang986a4f42012-12-07 07:04:56 +0000139
140 /* Does the affinity hint is set for virtqueues? */
141 bool affinity_hint_set;
Wanlong Gao47be2472013-01-24 23:51:29 +0000142
Wanlong Gao8de4b2f2013-01-24 23:51:31 +0000143 /* CPU hot plug notifier */
144 struct notifier_block nb;
Rusty Russell296f96f2007-10-22 11:03:37 +1000145};
146
Rusty Russellb3f24692009-09-24 09:59:19 -0600147struct skb_vnet_hdr {
148 union {
149 struct virtio_net_hdr hdr;
150 struct virtio_net_hdr_mrg_rxbuf mhdr;
151 };
152};
153
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000154struct padded_vnet_hdr {
155 struct virtio_net_hdr hdr;
156 /*
157 * virtio_net_hdr should be in a separated sg buffer because of a
158 * QEMU bug, and data sg buffer shares same page with this header sg.
159 * This padding makes next sg 16 byte aligned after virtio_net_hdr.
160 */
161 char padding[6];
162};
163
Jason Wang986a4f42012-12-07 07:04:56 +0000164/* Converting between virtqueue no. and kernel tx/rx queue no.
165 * 0:rx0 1:tx0 2:rx1 3:tx1 ... 2N:rxN 2N+1:txN 2N+2:cvq
166 */
167static int vq2txq(struct virtqueue *vq)
168{
Rusty Russell9d0ca6e2013-03-21 14:17:34 +0000169 return (vq->index - 1) / 2;
Jason Wang986a4f42012-12-07 07:04:56 +0000170}
171
172static int txq2vq(int txq)
173{
174 return txq * 2 + 1;
175}
176
177static int vq2rxq(struct virtqueue *vq)
178{
Rusty Russell9d0ca6e2013-03-21 14:17:34 +0000179 return vq->index / 2;
Jason Wang986a4f42012-12-07 07:04:56 +0000180}
181
182static int rxq2vq(int rxq)
183{
184 return rxq * 2;
185}
186
Rusty Russellb3f24692009-09-24 09:59:19 -0600187static inline struct skb_vnet_hdr *skb_vnet_hdr(struct sk_buff *skb)
Rusty Russell296f96f2007-10-22 11:03:37 +1000188{
Rusty Russellb3f24692009-09-24 09:59:19 -0600189 return (struct skb_vnet_hdr *)skb->cb;
Rusty Russell296f96f2007-10-22 11:03:37 +1000190}
191
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000192/*
193 * private is used to chain pages for big packets, put the whole
194 * most recent used list in the beginning for reuse
195 */
Jason Wange9d74172012-12-07 07:04:55 +0000196static void give_pages(struct receive_queue *rq, struct page *page)
Rusty Russellfb6813f2008-07-25 12:06:01 -0500197{
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000198 struct page *end;
199
Jason Wange9d74172012-12-07 07:04:55 +0000200 /* Find end of list, sew whole thing into vi->rq.pages. */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000201 for (end = page; end->private; end = (struct page *)end->private);
Jason Wange9d74172012-12-07 07:04:55 +0000202 end->private = (unsigned long)rq->pages;
203 rq->pages = page;
Rusty Russellfb6813f2008-07-25 12:06:01 -0500204}
205
Jason Wange9d74172012-12-07 07:04:55 +0000206static struct page *get_a_page(struct receive_queue *rq, gfp_t gfp_mask)
Rusty Russellfb6813f2008-07-25 12:06:01 -0500207{
Jason Wange9d74172012-12-07 07:04:55 +0000208 struct page *p = rq->pages;
Rusty Russellfb6813f2008-07-25 12:06:01 -0500209
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000210 if (p) {
Jason Wange9d74172012-12-07 07:04:55 +0000211 rq->pages = (struct page *)p->private;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000212 /* clear private here, it is used to chain pages */
213 p->private = 0;
214 } else
Rusty Russellfb6813f2008-07-25 12:06:01 -0500215 p = alloc_page(gfp_mask);
216 return p;
217}
218
Jason Wange9d74172012-12-07 07:04:55 +0000219static void skb_xmit_done(struct virtqueue *vq)
Rusty Russell296f96f2007-10-22 11:03:37 +1000220{
Jason Wange9d74172012-12-07 07:04:55 +0000221 struct virtnet_info *vi = vq->vdev->priv;
Rusty Russell296f96f2007-10-22 11:03:37 +1000222
Rusty Russell2cb9c6b2008-02-04 23:50:07 -0500223 /* Suppress further interrupts. */
Jason Wange9d74172012-12-07 07:04:55 +0000224 virtqueue_disable_cb(vq);
Rusty Russell11a3a152008-05-26 17:48:13 +1000225
Rusty Russell363f1512008-06-08 20:51:55 +1000226 /* We were probably waiting for more output buffers. */
Jason Wang986a4f42012-12-07 07:04:56 +0000227 netif_wake_subqueue(vi->dev, vq2txq(vq));
Rusty Russell296f96f2007-10-22 11:03:37 +1000228}
229
Michael Daltonab7db912014-01-16 22:23:27 -0800230static unsigned int mergeable_ctx_to_buf_truesize(unsigned long mrg_ctx)
231{
232 unsigned int truesize = mrg_ctx & (MERGEABLE_BUFFER_ALIGN - 1);
233 return (truesize + 1) * MERGEABLE_BUFFER_ALIGN;
234}
235
236static void *mergeable_ctx_to_buf_address(unsigned long mrg_ctx)
237{
238 return (void *)(mrg_ctx & -MERGEABLE_BUFFER_ALIGN);
239
240}
241
242static unsigned long mergeable_buf_to_ctx(void *buf, unsigned int truesize)
243{
244 unsigned int size = truesize / MERGEABLE_BUFFER_ALIGN;
245 return (unsigned long)buf | (size - 1);
246}
247
Mike Waychison34646452012-01-04 12:52:32 +0000248/* Called from bottom half context */
Jason Wange9d74172012-12-07 07:04:55 +0000249static struct sk_buff *page_to_skb(struct receive_queue *rq,
Michael Dalton2613af02013-10-28 15:44:18 -0700250 struct page *page, unsigned int offset,
251 unsigned int len, unsigned int truesize)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000252{
Jason Wange9d74172012-12-07 07:04:55 +0000253 struct virtnet_info *vi = rq->vq->vdev->priv;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000254 struct sk_buff *skb;
255 struct skb_vnet_hdr *hdr;
Michael Dalton2613af02013-10-28 15:44:18 -0700256 unsigned int copy, hdr_len, hdr_padded_len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000257 char *p;
258
Michael Dalton2613af02013-10-28 15:44:18 -0700259 p = page_address(page) + offset;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000260
261 /* copy small packet so we can reuse these pages for small data */
262 skb = netdev_alloc_skb_ip_align(vi->dev, GOOD_COPY_LEN);
263 if (unlikely(!skb))
264 return NULL;
265
266 hdr = skb_vnet_hdr(skb);
267
268 if (vi->mergeable_rx_bufs) {
269 hdr_len = sizeof hdr->mhdr;
Michael Dalton2613af02013-10-28 15:44:18 -0700270 hdr_padded_len = sizeof hdr->mhdr;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000271 } else {
272 hdr_len = sizeof hdr->hdr;
Michael Dalton2613af02013-10-28 15:44:18 -0700273 hdr_padded_len = sizeof(struct padded_vnet_hdr);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000274 }
275
276 memcpy(hdr, p, hdr_len);
277
278 len -= hdr_len;
Michael Dalton2613af02013-10-28 15:44:18 -0700279 offset += hdr_padded_len;
280 p += hdr_padded_len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000281
282 copy = len;
283 if (copy > skb_tailroom(skb))
284 copy = skb_tailroom(skb);
285 memcpy(skb_put(skb, copy), p, copy);
286
287 len -= copy;
288 offset += copy;
289
Michael Dalton2613af02013-10-28 15:44:18 -0700290 if (vi->mergeable_rx_bufs) {
291 if (len)
292 skb_add_rx_frag(skb, 0, page, offset, len, truesize);
293 else
294 put_page(page);
295 return skb;
296 }
297
Sasha Levine878d782011-09-28 04:40:54 +0000298 /*
299 * Verify that we can indeed put this data into a skb.
300 * This is here to handle cases when the device erroneously
301 * tries to receive more than is possible. This is usually
302 * the case of a broken device.
303 */
304 if (unlikely(len > MAX_SKB_FRAGS * PAGE_SIZE)) {
Amerigo Wangbe443892012-11-08 17:47:28 +0000305 net_dbg_ratelimited("%s: too much data\n", skb->dev->name);
Sasha Levine878d782011-09-28 04:40:54 +0000306 dev_kfree_skb(skb);
307 return NULL;
308 }
Michael Dalton2613af02013-10-28 15:44:18 -0700309 BUG_ON(offset >= PAGE_SIZE);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000310 while (len) {
Michael Dalton2613af02013-10-28 15:44:18 -0700311 unsigned int frag_size = min((unsigned)PAGE_SIZE - offset, len);
312 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page, offset,
313 frag_size, truesize);
314 len -= frag_size;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000315 page = (struct page *)page->private;
316 offset = 0;
317 }
318
319 if (page)
Jason Wange9d74172012-12-07 07:04:55 +0000320 give_pages(rq, page);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000321
322 return skb;
323}
324
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200325static struct sk_buff *receive_small(void *buf, unsigned int len)
326{
327 struct sk_buff * skb = buf;
328
329 len -= sizeof(struct virtio_net_hdr);
330 skb_trim(skb, len);
331
332 return skb;
333}
334
335static struct sk_buff *receive_big(struct net_device *dev,
336 struct receive_queue *rq,
337 void *buf,
338 unsigned int len)
339{
340 struct page *page = buf;
341 struct sk_buff *skb = page_to_skb(rq, page, 0, len, PAGE_SIZE);
342
343 if (unlikely(!skb))
344 goto err;
345
346 return skb;
347
348err:
349 dev->stats.rx_dropped++;
350 give_pages(rq, page);
351 return NULL;
352}
353
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200354static struct sk_buff *receive_mergeable(struct net_device *dev,
355 struct receive_queue *rq,
Michael Daltonab7db912014-01-16 22:23:27 -0800356 unsigned long ctx,
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200357 unsigned int len)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000358{
Michael Daltonab7db912014-01-16 22:23:27 -0800359 void *buf = mergeable_ctx_to_buf_address(ctx);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200360 struct skb_vnet_hdr *hdr = buf;
361 int num_buf = hdr->mhdr.num_buffers;
362 struct page *page = virt_to_head_page(buf);
363 int offset = buf - page_address(page);
Michael Daltonab7db912014-01-16 22:23:27 -0800364 unsigned int truesize = max(len, mergeable_ctx_to_buf_truesize(ctx));
365
Michael Daltonfb518792014-01-16 22:23:26 -0800366 struct sk_buff *head_skb = page_to_skb(rq, page, offset, len, truesize);
Michael Dalton2613af02013-10-28 15:44:18 -0700367 struct sk_buff *curr_skb = head_skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000368
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200369 if (unlikely(!curr_skb))
370 goto err_skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000371 while (--num_buf) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200372 int num_skb_frags;
373
Michael Daltonab7db912014-01-16 22:23:27 -0800374 ctx = (unsigned long)virtqueue_get_buf(rq->vq, &len);
375 if (unlikely(!ctx)) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200376 pr_debug("%s: rx error: %d buffers out of %d missing\n",
377 dev->name, num_buf, hdr->mhdr.num_buffers);
378 dev->stats.rx_length_errors++;
379 goto err_buf;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000380 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200381
Michael Daltonab7db912014-01-16 22:23:27 -0800382 buf = mergeable_ctx_to_buf_address(ctx);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200383 page = virt_to_head_page(buf);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200384
385 num_skb_frags = skb_shinfo(curr_skb)->nr_frags;
Michael Dalton2613af02013-10-28 15:44:18 -0700386 if (unlikely(num_skb_frags == MAX_SKB_FRAGS)) {
387 struct sk_buff *nskb = alloc_skb(0, GFP_ATOMIC);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200388
389 if (unlikely(!nskb))
390 goto err_skb;
Michael Dalton2613af02013-10-28 15:44:18 -0700391 if (curr_skb == head_skb)
392 skb_shinfo(curr_skb)->frag_list = nskb;
393 else
394 curr_skb->next = nskb;
395 curr_skb = nskb;
396 head_skb->truesize += nskb->truesize;
397 num_skb_frags = 0;
398 }
Michael Daltonab7db912014-01-16 22:23:27 -0800399 truesize = max(len, mergeable_ctx_to_buf_truesize(ctx));
Michael Dalton2613af02013-10-28 15:44:18 -0700400 if (curr_skb != head_skb) {
401 head_skb->data_len += len;
402 head_skb->len += len;
Michael Daltonfb518792014-01-16 22:23:26 -0800403 head_skb->truesize += truesize;
Michael Dalton2613af02013-10-28 15:44:18 -0700404 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200405 offset = buf - page_address(page);
Jason Wangba275242013-11-01 14:07:48 +0800406 if (skb_can_coalesce(curr_skb, num_skb_frags, page, offset)) {
407 put_page(page);
408 skb_coalesce_rx_frag(curr_skb, num_skb_frags - 1,
Michael Daltonfb518792014-01-16 22:23:26 -0800409 len, truesize);
Jason Wangba275242013-11-01 14:07:48 +0800410 } else {
411 skb_add_rx_frag(curr_skb, num_skb_frags, page,
Michael Daltonfb518792014-01-16 22:23:26 -0800412 offset, len, truesize);
Jason Wangba275242013-11-01 14:07:48 +0800413 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200414 }
415
Michael Daltonab7db912014-01-16 22:23:27 -0800416 ewma_add(&rq->mrg_avg_pkt_len, head_skb->len);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200417 return head_skb;
418
419err_skb:
420 put_page(page);
421 while (--num_buf) {
Michael Daltonab7db912014-01-16 22:23:27 -0800422 ctx = (unsigned long)virtqueue_get_buf(rq->vq, &len);
423 if (unlikely(!ctx)) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200424 pr_debug("%s: rx error: %d buffers missing\n",
425 dev->name, num_buf);
426 dev->stats.rx_length_errors++;
427 break;
428 }
Michael Daltonab7db912014-01-16 22:23:27 -0800429 page = virt_to_head_page(mergeable_ctx_to_buf_address(ctx));
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200430 put_page(page);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000431 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200432err_buf:
433 dev->stats.rx_dropped++;
434 dev_kfree_skb(head_skb);
435 return NULL;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000436}
437
Jason Wange9d74172012-12-07 07:04:55 +0000438static void receive_buf(struct receive_queue *rq, void *buf, unsigned int len)
Rusty Russell296f96f2007-10-22 11:03:37 +1000439{
Jason Wange9d74172012-12-07 07:04:55 +0000440 struct virtnet_info *vi = rq->vq->vdev->priv;
441 struct net_device *dev = vi->dev;
Eric Dumazet58472a72012-02-13 06:53:41 +0000442 struct virtnet_stats *stats = this_cpu_ptr(vi->stats);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000443 struct sk_buff *skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000444 struct skb_vnet_hdr *hdr;
Rusty Russell296f96f2007-10-22 11:03:37 +1000445
446 if (unlikely(len < sizeof(struct virtio_net_hdr) + ETH_HLEN)) {
447 pr_debug("%s: short packet %i\n", dev->name, len);
448 dev->stats.rx_length_errors++;
Michael Daltonab7db912014-01-16 22:23:27 -0800449 if (vi->mergeable_rx_bufs) {
450 unsigned long ctx = (unsigned long)buf;
451 void *base = mergeable_ctx_to_buf_address(ctx);
452 put_page(virt_to_head_page(base));
453 } else if (vi->big_packets) {
Michael Dalton98bfd232013-12-05 13:14:05 -0800454 give_pages(rq, buf);
Michael Daltonab7db912014-01-16 22:23:27 -0800455 } else {
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000456 dev_kfree_skb(buf);
Michael Daltonab7db912014-01-16 22:23:27 -0800457 }
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000458 return;
Rusty Russell296f96f2007-10-22 11:03:37 +1000459 }
Rusty Russell296f96f2007-10-22 11:03:37 +1000460
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200461 if (vi->mergeable_rx_bufs)
Michael Daltonab7db912014-01-16 22:23:27 -0800462 skb = receive_mergeable(dev, rq, (unsigned long)buf, len);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200463 else if (vi->big_packets)
464 skb = receive_big(dev, rq, buf, len);
465 else
466 skb = receive_small(buf, len);
467
468 if (unlikely(!skb))
469 return;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800470
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000471 hdr = skb_vnet_hdr(skb);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000472
Eric Dumazet83a27052012-06-05 22:35:24 +0000473 u64_stats_update_begin(&stats->rx_syncp);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000474 stats->rx_bytes += skb->len;
475 stats->rx_packets++;
Eric Dumazet83a27052012-06-05 22:35:24 +0000476 u64_stats_update_end(&stats->rx_syncp);
Rusty Russell296f96f2007-10-22 11:03:37 +1000477
Rusty Russellb3f24692009-09-24 09:59:19 -0600478 if (hdr->hdr.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) {
Rusty Russell296f96f2007-10-22 11:03:37 +1000479 pr_debug("Needs csum!\n");
Rusty Russellb3f24692009-09-24 09:59:19 -0600480 if (!skb_partial_csum_set(skb,
481 hdr->hdr.csum_start,
482 hdr->hdr.csum_offset))
Rusty Russell296f96f2007-10-22 11:03:37 +1000483 goto frame_err;
Jason Wang10a8d942011-06-10 00:56:17 +0000484 } else if (hdr->hdr.flags & VIRTIO_NET_HDR_F_DATA_VALID) {
485 skb->ip_summed = CHECKSUM_UNNECESSARY;
Rusty Russell296f96f2007-10-22 11:03:37 +1000486 }
487
Mark McLoughlin23cde762008-06-08 20:49:00 +1000488 skb->protocol = eth_type_trans(skb, dev);
489 pr_debug("Receiving skb proto 0x%04x len %i type %i\n",
490 ntohs(skb->protocol), skb->len, skb->pkt_type);
491
Rusty Russellb3f24692009-09-24 09:59:19 -0600492 if (hdr->hdr.gso_type != VIRTIO_NET_HDR_GSO_NONE) {
Rusty Russell296f96f2007-10-22 11:03:37 +1000493 pr_debug("GSO!\n");
Rusty Russellb3f24692009-09-24 09:59:19 -0600494 switch (hdr->hdr.gso_type & ~VIRTIO_NET_HDR_GSO_ECN) {
Rusty Russell296f96f2007-10-22 11:03:37 +1000495 case VIRTIO_NET_HDR_GSO_TCPV4:
Pravin B Shelarc9af6db2013-02-11 09:27:41 +0000496 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
Rusty Russell296f96f2007-10-22 11:03:37 +1000497 break;
Rusty Russell296f96f2007-10-22 11:03:37 +1000498 case VIRTIO_NET_HDR_GSO_UDP:
Pravin B Shelarc9af6db2013-02-11 09:27:41 +0000499 skb_shinfo(skb)->gso_type = SKB_GSO_UDP;
Rusty Russell296f96f2007-10-22 11:03:37 +1000500 break;
501 case VIRTIO_NET_HDR_GSO_TCPV6:
Pravin B Shelarc9af6db2013-02-11 09:27:41 +0000502 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6;
Rusty Russell296f96f2007-10-22 11:03:37 +1000503 break;
504 default:
Amerigo Wangbe443892012-11-08 17:47:28 +0000505 net_warn_ratelimited("%s: bad gso type %u.\n",
506 dev->name, hdr->hdr.gso_type);
Rusty Russell296f96f2007-10-22 11:03:37 +1000507 goto frame_err;
508 }
509
Rusty Russellb3f24692009-09-24 09:59:19 -0600510 if (hdr->hdr.gso_type & VIRTIO_NET_HDR_GSO_ECN)
Pravin B Shelarc9af6db2013-02-11 09:27:41 +0000511 skb_shinfo(skb)->gso_type |= SKB_GSO_TCP_ECN;
Rusty Russell34a48572008-02-04 23:50:02 -0500512
Rusty Russellb3f24692009-09-24 09:59:19 -0600513 skb_shinfo(skb)->gso_size = hdr->hdr.gso_size;
Rusty Russell296f96f2007-10-22 11:03:37 +1000514 if (skb_shinfo(skb)->gso_size == 0) {
Amerigo Wangbe443892012-11-08 17:47:28 +0000515 net_warn_ratelimited("%s: zero gso size.\n", dev->name);
Rusty Russell296f96f2007-10-22 11:03:37 +1000516 goto frame_err;
517 }
518
519 /* Header must be checked, and gso_segs computed. */
520 skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
521 skb_shinfo(skb)->gso_segs = 0;
522 }
523
524 netif_receive_skb(skb);
525 return;
526
527frame_err:
528 dev->stats.rx_frame_errors++;
Rusty Russell296f96f2007-10-22 11:03:37 +1000529 dev_kfree_skb(skb);
530}
531
Jason Wange9d74172012-12-07 07:04:55 +0000532static int add_recvbuf_small(struct receive_queue *rq, gfp_t gfp)
Rusty Russell296f96f2007-10-22 11:03:37 +1000533{
Jason Wange9d74172012-12-07 07:04:55 +0000534 struct virtnet_info *vi = rq->vq->vdev->priv;
Rusty Russell296f96f2007-10-22 11:03:37 +1000535 struct sk_buff *skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000536 struct skb_vnet_hdr *hdr;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000537 int err;
Rusty Russell296f96f2007-10-22 11:03:37 +1000538
Michael Dalton5061de32013-11-14 10:41:04 -0800539 skb = __netdev_alloc_skb_ip_align(vi->dev, GOOD_PACKET_LEN, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000540 if (unlikely(!skb))
541 return -ENOMEM;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800542
Michael Dalton5061de32013-11-14 10:41:04 -0800543 skb_put(skb, GOOD_PACKET_LEN);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000544
545 hdr = skb_vnet_hdr(skb);
Jason Wange9d74172012-12-07 07:04:55 +0000546 sg_set_buf(rq->sg, &hdr->hdr, sizeof hdr->hdr);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000547
Jason Wange9d74172012-12-07 07:04:55 +0000548 skb_to_sgvec(skb, rq->sg + 1, 0, skb->len);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000549
Rusty Russell9dc7b9e2013-03-20 15:44:28 +1030550 err = virtqueue_add_inbuf(rq->vq, rq->sg, 2, skb, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000551 if (err < 0)
552 dev_kfree_skb(skb);
553
554 return err;
555}
556
Jason Wange9d74172012-12-07 07:04:55 +0000557static int add_recvbuf_big(struct receive_queue *rq, gfp_t gfp)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000558{
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000559 struct page *first, *list = NULL;
560 char *p;
561 int i, err, offset;
562
Jason Wange9d74172012-12-07 07:04:55 +0000563 /* page in rq->sg[MAX_SKB_FRAGS + 1] is list tail */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000564 for (i = MAX_SKB_FRAGS + 1; i > 1; --i) {
Jason Wange9d74172012-12-07 07:04:55 +0000565 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000566 if (!first) {
567 if (list)
Jason Wange9d74172012-12-07 07:04:55 +0000568 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000569 return -ENOMEM;
Rusty Russell3161e452009-08-26 12:22:32 -0700570 }
Jason Wange9d74172012-12-07 07:04:55 +0000571 sg_set_buf(&rq->sg[i], page_address(first), PAGE_SIZE);
Rusty Russell296f96f2007-10-22 11:03:37 +1000572
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000573 /* chain new page in list head to match sg */
574 first->private = (unsigned long)list;
575 list = first;
576 }
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800577
Jason Wange9d74172012-12-07 07:04:55 +0000578 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000579 if (!first) {
Jason Wange9d74172012-12-07 07:04:55 +0000580 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000581 return -ENOMEM;
582 }
583 p = page_address(first);
Herbert Xu97402b92008-04-18 11:24:27 +0800584
Jason Wange9d74172012-12-07 07:04:55 +0000585 /* rq->sg[0], rq->sg[1] share the same page */
586 /* a separated rq->sg[0] for virtio_net_hdr only due to QEMU bug */
587 sg_set_buf(&rq->sg[0], p, sizeof(struct virtio_net_hdr));
Herbert Xu97402b92008-04-18 11:24:27 +0800588
Jason Wange9d74172012-12-07 07:04:55 +0000589 /* rq->sg[1] for data packet, from offset */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000590 offset = sizeof(struct padded_vnet_hdr);
Jason Wange9d74172012-12-07 07:04:55 +0000591 sg_set_buf(&rq->sg[1], p + offset, PAGE_SIZE - offset);
Herbert Xu97402b92008-04-18 11:24:27 +0800592
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000593 /* chain first in list head */
594 first->private = (unsigned long)list;
Rusty Russell9dc7b9e2013-03-20 15:44:28 +1030595 err = virtqueue_add_inbuf(rq->vq, rq->sg, MAX_SKB_FRAGS + 2,
596 first, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000597 if (err < 0)
Jason Wange9d74172012-12-07 07:04:55 +0000598 give_pages(rq, first);
Herbert Xu97402b92008-04-18 11:24:27 +0800599
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000600 return err;
601}
Herbert Xu97402b92008-04-18 11:24:27 +0800602
Jason Wange9d74172012-12-07 07:04:55 +0000603static int add_recvbuf_mergeable(struct receive_queue *rq, gfp_t gfp)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000604{
Michael Daltonab7db912014-01-16 22:23:27 -0800605 const size_t hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
Michael Daltonfb518792014-01-16 22:23:26 -0800606 struct page_frag *alloc_frag = &rq->alloc_frag;
607 char *buf;
Michael Daltonab7db912014-01-16 22:23:27 -0800608 unsigned long ctx;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000609 int err;
Michael Daltonfb518792014-01-16 22:23:26 -0800610 unsigned int len, hole;
Rusty Russell296f96f2007-10-22 11:03:37 +1000611
Michael Daltonab7db912014-01-16 22:23:27 -0800612 len = hdr_len + clamp_t(unsigned int, ewma_read(&rq->mrg_avg_pkt_len),
613 GOOD_PACKET_LEN, PAGE_SIZE - hdr_len);
614 len = ALIGN(len, MERGEABLE_BUFFER_ALIGN);
615 if (unlikely(!skb_page_frag_refill(len, alloc_frag, gfp)))
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000616 return -ENOMEM;
Michael Daltonab7db912014-01-16 22:23:27 -0800617
Michael Daltonfb518792014-01-16 22:23:26 -0800618 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
Michael Daltonab7db912014-01-16 22:23:27 -0800619 ctx = mergeable_buf_to_ctx(buf, len);
Michael Daltonfb518792014-01-16 22:23:26 -0800620 get_page(alloc_frag->page);
Michael Daltonfb518792014-01-16 22:23:26 -0800621 alloc_frag->offset += len;
622 hole = alloc_frag->size - alloc_frag->offset;
Michael Daltonab7db912014-01-16 22:23:27 -0800623 if (hole < len) {
624 /* To avoid internal fragmentation, if there is very likely not
625 * enough space for another buffer, add the remaining space to
626 * the current buffer. This extra space is not included in
627 * the truesize stored in ctx.
628 */
Michael Daltonfb518792014-01-16 22:23:26 -0800629 len += hole;
630 alloc_frag->offset += hole;
631 }
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000632
Michael Daltonfb518792014-01-16 22:23:26 -0800633 sg_init_one(rq->sg, buf, len);
Michael Daltonab7db912014-01-16 22:23:27 -0800634 err = virtqueue_add_inbuf(rq->vq, rq->sg, 1, (void *)ctx, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000635 if (err < 0)
Michael Dalton2613af02013-10-28 15:44:18 -0700636 put_page(virt_to_head_page(buf));
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000637
638 return err;
Rusty Russell296f96f2007-10-22 11:03:37 +1000639}
640
Rusty Russellb2baed62011-12-29 00:42:38 +0000641/*
642 * Returns false if we couldn't fill entirely (OOM).
643 *
644 * Normally run in the receive path, but can also be run from ndo_open
645 * before we're receiving packets, or from refill_work which is
646 * careful to disable receiving (using napi_disable).
647 */
Jason Wange9d74172012-12-07 07:04:55 +0000648static bool try_fill_recv(struct receive_queue *rq, gfp_t gfp)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800649{
Jason Wange9d74172012-12-07 07:04:55 +0000650 struct virtnet_info *vi = rq->vq->vdev->priv;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800651 int err;
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +0000652 bool oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800653
Michael Daltonfb518792014-01-16 22:23:26 -0800654 gfp |= __GFP_COLD;
Amit Shah0aea51c2009-08-26 14:58:28 +0530655 do {
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000656 if (vi->mergeable_rx_bufs)
Jason Wange9d74172012-12-07 07:04:55 +0000657 err = add_recvbuf_mergeable(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000658 else if (vi->big_packets)
Jason Wange9d74172012-12-07 07:04:55 +0000659 err = add_recvbuf_big(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000660 else
Jason Wange9d74172012-12-07 07:04:55 +0000661 err = add_recvbuf_small(rq, gfp);
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800662
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +0000663 oom = err == -ENOMEM;
Rusty Russell9ed4cb02012-10-16 23:56:14 +1030664 if (err)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800665 break;
Linus Torvaldsb7dfde92012-12-20 08:37:04 -0800666 } while (rq->vq->num_free);
Heinz Graalfs67975902013-10-29 09:40:02 +1030667 if (unlikely(!virtqueue_kick(rq->vq)))
668 return false;
Rusty Russell3161e452009-08-26 12:22:32 -0700669 return !oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800670}
671
Rusty Russell18445c42008-02-04 23:49:57 -0500672static void skb_recv_done(struct virtqueue *rvq)
Rusty Russell296f96f2007-10-22 11:03:37 +1000673{
674 struct virtnet_info *vi = rvq->vdev->priv;
Jason Wang986a4f42012-12-07 07:04:56 +0000675 struct receive_queue *rq = &vi->rq[vq2rxq(rvq)];
Jason Wange9d74172012-12-07 07:04:55 +0000676
Rusty Russell18445c42008-02-04 23:49:57 -0500677 /* Schedule NAPI, Suppress further interrupts if successful. */
Jason Wange9d74172012-12-07 07:04:55 +0000678 if (napi_schedule_prep(&rq->napi)) {
Michael S. Tsirkin1915a7122010-04-12 16:19:04 +0300679 virtqueue_disable_cb(rvq);
Jason Wange9d74172012-12-07 07:04:55 +0000680 __napi_schedule(&rq->napi);
Rusty Russell18445c42008-02-04 23:49:57 -0500681 }
Rusty Russell296f96f2007-10-22 11:03:37 +1000682}
683
Jason Wange9d74172012-12-07 07:04:55 +0000684static void virtnet_napi_enable(struct receive_queue *rq)
Bruce Rogers3e9d08e2011-02-10 11:03:31 -0800685{
Jason Wange9d74172012-12-07 07:04:55 +0000686 napi_enable(&rq->napi);
Bruce Rogers3e9d08e2011-02-10 11:03:31 -0800687
688 /* If all buffers were filled by other side before we napi_enabled, we
689 * won't get another interrupt, so process any outstanding packets
690 * now. virtnet_poll wants re-enable the queue, so we disable here.
691 * We synchronize against interrupts via NAPI_STATE_SCHED */
Jason Wange9d74172012-12-07 07:04:55 +0000692 if (napi_schedule_prep(&rq->napi)) {
693 virtqueue_disable_cb(rq->vq);
Michael S. Tsirkinec13ee82012-05-16 10:57:12 +0300694 local_bh_disable();
Jason Wange9d74172012-12-07 07:04:55 +0000695 __napi_schedule(&rq->napi);
Michael S. Tsirkinec13ee82012-05-16 10:57:12 +0300696 local_bh_enable();
Bruce Rogers3e9d08e2011-02-10 11:03:31 -0800697 }
698}
699
Rusty Russell3161e452009-08-26 12:22:32 -0700700static void refill_work(struct work_struct *work)
701{
Jason Wange9d74172012-12-07 07:04:55 +0000702 struct virtnet_info *vi =
703 container_of(work, struct virtnet_info, refill.work);
Rusty Russell3161e452009-08-26 12:22:32 -0700704 bool still_empty;
Jason Wang986a4f42012-12-07 07:04:56 +0000705 int i;
Rusty Russell3161e452009-08-26 12:22:32 -0700706
Sasha Levin55257d72013-04-29 12:00:08 +0930707 for (i = 0; i < vi->curr_queue_pairs; i++) {
Jason Wang986a4f42012-12-07 07:04:56 +0000708 struct receive_queue *rq = &vi->rq[i];
Rusty Russell3161e452009-08-26 12:22:32 -0700709
Jason Wang986a4f42012-12-07 07:04:56 +0000710 napi_disable(&rq->napi);
711 still_empty = !try_fill_recv(rq, GFP_KERNEL);
712 virtnet_napi_enable(rq);
713
714 /* In theory, this can happen: if we don't get any buffers in
715 * we will *never* try to fill again.
716 */
717 if (still_empty)
718 schedule_delayed_work(&vi->refill, HZ/2);
719 }
Rusty Russell3161e452009-08-26 12:22:32 -0700720}
721
Rusty Russell296f96f2007-10-22 11:03:37 +1000722static int virtnet_poll(struct napi_struct *napi, int budget)
723{
Jason Wange9d74172012-12-07 07:04:55 +0000724 struct receive_queue *rq =
725 container_of(napi, struct receive_queue, napi);
726 struct virtnet_info *vi = rq->vq->vdev->priv;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000727 void *buf;
Michael S. Tsirkincbdadbb2013-07-09 08:13:04 +0300728 unsigned int r, len, received = 0;
Rusty Russell296f96f2007-10-22 11:03:37 +1000729
730again:
731 while (received < budget &&
Jason Wange9d74172012-12-07 07:04:55 +0000732 (buf = virtqueue_get_buf(rq->vq, &len)) != NULL) {
733 receive_buf(rq, buf, len);
Rusty Russell296f96f2007-10-22 11:03:37 +1000734 received++;
735 }
736
Jason Wangbe121f42014-01-16 14:45:24 +0800737 if (rq->vq->num_free > virtqueue_get_vring_size(rq->vq) / 2) {
Jason Wange9d74172012-12-07 07:04:55 +0000738 if (!try_fill_recv(rq, GFP_ATOMIC))
Tejun Heo3b07e9c2012-08-20 14:51:24 -0700739 schedule_delayed_work(&vi->refill, 0);
Rusty Russell3161e452009-08-26 12:22:32 -0700740 }
Rusty Russell296f96f2007-10-22 11:03:37 +1000741
Rusty Russell8329d982007-11-19 11:20:43 -0500742 /* Out of packets? */
743 if (received < budget) {
Michael S. Tsirkincbdadbb2013-07-09 08:13:04 +0300744 r = virtqueue_enable_cb_prepare(rq->vq);
Ben Hutchings288379f2009-01-19 16:43:59 -0800745 napi_complete(napi);
Michael S. Tsirkincbdadbb2013-07-09 08:13:04 +0300746 if (unlikely(virtqueue_poll(rq->vq, r)) &&
Joe Perches8e95a202009-12-03 07:58:21 +0000747 napi_schedule_prep(napi)) {
Jason Wange9d74172012-12-07 07:04:55 +0000748 virtqueue_disable_cb(rq->vq);
Ben Hutchings288379f2009-01-19 16:43:59 -0800749 __napi_schedule(napi);
Rusty Russell296f96f2007-10-22 11:03:37 +1000750 goto again;
Christian Borntraeger4265f162008-03-14 14:17:05 +0100751 }
Rusty Russell296f96f2007-10-22 11:03:37 +1000752 }
753
754 return received;
755}
756
Jason Wang986a4f42012-12-07 07:04:56 +0000757static int virtnet_open(struct net_device *dev)
758{
759 struct virtnet_info *vi = netdev_priv(dev);
760 int i;
761
Jason Wange4166622013-05-21 20:03:58 +0000762 for (i = 0; i < vi->max_queue_pairs; i++) {
763 if (i < vi->curr_queue_pairs)
764 /* Make sure we have some buffers: if oom use wq. */
765 if (!try_fill_recv(&vi->rq[i], GFP_KERNEL))
766 schedule_delayed_work(&vi->refill, 0);
Jason Wang986a4f42012-12-07 07:04:56 +0000767 virtnet_napi_enable(&vi->rq[i]);
768 }
769
770 return 0;
771}
772
Linus Torvaldsb7dfde92012-12-20 08:37:04 -0800773static void free_old_xmit_skbs(struct send_queue *sq)
Rusty Russell296f96f2007-10-22 11:03:37 +1000774{
775 struct sk_buff *skb;
Michael S. Tsirkin6ee57bc2012-10-16 23:56:14 +1030776 unsigned int len;
Jason Wange9d74172012-12-07 07:04:55 +0000777 struct virtnet_info *vi = sq->vq->vdev->priv;
Eric Dumazet58472a72012-02-13 06:53:41 +0000778 struct virtnet_stats *stats = this_cpu_ptr(vi->stats);
Rusty Russell296f96f2007-10-22 11:03:37 +1000779
Jason Wange9d74172012-12-07 07:04:55 +0000780 while ((skb = virtqueue_get_buf(sq->vq, &len)) != NULL) {
Rusty Russell296f96f2007-10-22 11:03:37 +1000781 pr_debug("Sent skb %p\n", skb);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000782
Eric Dumazet83a27052012-06-05 22:35:24 +0000783 u64_stats_update_begin(&stats->tx_syncp);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000784 stats->tx_bytes += skb->len;
785 stats->tx_packets++;
Eric Dumazet83a27052012-06-05 22:35:24 +0000786 u64_stats_update_end(&stats->tx_syncp);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000787
Eric Dumazeted79bab2009-10-14 14:36:43 +0000788 dev_kfree_skb_any(skb);
Rusty Russell296f96f2007-10-22 11:03:37 +1000789 }
790}
791
Jason Wange9d74172012-12-07 07:04:55 +0000792static int xmit_skb(struct send_queue *sq, struct sk_buff *skb)
Rusty Russell296f96f2007-10-22 11:03:37 +1000793{
Michael S. Tsirkine7428e92013-07-25 10:20:23 +0930794 struct skb_vnet_hdr *hdr;
Rusty Russell296f96f2007-10-22 11:03:37 +1000795 const unsigned char *dest = ((struct ethhdr *)skb->data)->h_dest;
Jason Wange9d74172012-12-07 07:04:55 +0000796 struct virtnet_info *vi = sq->vq->vdev->priv;
Michael S. Tsirkin7bedc7d2012-10-16 23:56:14 +1030797 unsigned num_sg;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +0930798 unsigned hdr_len;
799 bool can_push;
Rusty Russell296f96f2007-10-22 11:03:37 +1000800
Johannes Berge1749612008-10-27 15:59:26 -0700801 pr_debug("%s: xmit %p %pM\n", vi->dev->name, skb, dest);
Michael S. Tsirkine7428e92013-07-25 10:20:23 +0930802 if (vi->mergeable_rx_bufs)
803 hdr_len = sizeof hdr->mhdr;
804 else
805 hdr_len = sizeof hdr->hdr;
806
807 can_push = vi->any_header_sg &&
808 !((unsigned long)skb->data & (__alignof__(*hdr) - 1)) &&
809 !skb_header_cloned(skb) && skb_headroom(skb) >= hdr_len;
810 /* Even if we can, don't push here yet as this would skew
811 * csum_start offset below. */
812 if (can_push)
813 hdr = (struct skb_vnet_hdr *)(skb->data - hdr_len);
814 else
815 hdr = skb_vnet_hdr(skb);
Rusty Russell296f96f2007-10-22 11:03:37 +1000816
Rusty Russell296f96f2007-10-22 11:03:37 +1000817 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Rusty Russellb3f24692009-09-24 09:59:19 -0600818 hdr->hdr.flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
Michał Mirosław55508d62010-12-14 15:24:08 +0000819 hdr->hdr.csum_start = skb_checksum_start_offset(skb);
Rusty Russellb3f24692009-09-24 09:59:19 -0600820 hdr->hdr.csum_offset = skb->csum_offset;
Rusty Russell296f96f2007-10-22 11:03:37 +1000821 } else {
Rusty Russellb3f24692009-09-24 09:59:19 -0600822 hdr->hdr.flags = 0;
823 hdr->hdr.csum_offset = hdr->hdr.csum_start = 0;
Rusty Russell296f96f2007-10-22 11:03:37 +1000824 }
825
826 if (skb_is_gso(skb)) {
Rusty Russellb3f24692009-09-24 09:59:19 -0600827 hdr->hdr.hdr_len = skb_headlen(skb);
828 hdr->hdr.gso_size = skb_shinfo(skb)->gso_size;
Rusty Russell34a48572008-02-04 23:50:02 -0500829 if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV4)
Rusty Russellb3f24692009-09-24 09:59:19 -0600830 hdr->hdr.gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
Rusty Russell296f96f2007-10-22 11:03:37 +1000831 else if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV6)
Rusty Russellb3f24692009-09-24 09:59:19 -0600832 hdr->hdr.gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
Rusty Russell296f96f2007-10-22 11:03:37 +1000833 else if (skb_shinfo(skb)->gso_type & SKB_GSO_UDP)
Rusty Russellb3f24692009-09-24 09:59:19 -0600834 hdr->hdr.gso_type = VIRTIO_NET_HDR_GSO_UDP;
Rusty Russell296f96f2007-10-22 11:03:37 +1000835 else
836 BUG();
Rusty Russell34a48572008-02-04 23:50:02 -0500837 if (skb_shinfo(skb)->gso_type & SKB_GSO_TCP_ECN)
Rusty Russellb3f24692009-09-24 09:59:19 -0600838 hdr->hdr.gso_type |= VIRTIO_NET_HDR_GSO_ECN;
Rusty Russell296f96f2007-10-22 11:03:37 +1000839 } else {
Rusty Russellb3f24692009-09-24 09:59:19 -0600840 hdr->hdr.gso_type = VIRTIO_NET_HDR_GSO_NONE;
841 hdr->hdr.gso_size = hdr->hdr.hdr_len = 0;
Rusty Russell296f96f2007-10-22 11:03:37 +1000842 }
843
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800844 if (vi->mergeable_rx_bufs)
Michael S. Tsirkine7428e92013-07-25 10:20:23 +0930845 hdr->mhdr.num_buffers = 0;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800846
Michael S. Tsirkine7428e92013-07-25 10:20:23 +0930847 if (can_push) {
848 __skb_push(skb, hdr_len);
849 num_sg = skb_to_sgvec(skb, sq->sg, 0, skb->len);
850 /* Pull header back to avoid skew in tx bytes calculations. */
851 __skb_pull(skb, hdr_len);
852 } else {
853 sg_set_buf(sq->sg, hdr, hdr_len);
854 num_sg = skb_to_sgvec(skb, sq->sg + 1, 0, skb->len) + 1;
855 }
Rusty Russell9dc7b9e2013-03-20 15:44:28 +1030856 return virtqueue_add_outbuf(sq->vq, sq->sg, num_sg, skb, GFP_ATOMIC);
Rusty Russell11a3a152008-05-26 17:48:13 +1000857}
858
Stephen Hemminger424efe92009-08-31 19:50:51 +0000859static netdev_tx_t start_xmit(struct sk_buff *skb, struct net_device *dev)
Rusty Russell99ffc692008-05-02 21:50:46 -0500860{
861 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +0000862 int qnum = skb_get_queue_mapping(skb);
863 struct send_queue *sq = &vi->sq[qnum];
Rusty Russell9ed4cb02012-10-16 23:56:14 +1030864 int err;
Rusty Russell2cb9c6b2008-02-04 23:50:07 -0500865
Rusty Russell2cb9c6b2008-02-04 23:50:07 -0500866 /* Free up any pending old buffers before queueing new ones. */
Jason Wange9d74172012-12-07 07:04:55 +0000867 free_old_xmit_skbs(sq);
Rusty Russell2cb9c6b2008-02-04 23:50:07 -0500868
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -0700869 /* Try to transmit */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -0800870 err = xmit_skb(sq, skb);
Rusty Russell48925e32009-09-24 09:59:20 -0600871
Rusty Russell9ed4cb02012-10-16 23:56:14 +1030872 /* This should not happen! */
Heinz Graalfs67975902013-10-29 09:40:02 +1030873 if (unlikely(err) || unlikely(!virtqueue_kick(sq->vq))) {
Rusty Russell9ed4cb02012-10-16 23:56:14 +1030874 dev->stats.tx_fifo_errors++;
875 if (net_ratelimit())
876 dev_warn(&dev->dev,
Linus Torvaldsb7dfde92012-12-20 08:37:04 -0800877 "Unexpected TXQ (%d) queue failure: %d\n", qnum, err);
Rusty Russell58eba972010-07-02 16:34:01 +0000878 dev->stats.tx_dropped++;
879 kfree_skb(skb);
880 return NETDEV_TX_OK;
Rusty Russell99ffc692008-05-02 21:50:46 -0500881 }
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -0700882
Rusty Russell48925e32009-09-24 09:59:20 -0600883 /* Don't wait up for transmitted skbs to be freed. */
884 skb_orphan(skb);
885 nf_reset(skb);
Rusty Russell99ffc692008-05-02 21:50:46 -0500886
Rusty Russell48925e32009-09-24 09:59:20 -0600887 /* Apparently nice girls don't return TX_BUSY; stop the queue
888 * before it gets out of hand. Naturally, this wastes entries. */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -0800889 if (sq->vq->num_free < 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +0000890 netif_stop_subqueue(dev, qnum);
Jason Wange9d74172012-12-07 07:04:55 +0000891 if (unlikely(!virtqueue_enable_cb_delayed(sq->vq))) {
Rusty Russell48925e32009-09-24 09:59:20 -0600892 /* More just got used, free them then recheck. */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -0800893 free_old_xmit_skbs(sq);
894 if (sq->vq->num_free >= 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +0000895 netif_start_subqueue(dev, qnum);
Jason Wange9d74172012-12-07 07:04:55 +0000896 virtqueue_disable_cb(sq->vq);
Rusty Russell48925e32009-09-24 09:59:20 -0600897 }
898 }
Rusty Russell99ffc692008-05-02 21:50:46 -0500899 }
Rusty Russell48925e32009-09-24 09:59:20 -0600900
901 return NETDEV_TX_OK;
Rusty Russell296f96f2007-10-22 11:03:37 +1000902}
903
Amos Kong40cbfc32013-01-21 01:17:21 +0000904/*
905 * Send command via the control virtqueue and check status. Commands
906 * supported by the hypervisor, as indicated by feature bits, should
stephen hemminger788a8b62013-12-09 16:18:45 -0800907 * never fail unless improperly formatted.
Amos Kong40cbfc32013-01-21 01:17:21 +0000908 */
909static bool virtnet_send_command(struct virtnet_info *vi, u8 class, u8 cmd,
stephen hemmingerd24bae32013-12-09 16:17:40 -0800910 struct scatterlist *out)
Amos Kong40cbfc32013-01-21 01:17:21 +0000911{
Rusty Russellf7bc9592013-03-20 15:44:28 +1030912 struct scatterlist *sgs[4], hdr, stat;
Amos Kong40cbfc32013-01-21 01:17:21 +0000913 struct virtio_net_ctrl_hdr ctrl;
914 virtio_net_ctrl_ack status = ~0;
stephen hemmingerd24bae32013-12-09 16:17:40 -0800915 unsigned out_num = 0, tmp;
Amos Kong40cbfc32013-01-21 01:17:21 +0000916
917 /* Caller should know better */
Rusty Russellf7bc9592013-03-20 15:44:28 +1030918 BUG_ON(!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ));
Amos Kong40cbfc32013-01-21 01:17:21 +0000919
920 ctrl.class = class;
921 ctrl.cmd = cmd;
Rusty Russellf7bc9592013-03-20 15:44:28 +1030922 /* Add header */
923 sg_init_one(&hdr, &ctrl, sizeof(ctrl));
924 sgs[out_num++] = &hdr;
Amos Kong40cbfc32013-01-21 01:17:21 +0000925
Rusty Russellf7bc9592013-03-20 15:44:28 +1030926 if (out)
927 sgs[out_num++] = out;
Amos Kong40cbfc32013-01-21 01:17:21 +0000928
Rusty Russellf7bc9592013-03-20 15:44:28 +1030929 /* Add return status. */
930 sg_init_one(&stat, &status, sizeof(status));
stephen hemmingerd24bae32013-12-09 16:17:40 -0800931 sgs[out_num] = &stat;
Amos Kong40cbfc32013-01-21 01:17:21 +0000932
stephen hemmingerd24bae32013-12-09 16:17:40 -0800933 BUG_ON(out_num + 1 > ARRAY_SIZE(sgs));
934 BUG_ON(virtqueue_add_sgs(vi->cvq, sgs, out_num, 1, vi, GFP_ATOMIC) < 0);
Amos Kong40cbfc32013-01-21 01:17:21 +0000935
Heinz Graalfs67975902013-10-29 09:40:02 +1030936 if (unlikely(!virtqueue_kick(vi->cvq)))
937 return status == VIRTIO_NET_OK;
Amos Kong40cbfc32013-01-21 01:17:21 +0000938
939 /* Spin for a response, the kick causes an ioport write, trapping
940 * into the hypervisor, so the request should be handled immediately.
941 */
Heinz Graalfs047b9b92013-10-29 09:40:47 +1030942 while (!virtqueue_get_buf(vi->cvq, &tmp) &&
943 !virtqueue_is_broken(vi->cvq))
Amos Kong40cbfc32013-01-21 01:17:21 +0000944 cpu_relax();
945
946 return status == VIRTIO_NET_OK;
947}
948
Alex Williamson9c46f6d2009-02-04 16:36:34 -0800949static int virtnet_set_mac_address(struct net_device *dev, void *p)
950{
951 struct virtnet_info *vi = netdev_priv(dev);
952 struct virtio_device *vdev = vi->vdev;
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +0000953 int ret;
Amos Kong7e58d5a2013-01-21 01:17:23 +0000954 struct sockaddr *addr = p;
955 struct scatterlist sg;
Alex Williamson9c46f6d2009-02-04 16:36:34 -0800956
Amos Kong7e58d5a2013-01-21 01:17:23 +0000957 ret = eth_prepare_mac_addr_change(dev, p);
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +0000958 if (ret)
959 return ret;
Alex Williamson9c46f6d2009-02-04 16:36:34 -0800960
Amos Kong7e58d5a2013-01-21 01:17:23 +0000961 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR)) {
962 sg_init_one(&sg, addr->sa_data, dev->addr_len);
963 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -0800964 VIRTIO_NET_CTRL_MAC_ADDR_SET, &sg)) {
Amos Kong7e58d5a2013-01-21 01:17:23 +0000965 dev_warn(&vdev->dev,
966 "Failed to set mac address by vq command.\n");
967 return -EINVAL;
968 }
969 } else if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC)) {
Rusty Russell855e0c52013-10-14 18:11:51 +1030970 unsigned int i;
971
972 /* Naturally, this has an atomicity problem. */
973 for (i = 0; i < dev->addr_len; i++)
974 virtio_cwrite8(vdev,
975 offsetof(struct virtio_net_config, mac) +
976 i, addr->sa_data[i]);
Amos Kong7e58d5a2013-01-21 01:17:23 +0000977 }
978
979 eth_commit_mac_addr_change(dev, p);
Alex Williamson9c46f6d2009-02-04 16:36:34 -0800980
981 return 0;
982}
983
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000984static struct rtnl_link_stats64 *virtnet_stats(struct net_device *dev,
985 struct rtnl_link_stats64 *tot)
986{
987 struct virtnet_info *vi = netdev_priv(dev);
988 int cpu;
989 unsigned int start;
990
991 for_each_possible_cpu(cpu) {
Eric Dumazet58472a72012-02-13 06:53:41 +0000992 struct virtnet_stats *stats = per_cpu_ptr(vi->stats, cpu);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000993 u64 tpackets, tbytes, rpackets, rbytes;
994
995 do {
Kevin Groenevelde3906482012-07-21 06:30:50 +0000996 start = u64_stats_fetch_begin_bh(&stats->tx_syncp);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000997 tpackets = stats->tx_packets;
998 tbytes = stats->tx_bytes;
Kevin Groenevelde3906482012-07-21 06:30:50 +0000999 } while (u64_stats_fetch_retry_bh(&stats->tx_syncp, start));
Eric Dumazet83a27052012-06-05 22:35:24 +00001000
1001 do {
Kevin Groenevelde3906482012-07-21 06:30:50 +00001002 start = u64_stats_fetch_begin_bh(&stats->rx_syncp);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001003 rpackets = stats->rx_packets;
1004 rbytes = stats->rx_bytes;
Kevin Groenevelde3906482012-07-21 06:30:50 +00001005 } while (u64_stats_fetch_retry_bh(&stats->rx_syncp, start));
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001006
1007 tot->rx_packets += rpackets;
1008 tot->tx_packets += tpackets;
1009 tot->rx_bytes += rbytes;
1010 tot->tx_bytes += tbytes;
1011 }
1012
1013 tot->tx_dropped = dev->stats.tx_dropped;
Rick Jones021ac8d2011-11-21 09:28:17 +00001014 tot->tx_fifo_errors = dev->stats.tx_fifo_errors;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001015 tot->rx_dropped = dev->stats.rx_dropped;
1016 tot->rx_length_errors = dev->stats.rx_length_errors;
1017 tot->rx_frame_errors = dev->stats.rx_frame_errors;
1018
1019 return tot;
1020}
1021
Amit Shahda74e892008-02-29 16:24:50 +05301022#ifdef CONFIG_NET_POLL_CONTROLLER
1023static void virtnet_netpoll(struct net_device *dev)
1024{
1025 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001026 int i;
Amit Shahda74e892008-02-29 16:24:50 +05301027
Jason Wang986a4f42012-12-07 07:04:56 +00001028 for (i = 0; i < vi->curr_queue_pairs; i++)
1029 napi_schedule(&vi->rq[i].napi);
Amit Shahda74e892008-02-29 16:24:50 +05301030}
1031#endif
1032
Jason Wang586d17c2012-04-11 20:43:52 +00001033static void virtnet_ack_link_announce(struct virtnet_info *vi)
1034{
1035 rtnl_lock();
1036 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_ANNOUNCE,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001037 VIRTIO_NET_CTRL_ANNOUNCE_ACK, NULL))
Jason Wang586d17c2012-04-11 20:43:52 +00001038 dev_warn(&vi->dev->dev, "Failed to ack link announce.\n");
1039 rtnl_unlock();
1040}
1041
Jason Wang986a4f42012-12-07 07:04:56 +00001042static int virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
1043{
1044 struct scatterlist sg;
1045 struct virtio_net_ctrl_mq s;
1046 struct net_device *dev = vi->dev;
1047
1048 if (!vi->has_cvq || !virtio_has_feature(vi->vdev, VIRTIO_NET_F_MQ))
1049 return 0;
1050
1051 s.virtqueue_pairs = queue_pairs;
1052 sg_init_one(&sg, &s, sizeof(s));
1053
1054 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MQ,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001055 VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET, &sg)) {
Jason Wang986a4f42012-12-07 07:04:56 +00001056 dev_warn(&dev->dev, "Fail to set num of queue pairs to %d\n",
1057 queue_pairs);
1058 return -EINVAL;
Sasha Levin55257d72013-04-29 12:00:08 +09301059 } else {
Jason Wang986a4f42012-12-07 07:04:56 +00001060 vi->curr_queue_pairs = queue_pairs;
Jason Wang35ed1592013-10-15 11:18:59 +08001061 /* virtnet_open() will refill when device is going to up. */
1062 if (dev->flags & IFF_UP)
1063 schedule_delayed_work(&vi->refill, 0);
Sasha Levin55257d72013-04-29 12:00:08 +09301064 }
Jason Wang986a4f42012-12-07 07:04:56 +00001065
1066 return 0;
1067}
1068
Rusty Russell296f96f2007-10-22 11:03:37 +10001069static int virtnet_close(struct net_device *dev)
1070{
1071 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001072 int i;
Rusty Russell296f96f2007-10-22 11:03:37 +10001073
Rusty Russellb2baed62011-12-29 00:42:38 +00001074 /* Make sure refill_work doesn't re-enable napi! */
1075 cancel_delayed_work_sync(&vi->refill);
Jason Wang986a4f42012-12-07 07:04:56 +00001076
1077 for (i = 0; i < vi->max_queue_pairs; i++)
1078 napi_disable(&vi->rq[i].napi);
Rusty Russell296f96f2007-10-22 11:03:37 +10001079
Rusty Russell296f96f2007-10-22 11:03:37 +10001080 return 0;
1081}
1082
Alex Williamson2af76982009-02-04 09:02:40 +00001083static void virtnet_set_rx_mode(struct net_device *dev)
1084{
1085 struct virtnet_info *vi = netdev_priv(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001086 struct scatterlist sg[2];
Alex Williamson2af76982009-02-04 09:02:40 +00001087 u8 promisc, allmulti;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001088 struct virtio_net_ctrl_mac *mac_data;
Jiri Pirkoccffad252009-05-22 23:22:17 +00001089 struct netdev_hw_addr *ha;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001090 int uc_count;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001091 int mc_count;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001092 void *buf;
1093 int i;
Alex Williamson2af76982009-02-04 09:02:40 +00001094
stephen hemminger788a8b62013-12-09 16:18:45 -08001095 /* We can't dynamically set ndo_set_rx_mode, so return gracefully */
Alex Williamson2af76982009-02-04 09:02:40 +00001096 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_RX))
1097 return;
1098
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001099 promisc = ((dev->flags & IFF_PROMISC) != 0);
1100 allmulti = ((dev->flags & IFF_ALLMULTI) != 0);
Alex Williamson2af76982009-02-04 09:02:40 +00001101
Alex Williamson23e258e2009-05-01 17:27:56 +00001102 sg_init_one(sg, &promisc, sizeof(promisc));
Alex Williamson2af76982009-02-04 09:02:40 +00001103
1104 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001105 VIRTIO_NET_CTRL_RX_PROMISC, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001106 dev_warn(&dev->dev, "Failed to %sable promisc mode.\n",
1107 promisc ? "en" : "dis");
1108
Alex Williamson23e258e2009-05-01 17:27:56 +00001109 sg_init_one(sg, &allmulti, sizeof(allmulti));
Alex Williamson2af76982009-02-04 09:02:40 +00001110
1111 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001112 VIRTIO_NET_CTRL_RX_ALLMULTI, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001113 dev_warn(&dev->dev, "Failed to %sable allmulti mode.\n",
1114 allmulti ? "en" : "dis");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001115
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001116 uc_count = netdev_uc_count(dev);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001117 mc_count = netdev_mc_count(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001118 /* MAC filter - use one buffer for both lists */
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001119 buf = kzalloc(((uc_count + mc_count) * ETH_ALEN) +
1120 (2 * sizeof(mac_data->entries)), GFP_ATOMIC);
1121 mac_data = buf;
Joe Perchese68ed8f2013-02-03 17:28:15 +00001122 if (!buf)
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001123 return;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001124
Alex Williamson23e258e2009-05-01 17:27:56 +00001125 sg_init_table(sg, 2);
1126
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001127 /* Store the unicast list and count in the front of the buffer */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001128 mac_data->entries = uc_count;
Jiri Pirkoccffad252009-05-22 23:22:17 +00001129 i = 0;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001130 netdev_for_each_uc_addr(ha, dev)
Jiri Pirkoccffad252009-05-22 23:22:17 +00001131 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001132
1133 sg_set_buf(&sg[0], mac_data,
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001134 sizeof(mac_data->entries) + (uc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001135
1136 /* multicast list and count fill the end */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001137 mac_data = (void *)&mac_data->macs[uc_count][0];
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001138
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001139 mac_data->entries = mc_count;
Jiri Pirko567ec872010-02-23 23:17:07 +00001140 i = 0;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001141 netdev_for_each_mc_addr(ha, dev)
1142 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001143
1144 sg_set_buf(&sg[1], mac_data,
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001145 sizeof(mac_data->entries) + (mc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001146
1147 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001148 VIRTIO_NET_CTRL_MAC_TABLE_SET, sg))
Thomas Huth99e872a2013-11-29 10:02:19 +01001149 dev_warn(&dev->dev, "Failed to set MAC filter table.\n");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001150
1151 kfree(buf);
Alex Williamson2af76982009-02-04 09:02:40 +00001152}
1153
Patrick McHardy80d5c362013-04-19 02:04:28 +00001154static int virtnet_vlan_rx_add_vid(struct net_device *dev,
1155 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001156{
1157 struct virtnet_info *vi = netdev_priv(dev);
1158 struct scatterlist sg;
1159
Alex Williamson23e258e2009-05-01 17:27:56 +00001160 sg_init_one(&sg, &vid, sizeof(vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001161
1162 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001163 VIRTIO_NET_CTRL_VLAN_ADD, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001164 dev_warn(&dev->dev, "Failed to add VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001165 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001166}
1167
Patrick McHardy80d5c362013-04-19 02:04:28 +00001168static int virtnet_vlan_rx_kill_vid(struct net_device *dev,
1169 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001170{
1171 struct virtnet_info *vi = netdev_priv(dev);
1172 struct scatterlist sg;
1173
Alex Williamson23e258e2009-05-01 17:27:56 +00001174 sg_init_one(&sg, &vid, sizeof(vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001175
1176 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001177 VIRTIO_NET_CTRL_VLAN_DEL, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001178 dev_warn(&dev->dev, "Failed to kill VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001179 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001180}
1181
Wanlong Gao8898c212013-01-24 23:51:30 +00001182static void virtnet_clean_affinity(struct virtnet_info *vi, long hcpu)
Jason Wang986a4f42012-12-07 07:04:56 +00001183{
1184 int i;
Wanlong Gao8898c212013-01-24 23:51:30 +00001185
1186 if (vi->affinity_hint_set) {
1187 for (i = 0; i < vi->max_queue_pairs; i++) {
1188 virtqueue_set_affinity(vi->rq[i].vq, -1);
1189 virtqueue_set_affinity(vi->sq[i].vq, -1);
1190 }
1191
1192 vi->affinity_hint_set = false;
1193 }
Wanlong Gao8898c212013-01-24 23:51:30 +00001194}
1195
1196static void virtnet_set_affinity(struct virtnet_info *vi)
Jason Wang986a4f42012-12-07 07:04:56 +00001197{
1198 int i;
Wanlong Gao47be2472013-01-24 23:51:29 +00001199 int cpu;
Jason Wang986a4f42012-12-07 07:04:56 +00001200
1201 /* In multiqueue mode, when the number of cpu is equal to the number of
1202 * queue pairs, we let the queue pairs to be private to one cpu by
1203 * setting the affinity hint to eliminate the contention.
1204 */
Wanlong Gao8898c212013-01-24 23:51:30 +00001205 if (vi->curr_queue_pairs == 1 ||
1206 vi->max_queue_pairs != num_online_cpus()) {
1207 virtnet_clean_affinity(vi, -1);
1208 return;
Jason Wang986a4f42012-12-07 07:04:56 +00001209 }
1210
Wanlong Gao8898c212013-01-24 23:51:30 +00001211 i = 0;
1212 for_each_online_cpu(cpu) {
Jason Wang986a4f42012-12-07 07:04:56 +00001213 virtqueue_set_affinity(vi->rq[i].vq, cpu);
1214 virtqueue_set_affinity(vi->sq[i].vq, cpu);
Jason Wang9bb8ca82013-11-05 18:19:45 +08001215 netif_set_xps_queue(vi->dev, cpumask_of(cpu), i);
Wanlong Gao8898c212013-01-24 23:51:30 +00001216 i++;
Jason Wang986a4f42012-12-07 07:04:56 +00001217 }
1218
Wanlong Gao8898c212013-01-24 23:51:30 +00001219 vi->affinity_hint_set = true;
Jason Wang986a4f42012-12-07 07:04:56 +00001220}
1221
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001222static int virtnet_cpu_callback(struct notifier_block *nfb,
1223 unsigned long action, void *hcpu)
1224{
1225 struct virtnet_info *vi = container_of(nfb, struct virtnet_info, nb);
1226
1227 switch(action & ~CPU_TASKS_FROZEN) {
1228 case CPU_ONLINE:
1229 case CPU_DOWN_FAILED:
1230 case CPU_DEAD:
1231 virtnet_set_affinity(vi);
1232 break;
1233 case CPU_DOWN_PREPARE:
1234 virtnet_clean_affinity(vi, (long)hcpu);
1235 break;
1236 default:
1237 break;
1238 }
Jason Wang3ab098d2013-10-15 11:18:58 +08001239
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001240 return NOTIFY_OK;
Herbert Xua9ea3fc2008-04-18 11:21:42 +08001241}
1242
Rick Jones8f9f4662011-10-19 08:10:59 +00001243static void virtnet_get_ringparam(struct net_device *dev,
1244 struct ethtool_ringparam *ring)
1245{
1246 struct virtnet_info *vi = netdev_priv(dev);
1247
Jason Wang986a4f42012-12-07 07:04:56 +00001248 ring->rx_max_pending = virtqueue_get_vring_size(vi->rq[0].vq);
1249 ring->tx_max_pending = virtqueue_get_vring_size(vi->sq[0].vq);
Rick Jones8f9f4662011-10-19 08:10:59 +00001250 ring->rx_pending = ring->rx_max_pending;
1251 ring->tx_pending = ring->tx_max_pending;
Rick Jones8f9f4662011-10-19 08:10:59 +00001252}
1253
Rick Jones66846042011-11-14 14:17:08 +00001254
1255static void virtnet_get_drvinfo(struct net_device *dev,
1256 struct ethtool_drvinfo *info)
1257{
1258 struct virtnet_info *vi = netdev_priv(dev);
1259 struct virtio_device *vdev = vi->vdev;
1260
1261 strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
1262 strlcpy(info->version, VIRTNET_DRIVER_VERSION, sizeof(info->version));
1263 strlcpy(info->bus_info, virtio_bus_name(vdev), sizeof(info->bus_info));
1264
1265}
1266
Jason Wangd73bcd22012-12-07 07:04:57 +00001267/* TODO: Eliminate OOO packets during switching */
1268static int virtnet_set_channels(struct net_device *dev,
1269 struct ethtool_channels *channels)
1270{
1271 struct virtnet_info *vi = netdev_priv(dev);
1272 u16 queue_pairs = channels->combined_count;
1273 int err;
1274
1275 /* We don't support separate rx/tx channels.
1276 * We don't allow setting 'other' channels.
1277 */
1278 if (channels->rx_count || channels->tx_count || channels->other_count)
1279 return -EINVAL;
1280
1281 if (queue_pairs > vi->max_queue_pairs)
1282 return -EINVAL;
1283
Wanlong Gao47be2472013-01-24 23:51:29 +00001284 get_online_cpus();
Jason Wangd73bcd22012-12-07 07:04:57 +00001285 err = virtnet_set_queues(vi, queue_pairs);
1286 if (!err) {
1287 netif_set_real_num_tx_queues(dev, queue_pairs);
1288 netif_set_real_num_rx_queues(dev, queue_pairs);
1289
Wanlong Gao8898c212013-01-24 23:51:30 +00001290 virtnet_set_affinity(vi);
Jason Wangd73bcd22012-12-07 07:04:57 +00001291 }
Wanlong Gao47be2472013-01-24 23:51:29 +00001292 put_online_cpus();
Jason Wangd73bcd22012-12-07 07:04:57 +00001293
1294 return err;
1295}
1296
1297static void virtnet_get_channels(struct net_device *dev,
1298 struct ethtool_channels *channels)
1299{
1300 struct virtnet_info *vi = netdev_priv(dev);
1301
1302 channels->combined_count = vi->curr_queue_pairs;
1303 channels->max_combined = vi->max_queue_pairs;
1304 channels->max_other = 0;
1305 channels->rx_count = 0;
1306 channels->tx_count = 0;
1307 channels->other_count = 0;
1308}
1309
Stephen Hemminger0fc0b732009-09-02 01:03:33 -07001310static const struct ethtool_ops virtnet_ethtool_ops = {
Rick Jones66846042011-11-14 14:17:08 +00001311 .get_drvinfo = virtnet_get_drvinfo,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001312 .get_link = ethtool_op_get_link,
Rick Jones8f9f4662011-10-19 08:10:59 +00001313 .get_ringparam = virtnet_get_ringparam,
Jason Wangd73bcd22012-12-07 07:04:57 +00001314 .set_channels = virtnet_set_channels,
1315 .get_channels = virtnet_get_channels,
Herbert Xua9ea3fc2008-04-18 11:21:42 +08001316};
1317
Mark McLoughlin39da5812008-11-26 13:58:11 +00001318#define MIN_MTU 68
1319#define MAX_MTU 65535
1320
1321static int virtnet_change_mtu(struct net_device *dev, int new_mtu)
1322{
1323 if (new_mtu < MIN_MTU || new_mtu > MAX_MTU)
1324 return -EINVAL;
1325 dev->mtu = new_mtu;
1326 return 0;
1327}
1328
Stephen Hemminger76288b42009-01-06 10:44:22 -08001329static const struct net_device_ops virtnet_netdev = {
1330 .ndo_open = virtnet_open,
1331 .ndo_stop = virtnet_close,
1332 .ndo_start_xmit = start_xmit,
1333 .ndo_validate_addr = eth_validate_addr,
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001334 .ndo_set_mac_address = virtnet_set_mac_address,
Alex Williamson2af76982009-02-04 09:02:40 +00001335 .ndo_set_rx_mode = virtnet_set_rx_mode,
Stephen Hemminger76288b42009-01-06 10:44:22 -08001336 .ndo_change_mtu = virtnet_change_mtu,
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001337 .ndo_get_stats64 = virtnet_stats,
Alex Williamson1824a982009-05-01 17:31:10 +00001338 .ndo_vlan_rx_add_vid = virtnet_vlan_rx_add_vid,
1339 .ndo_vlan_rx_kill_vid = virtnet_vlan_rx_kill_vid,
Stephen Hemminger76288b42009-01-06 10:44:22 -08001340#ifdef CONFIG_NET_POLL_CONTROLLER
1341 .ndo_poll_controller = virtnet_netpoll,
1342#endif
1343};
1344
Jason Wang586d17c2012-04-11 20:43:52 +00001345static void virtnet_config_changed_work(struct work_struct *work)
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001346{
Jason Wang586d17c2012-04-11 20:43:52 +00001347 struct virtnet_info *vi =
1348 container_of(work, struct virtnet_info, config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001349 u16 v;
1350
Jason Wang586d17c2012-04-11 20:43:52 +00001351 mutex_lock(&vi->config_lock);
1352 if (!vi->config_enable)
1353 goto done;
1354
Rusty Russell855e0c52013-10-14 18:11:51 +10301355 if (virtio_cread_feature(vi->vdev, VIRTIO_NET_F_STATUS,
1356 struct virtio_net_config, status, &v) < 0)
Jason Wang586d17c2012-04-11 20:43:52 +00001357 goto done;
1358
1359 if (v & VIRTIO_NET_S_ANNOUNCE) {
Amerigo Wangee89bab2012-08-09 22:14:56 +00001360 netdev_notify_peers(vi->dev);
Jason Wang586d17c2012-04-11 20:43:52 +00001361 virtnet_ack_link_announce(vi);
1362 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001363
1364 /* Ignore unknown (future) status bits */
1365 v &= VIRTIO_NET_S_LINK_UP;
1366
1367 if (vi->status == v)
Jason Wang586d17c2012-04-11 20:43:52 +00001368 goto done;
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001369
1370 vi->status = v;
1371
1372 if (vi->status & VIRTIO_NET_S_LINK_UP) {
1373 netif_carrier_on(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001374 netif_tx_wake_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001375 } else {
1376 netif_carrier_off(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001377 netif_tx_stop_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001378 }
Jason Wang586d17c2012-04-11 20:43:52 +00001379done:
1380 mutex_unlock(&vi->config_lock);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001381}
1382
1383static void virtnet_config_changed(struct virtio_device *vdev)
1384{
1385 struct virtnet_info *vi = vdev->priv;
1386
Tejun Heo3b07e9c2012-08-20 14:51:24 -07001387 schedule_work(&vi->config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001388}
1389
Jason Wang986a4f42012-12-07 07:04:56 +00001390static void virtnet_free_queues(struct virtnet_info *vi)
1391{
Andrey Vagind4fb84e2013-12-05 18:36:21 +04001392 int i;
1393
1394 for (i = 0; i < vi->max_queue_pairs; i++)
1395 netif_napi_del(&vi->rq[i].napi);
1396
Jason Wang986a4f42012-12-07 07:04:56 +00001397 kfree(vi->rq);
1398 kfree(vi->sq);
1399}
1400
1401static void free_receive_bufs(struct virtnet_info *vi)
1402{
1403 int i;
1404
1405 for (i = 0; i < vi->max_queue_pairs; i++) {
1406 while (vi->rq[i].pages)
1407 __free_pages(get_a_page(&vi->rq[i], GFP_KERNEL), 0);
1408 }
1409}
1410
Michael Daltonfb518792014-01-16 22:23:26 -08001411static void free_receive_page_frags(struct virtnet_info *vi)
1412{
1413 int i;
1414 for (i = 0; i < vi->max_queue_pairs; i++)
1415 if (vi->rq[i].alloc_frag.page)
1416 put_page(vi->rq[i].alloc_frag.page);
1417}
1418
Jason Wang986a4f42012-12-07 07:04:56 +00001419static void free_unused_bufs(struct virtnet_info *vi)
1420{
1421 void *buf;
1422 int i;
1423
1424 for (i = 0; i < vi->max_queue_pairs; i++) {
1425 struct virtqueue *vq = vi->sq[i].vq;
1426 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL)
1427 dev_kfree_skb(buf);
1428 }
1429
1430 for (i = 0; i < vi->max_queue_pairs; i++) {
1431 struct virtqueue *vq = vi->rq[i].vq;
1432
1433 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
Michael Daltonab7db912014-01-16 22:23:27 -08001434 if (vi->mergeable_rx_bufs) {
1435 unsigned long ctx = (unsigned long)buf;
1436 void *base = mergeable_ctx_to_buf_address(ctx);
1437 put_page(virt_to_head_page(base));
1438 } else if (vi->big_packets) {
Andrey Vaginfa9fac12013-12-05 18:36:20 +04001439 give_pages(&vi->rq[i], buf);
Michael Daltonab7db912014-01-16 22:23:27 -08001440 } else {
Jason Wang986a4f42012-12-07 07:04:56 +00001441 dev_kfree_skb(buf);
Michael Daltonab7db912014-01-16 22:23:27 -08001442 }
Jason Wang986a4f42012-12-07 07:04:56 +00001443 }
Jason Wang986a4f42012-12-07 07:04:56 +00001444 }
1445}
1446
Jason Wange9d74172012-12-07 07:04:55 +00001447static void virtnet_del_vqs(struct virtnet_info *vi)
1448{
1449 struct virtio_device *vdev = vi->vdev;
1450
Wanlong Gao8898c212013-01-24 23:51:30 +00001451 virtnet_clean_affinity(vi, -1);
Jason Wang986a4f42012-12-07 07:04:56 +00001452
Jason Wange9d74172012-12-07 07:04:55 +00001453 vdev->config->del_vqs(vdev);
Jason Wang986a4f42012-12-07 07:04:56 +00001454
1455 virtnet_free_queues(vi);
1456}
1457
1458static int virtnet_find_vqs(struct virtnet_info *vi)
1459{
1460 vq_callback_t **callbacks;
1461 struct virtqueue **vqs;
1462 int ret = -ENOMEM;
1463 int i, total_vqs;
1464 const char **names;
1465
1466 /* We expect 1 RX virtqueue followed by 1 TX virtqueue, followed by
1467 * possible N-1 RX/TX queue pairs used in multiqueue mode, followed by
1468 * possible control vq.
1469 */
1470 total_vqs = vi->max_queue_pairs * 2 +
1471 virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ);
1472
1473 /* Allocate space for find_vqs parameters */
1474 vqs = kzalloc(total_vqs * sizeof(*vqs), GFP_KERNEL);
1475 if (!vqs)
1476 goto err_vq;
1477 callbacks = kmalloc(total_vqs * sizeof(*callbacks), GFP_KERNEL);
1478 if (!callbacks)
1479 goto err_callback;
1480 names = kmalloc(total_vqs * sizeof(*names), GFP_KERNEL);
1481 if (!names)
1482 goto err_names;
1483
1484 /* Parameters for control virtqueue, if any */
1485 if (vi->has_cvq) {
1486 callbacks[total_vqs - 1] = NULL;
1487 names[total_vqs - 1] = "control";
1488 }
1489
1490 /* Allocate/initialize parameters for send/receive virtqueues */
1491 for (i = 0; i < vi->max_queue_pairs; i++) {
1492 callbacks[rxq2vq(i)] = skb_recv_done;
1493 callbacks[txq2vq(i)] = skb_xmit_done;
1494 sprintf(vi->rq[i].name, "input.%d", i);
1495 sprintf(vi->sq[i].name, "output.%d", i);
1496 names[rxq2vq(i)] = vi->rq[i].name;
1497 names[txq2vq(i)] = vi->sq[i].name;
1498 }
1499
1500 ret = vi->vdev->config->find_vqs(vi->vdev, total_vqs, vqs, callbacks,
1501 names);
1502 if (ret)
1503 goto err_find;
1504
1505 if (vi->has_cvq) {
1506 vi->cvq = vqs[total_vqs - 1];
1507 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VLAN))
Patrick McHardyf6469682013-04-19 02:04:27 +00001508 vi->dev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
Jason Wang986a4f42012-12-07 07:04:56 +00001509 }
1510
1511 for (i = 0; i < vi->max_queue_pairs; i++) {
1512 vi->rq[i].vq = vqs[rxq2vq(i)];
1513 vi->sq[i].vq = vqs[txq2vq(i)];
1514 }
1515
1516 kfree(names);
1517 kfree(callbacks);
1518 kfree(vqs);
1519
1520 return 0;
1521
1522err_find:
1523 kfree(names);
1524err_names:
1525 kfree(callbacks);
1526err_callback:
1527 kfree(vqs);
1528err_vq:
1529 return ret;
1530}
1531
1532static int virtnet_alloc_queues(struct virtnet_info *vi)
1533{
1534 int i;
1535
1536 vi->sq = kzalloc(sizeof(*vi->sq) * vi->max_queue_pairs, GFP_KERNEL);
1537 if (!vi->sq)
1538 goto err_sq;
1539 vi->rq = kzalloc(sizeof(*vi->rq) * vi->max_queue_pairs, GFP_KERNEL);
Amerigo Wang008d4272012-12-10 02:24:08 +00001540 if (!vi->rq)
Jason Wang986a4f42012-12-07 07:04:56 +00001541 goto err_rq;
1542
1543 INIT_DELAYED_WORK(&vi->refill, refill_work);
1544 for (i = 0; i < vi->max_queue_pairs; i++) {
1545 vi->rq[i].pages = NULL;
1546 netif_napi_add(vi->dev, &vi->rq[i].napi, virtnet_poll,
1547 napi_weight);
1548
1549 sg_init_table(vi->rq[i].sg, ARRAY_SIZE(vi->rq[i].sg));
Michael Daltonab7db912014-01-16 22:23:27 -08001550 ewma_init(&vi->rq[i].mrg_avg_pkt_len, 1, RECEIVE_AVG_WEIGHT);
Jason Wang986a4f42012-12-07 07:04:56 +00001551 sg_init_table(vi->sq[i].sg, ARRAY_SIZE(vi->sq[i].sg));
1552 }
1553
1554 return 0;
1555
1556err_rq:
1557 kfree(vi->sq);
1558err_sq:
1559 return -ENOMEM;
Jason Wange9d74172012-12-07 07:04:55 +00001560}
1561
Amit Shah3f9c10b2011-12-22 16:58:31 +05301562static int init_vqs(struct virtnet_info *vi)
1563{
Jason Wang986a4f42012-12-07 07:04:56 +00001564 int ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05301565
Jason Wang986a4f42012-12-07 07:04:56 +00001566 /* Allocate send & receive queues */
1567 ret = virtnet_alloc_queues(vi);
1568 if (ret)
1569 goto err;
Amit Shah3f9c10b2011-12-22 16:58:31 +05301570
Jason Wang986a4f42012-12-07 07:04:56 +00001571 ret = virtnet_find_vqs(vi);
1572 if (ret)
1573 goto err_free;
Amit Shah3f9c10b2011-12-22 16:58:31 +05301574
Wanlong Gao47be2472013-01-24 23:51:29 +00001575 get_online_cpus();
Wanlong Gao8898c212013-01-24 23:51:30 +00001576 virtnet_set_affinity(vi);
Wanlong Gao47be2472013-01-24 23:51:29 +00001577 put_online_cpus();
1578
Amit Shah3f9c10b2011-12-22 16:58:31 +05301579 return 0;
Jason Wang986a4f42012-12-07 07:04:56 +00001580
1581err_free:
1582 virtnet_free_queues(vi);
1583err:
1584 return ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05301585}
1586
Rusty Russell296f96f2007-10-22 11:03:37 +10001587static int virtnet_probe(struct virtio_device *vdev)
1588{
Jason Wang986a4f42012-12-07 07:04:56 +00001589 int i, err;
Rusty Russell296f96f2007-10-22 11:03:37 +10001590 struct net_device *dev;
1591 struct virtnet_info *vi;
Jason Wang986a4f42012-12-07 07:04:56 +00001592 u16 max_queue_pairs;
1593
1594 /* Find if host supports multiqueue virtio_net device */
Rusty Russell855e0c52013-10-14 18:11:51 +10301595 err = virtio_cread_feature(vdev, VIRTIO_NET_F_MQ,
1596 struct virtio_net_config,
1597 max_virtqueue_pairs, &max_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00001598
1599 /* We need at least 2 queue's */
1600 if (err || max_queue_pairs < VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN ||
1601 max_queue_pairs > VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX ||
1602 !virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
1603 max_queue_pairs = 1;
Rusty Russell296f96f2007-10-22 11:03:37 +10001604
1605 /* Allocate ourselves a network device with room for our info */
Jason Wang986a4f42012-12-07 07:04:56 +00001606 dev = alloc_etherdev_mq(sizeof(struct virtnet_info), max_queue_pairs);
Rusty Russell296f96f2007-10-22 11:03:37 +10001607 if (!dev)
1608 return -ENOMEM;
1609
1610 /* Set up network device as normal. */
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00001611 dev->priv_flags |= IFF_UNICAST_FLT | IFF_LIVE_ADDR_CHANGE;
Stephen Hemminger76288b42009-01-06 10:44:22 -08001612 dev->netdev_ops = &virtnet_netdev;
Rusty Russell296f96f2007-10-22 11:03:37 +10001613 dev->features = NETIF_F_HIGHDMA;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001614
Herbert Xua9ea3fc2008-04-18 11:21:42 +08001615 SET_ETHTOOL_OPS(dev, &virtnet_ethtool_ops);
Rusty Russell296f96f2007-10-22 11:03:37 +10001616 SET_NETDEV_DEV(dev, &vdev->dev);
1617
1618 /* Do we support "hardware" checksums? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00001619 if (virtio_has_feature(vdev, VIRTIO_NET_F_CSUM)) {
Rusty Russell296f96f2007-10-22 11:03:37 +10001620 /* This opens up the world of extra features. */
Michał Mirosław98e778c2011-03-31 01:01:35 +00001621 dev->hw_features |= NETIF_F_HW_CSUM|NETIF_F_SG|NETIF_F_FRAGLIST;
1622 if (csum)
1623 dev->features |= NETIF_F_HW_CSUM|NETIF_F_SG|NETIF_F_FRAGLIST;
1624
1625 if (virtio_has_feature(vdev, VIRTIO_NET_F_GSO)) {
1626 dev->hw_features |= NETIF_F_TSO | NETIF_F_UFO
Rusty Russell34a48572008-02-04 23:50:02 -05001627 | NETIF_F_TSO_ECN | NETIF_F_TSO6;
1628 }
Rusty Russell5539ae92008-05-02 21:50:46 -05001629 /* Individual feature bits: what can host handle? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00001630 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO4))
1631 dev->hw_features |= NETIF_F_TSO;
1632 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO6))
1633 dev->hw_features |= NETIF_F_TSO6;
1634 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_ECN))
1635 dev->hw_features |= NETIF_F_TSO_ECN;
1636 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_UFO))
1637 dev->hw_features |= NETIF_F_UFO;
1638
1639 if (gso)
1640 dev->features |= dev->hw_features & (NETIF_F_ALL_TSO|NETIF_F_UFO);
1641 /* (!csum && gso) case will be fixed by register_netdev() */
Rusty Russell296f96f2007-10-22 11:03:37 +10001642 }
Thomas Huth4f491292013-08-27 17:09:02 +02001643 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_CSUM))
1644 dev->features |= NETIF_F_RXCSUM;
Rusty Russell296f96f2007-10-22 11:03:37 +10001645
Jason Wang4fda8302013-04-10 23:32:21 +00001646 dev->vlan_features = dev->features;
1647
Rusty Russell296f96f2007-10-22 11:03:37 +10001648 /* Configuration may specify what MAC to use. Otherwise random. */
Rusty Russell855e0c52013-10-14 18:11:51 +10301649 if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC))
1650 virtio_cread_bytes(vdev,
1651 offsetof(struct virtio_net_config, mac),
1652 dev->dev_addr, dev->addr_len);
1653 else
Danny Kukawkaf2cedb62012-02-15 06:45:39 +00001654 eth_hw_addr_random(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10001655
1656 /* Set up our device-specific information */
1657 vi = netdev_priv(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10001658 vi->dev = dev;
1659 vi->vdev = vdev;
Christian Borntraegerd9d5dcc2008-02-18 10:02:51 +01001660 vdev->priv = vi;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001661 vi->stats = alloc_percpu(struct virtnet_stats);
1662 err = -ENOMEM;
1663 if (vi->stats == NULL)
1664 goto free;
1665
John Stultz827da442013-10-07 15:51:58 -07001666 for_each_possible_cpu(i) {
1667 struct virtnet_stats *virtnet_stats;
1668 virtnet_stats = per_cpu_ptr(vi->stats, i);
1669 u64_stats_init(&virtnet_stats->tx_syncp);
1670 u64_stats_init(&virtnet_stats->rx_syncp);
1671 }
1672
Jason Wang586d17c2012-04-11 20:43:52 +00001673 mutex_init(&vi->config_lock);
1674 vi->config_enable = true;
1675 INIT_WORK(&vi->config_work, virtnet_config_changed_work);
Rusty Russell296f96f2007-10-22 11:03:37 +10001676
Herbert Xu97402b92008-04-18 11:24:27 +08001677 /* If we can receive ANY GSO packets, we must allocate large ones. */
Joe Perches8e95a202009-12-03 07:58:21 +00001678 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) ||
1679 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6) ||
1680 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_ECN))
Herbert Xu97402b92008-04-18 11:24:27 +08001681 vi->big_packets = true;
1682
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001683 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF))
1684 vi->mergeable_rx_bufs = true;
1685
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301686 if (virtio_has_feature(vdev, VIRTIO_F_ANY_LAYOUT))
1687 vi->any_header_sg = true;
1688
Jason Wang986a4f42012-12-07 07:04:56 +00001689 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
1690 vi->has_cvq = true;
1691
1692 /* Use single tx/rx queue pair as default */
1693 vi->curr_queue_pairs = 1;
1694 vi->max_queue_pairs = max_queue_pairs;
1695
1696 /* Allocate/initialize the rx/tx queues, and invoke find_vqs */
Amit Shah3f9c10b2011-12-22 16:58:31 +05301697 err = init_vqs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06001698 if (err)
Jason Wang9bb8ca82013-11-05 18:19:45 +08001699 goto free_stats;
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06001700
Zhi Yong Wu0f13b662013-11-18 21:19:27 +08001701 netif_set_real_num_tx_queues(dev, vi->curr_queue_pairs);
1702 netif_set_real_num_rx_queues(dev, vi->curr_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00001703
Rusty Russell296f96f2007-10-22 11:03:37 +10001704 err = register_netdev(dev);
1705 if (err) {
1706 pr_debug("virtio_net: registering device failed\n");
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06001707 goto free_vqs;
Rusty Russell296f96f2007-10-22 11:03:37 +10001708 }
Rusty Russellb3369c12008-02-04 23:50:02 -05001709
1710 /* Last of all, set up some receive buffers. */
Sasha Levin55257d72013-04-29 12:00:08 +09301711 for (i = 0; i < vi->curr_queue_pairs; i++) {
Jason Wang986a4f42012-12-07 07:04:56 +00001712 try_fill_recv(&vi->rq[i], GFP_KERNEL);
Rusty Russellb3369c12008-02-04 23:50:02 -05001713
Jason Wang986a4f42012-12-07 07:04:56 +00001714 /* If we didn't even get one input buffer, we're useless. */
Jason Wangbe121f42014-01-16 14:45:24 +08001715 if (vi->rq[i].vq->num_free ==
1716 virtqueue_get_vring_size(vi->rq[i].vq)) {
Jason Wang986a4f42012-12-07 07:04:56 +00001717 free_unused_bufs(vi);
1718 err = -ENOMEM;
1719 goto free_recv_bufs;
1720 }
Rusty Russellb3369c12008-02-04 23:50:02 -05001721 }
1722
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001723 vi->nb.notifier_call = &virtnet_cpu_callback;
1724 err = register_hotcpu_notifier(&vi->nb);
1725 if (err) {
1726 pr_debug("virtio_net: registering cpu notifier failed\n");
1727 goto free_recv_bufs;
1728 }
1729
Jason Wang167c25e2010-11-10 14:45:41 +00001730 /* Assume link up if device can't report link status,
1731 otherwise get link status from config. */
1732 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STATUS)) {
1733 netif_carrier_off(dev);
Tejun Heo3b07e9c2012-08-20 14:51:24 -07001734 schedule_work(&vi->config_work);
Jason Wang167c25e2010-11-10 14:45:41 +00001735 } else {
1736 vi->status = VIRTIO_NET_S_LINK_UP;
1737 netif_carrier_on(dev);
1738 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001739
Jason Wang986a4f42012-12-07 07:04:56 +00001740 pr_debug("virtnet: registered device %s with %d RX and TX vq's\n",
1741 dev->name, max_queue_pairs);
1742
Rusty Russell296f96f2007-10-22 11:03:37 +10001743 return 0;
1744
Jason Wang986a4f42012-12-07 07:04:56 +00001745free_recv_bufs:
1746 free_receive_bufs(vi);
Rusty Russellb3369c12008-02-04 23:50:02 -05001747 unregister_netdev(dev);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06001748free_vqs:
Jason Wang986a4f42012-12-07 07:04:56 +00001749 cancel_delayed_work_sync(&vi->refill);
Michael Daltonfb518792014-01-16 22:23:26 -08001750 free_receive_page_frags(vi);
Jason Wange9d74172012-12-07 07:04:55 +00001751 virtnet_del_vqs(vi);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001752free_stats:
1753 free_percpu(vi->stats);
Rusty Russell296f96f2007-10-22 11:03:37 +10001754free:
1755 free_netdev(dev);
1756 return err;
1757}
1758
Amit Shah04486ed2011-12-22 16:58:32 +05301759static void remove_vq_common(struct virtnet_info *vi)
Rusty Russell296f96f2007-10-22 11:03:37 +10001760{
Amit Shah04486ed2011-12-22 16:58:32 +05301761 vi->vdev->config->reset(vi->vdev);
Shirley Ma830a8a92010-02-08 14:14:42 +00001762
1763 /* Free unused buffers in both send and recv, if any. */
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001764 free_unused_bufs(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05001765
Jason Wang986a4f42012-12-07 07:04:56 +00001766 free_receive_bufs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06001767
Michael Daltonfb518792014-01-16 22:23:26 -08001768 free_receive_page_frags(vi);
1769
Jason Wang986a4f42012-12-07 07:04:56 +00001770 virtnet_del_vqs(vi);
Amit Shah04486ed2011-12-22 16:58:32 +05301771}
1772
Bill Pemberton8cc085d2012-12-03 09:24:15 -05001773static void virtnet_remove(struct virtio_device *vdev)
Amit Shah04486ed2011-12-22 16:58:32 +05301774{
1775 struct virtnet_info *vi = vdev->priv;
1776
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001777 unregister_hotcpu_notifier(&vi->nb);
1778
Jason Wang586d17c2012-04-11 20:43:52 +00001779 /* Prevent config work handler from accessing the device. */
1780 mutex_lock(&vi->config_lock);
1781 vi->config_enable = false;
1782 mutex_unlock(&vi->config_lock);
1783
Amit Shah04486ed2011-12-22 16:58:32 +05301784 unregister_netdev(vi->dev);
1785
1786 remove_vq_common(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05001787
Jason Wang586d17c2012-04-11 20:43:52 +00001788 flush_work(&vi->config_work);
1789
Krishna Kumar2e66f552011-07-20 03:56:02 +00001790 free_percpu(vi->stats);
Rusty Russell74b25532007-11-19 11:20:42 -05001791 free_netdev(vi->dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10001792}
1793
Aaron Lu89107002013-09-17 09:25:23 +09301794#ifdef CONFIG_PM_SLEEP
Amit Shah0741bcb2011-12-22 16:58:33 +05301795static int virtnet_freeze(struct virtio_device *vdev)
1796{
1797 struct virtnet_info *vi = vdev->priv;
Jason Wang986a4f42012-12-07 07:04:56 +00001798 int i;
Amit Shah0741bcb2011-12-22 16:58:33 +05301799
Jason Wangec9debb2013-10-29 15:11:07 +08001800 unregister_hotcpu_notifier(&vi->nb);
1801
Jason Wang586d17c2012-04-11 20:43:52 +00001802 /* Prevent config work handler from accessing the device */
1803 mutex_lock(&vi->config_lock);
1804 vi->config_enable = false;
1805 mutex_unlock(&vi->config_lock);
1806
Amit Shah0741bcb2011-12-22 16:58:33 +05301807 netif_device_detach(vi->dev);
1808 cancel_delayed_work_sync(&vi->refill);
1809
1810 if (netif_running(vi->dev))
Jason Wang986a4f42012-12-07 07:04:56 +00001811 for (i = 0; i < vi->max_queue_pairs; i++) {
1812 napi_disable(&vi->rq[i].napi);
1813 netif_napi_del(&vi->rq[i].napi);
1814 }
Amit Shah0741bcb2011-12-22 16:58:33 +05301815
1816 remove_vq_common(vi);
1817
Jason Wang586d17c2012-04-11 20:43:52 +00001818 flush_work(&vi->config_work);
1819
Amit Shah0741bcb2011-12-22 16:58:33 +05301820 return 0;
1821}
1822
1823static int virtnet_restore(struct virtio_device *vdev)
1824{
1825 struct virtnet_info *vi = vdev->priv;
Jason Wang986a4f42012-12-07 07:04:56 +00001826 int err, i;
Amit Shah0741bcb2011-12-22 16:58:33 +05301827
1828 err = init_vqs(vi);
1829 if (err)
1830 return err;
1831
Jason Wang6cd4ce02013-12-30 11:34:40 +08001832 if (netif_running(vi->dev)) {
1833 for (i = 0; i < vi->curr_queue_pairs; i++)
1834 if (!try_fill_recv(&vi->rq[i], GFP_KERNEL))
1835 schedule_delayed_work(&vi->refill, 0);
1836
Jason Wang986a4f42012-12-07 07:04:56 +00001837 for (i = 0; i < vi->max_queue_pairs; i++)
1838 virtnet_napi_enable(&vi->rq[i]);
Jason Wang6cd4ce02013-12-30 11:34:40 +08001839 }
Amit Shah0741bcb2011-12-22 16:58:33 +05301840
1841 netif_device_attach(vi->dev);
1842
Jason Wang586d17c2012-04-11 20:43:52 +00001843 mutex_lock(&vi->config_lock);
1844 vi->config_enable = true;
1845 mutex_unlock(&vi->config_lock);
1846
Jason Wang35ed1592013-10-15 11:18:59 +08001847 rtnl_lock();
Jason Wang986a4f42012-12-07 07:04:56 +00001848 virtnet_set_queues(vi, vi->curr_queue_pairs);
Jason Wang35ed1592013-10-15 11:18:59 +08001849 rtnl_unlock();
Jason Wang986a4f42012-12-07 07:04:56 +00001850
Jason Wangec9debb2013-10-29 15:11:07 +08001851 err = register_hotcpu_notifier(&vi->nb);
1852 if (err)
1853 return err;
1854
Amit Shah0741bcb2011-12-22 16:58:33 +05301855 return 0;
1856}
1857#endif
1858
Rusty Russell296f96f2007-10-22 11:03:37 +10001859static struct virtio_device_id id_table[] = {
1860 { VIRTIO_ID_NET, VIRTIO_DEV_ANY_ID },
1861 { 0 },
1862};
1863
Rusty Russellc45a6812008-05-02 21:50:50 -05001864static unsigned int features[] = {
Mark McLoughlin5e4fe5c2008-07-08 17:10:42 +10001865 VIRTIO_NET_F_CSUM, VIRTIO_NET_F_GUEST_CSUM,
1866 VIRTIO_NET_F_GSO, VIRTIO_NET_F_MAC,
Rusty Russellc45a6812008-05-02 21:50:50 -05001867 VIRTIO_NET_F_HOST_TSO4, VIRTIO_NET_F_HOST_UFO, VIRTIO_NET_F_HOST_TSO6,
Herbert Xu97402b92008-04-18 11:24:27 +08001868 VIRTIO_NET_F_HOST_ECN, VIRTIO_NET_F_GUEST_TSO4, VIRTIO_NET_F_GUEST_TSO6,
Sridhar Samudrala5c516752009-07-14 14:21:02 +00001869 VIRTIO_NET_F_GUEST_ECN, VIRTIO_NET_F_GUEST_UFO,
Alex Williamson2a41f712009-02-04 09:02:34 +00001870 VIRTIO_NET_F_MRG_RXBUF, VIRTIO_NET_F_STATUS, VIRTIO_NET_F_CTRL_VQ,
Alex Williamson0bde95692009-02-04 09:02:50 +00001871 VIRTIO_NET_F_CTRL_RX, VIRTIO_NET_F_CTRL_VLAN,
Jason Wang986a4f42012-12-07 07:04:56 +00001872 VIRTIO_NET_F_GUEST_ANNOUNCE, VIRTIO_NET_F_MQ,
Amos Kong7e58d5a2013-01-21 01:17:23 +00001873 VIRTIO_NET_F_CTRL_MAC_ADDR,
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301874 VIRTIO_F_ANY_LAYOUT,
Rusty Russellc45a6812008-05-02 21:50:50 -05001875};
1876
Uwe Kleine-König22402522009-11-05 01:32:44 -08001877static struct virtio_driver virtio_net_driver = {
Rusty Russellc45a6812008-05-02 21:50:50 -05001878 .feature_table = features,
1879 .feature_table_size = ARRAY_SIZE(features),
Rusty Russell296f96f2007-10-22 11:03:37 +10001880 .driver.name = KBUILD_MODNAME,
1881 .driver.owner = THIS_MODULE,
1882 .id_table = id_table,
1883 .probe = virtnet_probe,
Bill Pemberton8cc085d2012-12-03 09:24:15 -05001884 .remove = virtnet_remove,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001885 .config_changed = virtnet_config_changed,
Aaron Lu89107002013-09-17 09:25:23 +09301886#ifdef CONFIG_PM_SLEEP
Amit Shah0741bcb2011-12-22 16:58:33 +05301887 .freeze = virtnet_freeze,
1888 .restore = virtnet_restore,
1889#endif
Rusty Russell296f96f2007-10-22 11:03:37 +10001890};
1891
Rusty Russellb2a17022013-02-13 16:59:28 +10301892module_virtio_driver(virtio_net_driver);
Rusty Russell296f96f2007-10-22 11:03:37 +10001893
1894MODULE_DEVICE_TABLE(virtio, id_table);
1895MODULE_DESCRIPTION("Virtio network driver");
1896MODULE_LICENSE("GPL");