]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - drivers/net/xen-netfront.c
xen-netfront: release per-queue Tx and Rx resource when disconnecting
[mirror_ubuntu-jammy-kernel.git] / drivers / net / xen-netfront.c
CommitLineData
0d160211
JF
1/*
2 * Virtual network driver for conversing with remote driver backends.
3 *
4 * Copyright (c) 2002-2005, K A Fraser
5 * Copyright (c) 2005, XenSource Ltd
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License version 2
9 * as published by the Free Software Foundation; or, when distributed
10 * separately from the Linux kernel or incorporated into other
11 * software packages, subject to the following license:
12 *
13 * Permission is hereby granted, free of charge, to any person obtaining a copy
14 * of this source file (the "Software"), to deal in the Software without
15 * restriction, including without limitation the rights to use, copy, modify,
16 * merge, publish, distribute, sublicense, and/or sell copies of the Software,
17 * and to permit persons to whom the Software is furnished to do so, subject to
18 * the following conditions:
19 *
20 * The above copyright notice and this permission notice shall be included in
21 * all copies or substantial portions of the Software.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
24 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
26 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
27 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
28 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
29 * IN THE SOFTWARE.
30 */
31
383eda32
JP
32#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
33
0d160211
JF
34#include <linux/module.h>
35#include <linux/kernel.h>
36#include <linux/netdevice.h>
37#include <linux/etherdevice.h>
38#include <linux/skbuff.h>
39#include <linux/ethtool.h>
40#include <linux/if_ether.h>
9ecd1a75 41#include <net/tcp.h>
0d160211
JF
42#include <linux/udp.h>
43#include <linux/moduleparam.h>
44#include <linux/mm.h>
5a0e3ad6 45#include <linux/slab.h>
0d160211
JF
46#include <net/ip.h>
47
ca981633 48#include <asm/xen/page.h>
1ccbf534 49#include <xen/xen.h>
0d160211
JF
50#include <xen/xenbus.h>
51#include <xen/events.h>
52#include <xen/page.h>
b9136d20 53#include <xen/platform_pci.h>
0d160211
JF
54#include <xen/grant_table.h>
55
56#include <xen/interface/io/netif.h>
57#include <xen/interface/memory.h>
58#include <xen/interface/grant_table.h>
59
50ee6061
AB
60/* Module parameters */
61static unsigned int xennet_max_queues;
62module_param_named(max_queues, xennet_max_queues, uint, 0644);
63MODULE_PARM_DESC(max_queues,
64 "Maximum number of queues per virtual interface");
65
0fc0b732 66static const struct ethtool_ops xennet_ethtool_ops;
0d160211
JF
67
68struct netfront_cb {
3683243b 69 int pull_to;
0d160211
JF
70};
71
72#define NETFRONT_SKB_CB(skb) ((struct netfront_cb *)((skb)->cb))
73
74#define RX_COPY_THRESHOLD 256
75
76#define GRANT_INVALID_REF 0
77
667c78af
JF
78#define NET_TX_RING_SIZE __CONST_RING_SIZE(xen_netif_tx, PAGE_SIZE)
79#define NET_RX_RING_SIZE __CONST_RING_SIZE(xen_netif_rx, PAGE_SIZE)
40206dd9 80#define TX_MAX_TARGET min_t(int, NET_TX_RING_SIZE, 256)
0d160211 81
2688fcb7
AB
82/* Queue name is interface name with "-qNNN" appended */
83#define QUEUE_NAME_SIZE (IFNAMSIZ + 6)
84
85/* IRQ name is queue name with "-tx" or "-rx" appended */
86#define IRQ_NAME_SIZE (QUEUE_NAME_SIZE + 3)
87
e00f85be 88struct netfront_stats {
89 u64 rx_packets;
90 u64 tx_packets;
91 u64 rx_bytes;
92 u64 tx_bytes;
93 struct u64_stats_sync syncp;
94};
95
2688fcb7
AB
96struct netfront_info;
97
98struct netfront_queue {
99 unsigned int id; /* Queue ID, 0-based */
100 char name[QUEUE_NAME_SIZE]; /* DEVNAME-qN */
101 struct netfront_info *info;
0d160211 102
bea3348e 103 struct napi_struct napi;
0d160211 104
d634bf2c
WL
105 /* Split event channels support, tx_* == rx_* when using
106 * single event channel.
107 */
108 unsigned int tx_evtchn, rx_evtchn;
109 unsigned int tx_irq, rx_irq;
110 /* Only used when split event channels support is enabled */
2688fcb7
AB
111 char tx_irq_name[IRQ_NAME_SIZE]; /* DEVNAME-qN-tx */
112 char rx_irq_name[IRQ_NAME_SIZE]; /* DEVNAME-qN-rx */
0d160211 113
84284d3c
JF
114 spinlock_t tx_lock;
115 struct xen_netif_tx_front_ring tx;
116 int tx_ring_ref;
0d160211
JF
117
118 /*
119 * {tx,rx}_skbs store outstanding skbuffs. Free tx_skb entries
120 * are linked from tx_skb_freelist through skb_entry.link.
121 *
122 * NB. Freelist index entries are always going to be less than
123 * PAGE_OFFSET, whereas pointers to skbs will always be equal or
124 * greater than PAGE_OFFSET: we use this property to distinguish
125 * them.
126 */
127 union skb_entry {
128 struct sk_buff *skb;
1ffb40b8 129 unsigned long link;
0d160211
JF
130 } tx_skbs[NET_TX_RING_SIZE];
131 grant_ref_t gref_tx_head;
132 grant_ref_t grant_tx_ref[NET_TX_RING_SIZE];
cefe0078 133 struct page *grant_tx_page[NET_TX_RING_SIZE];
0d160211
JF
134 unsigned tx_skb_freelist;
135
84284d3c
JF
136 spinlock_t rx_lock ____cacheline_aligned_in_smp;
137 struct xen_netif_rx_front_ring rx;
138 int rx_ring_ref;
139
140 /* Receive-ring batched refills. */
141#define RX_MIN_TARGET 8
142#define RX_DFL_MIN_TARGET 64
143#define RX_MAX_TARGET min_t(int, NET_RX_RING_SIZE, 256)
144 unsigned rx_min_target, rx_max_target, rx_target;
145 struct sk_buff_head rx_batch;
146
147 struct timer_list rx_refill_timer;
148
0d160211
JF
149 struct sk_buff *rx_skbs[NET_RX_RING_SIZE];
150 grant_ref_t gref_rx_head;
151 grant_ref_t grant_rx_ref[NET_RX_RING_SIZE];
152
0d160211
JF
153 unsigned long rx_pfn_array[NET_RX_RING_SIZE];
154 struct multicall_entry rx_mcl[NET_RX_RING_SIZE+1];
155 struct mmu_update rx_mmu[NET_RX_RING_SIZE];
2688fcb7
AB
156};
157
158struct netfront_info {
159 struct list_head list;
160 struct net_device *netdev;
161
162 struct xenbus_device *xbdev;
163
164 /* Multi-queue support */
165 struct netfront_queue *queues;
e0ce4af9
IC
166
167 /* Statistics */
e00f85be 168 struct netfront_stats __percpu *stats;
169
2688fcb7 170 atomic_t rx_gso_checksum_fixup;
0d160211
JF
171};
172
173struct netfront_rx_info {
174 struct xen_netif_rx_response rx;
175 struct xen_netif_extra_info extras[XEN_NETIF_EXTRA_TYPE_MAX - 1];
176};
177
1ffb40b8
IY
178static void skb_entry_set_link(union skb_entry *list, unsigned short id)
179{
180 list->link = id;
181}
182
183static int skb_entry_is_link(const union skb_entry *list)
184{
185 BUILD_BUG_ON(sizeof(list->skb) != sizeof(list->link));
807540ba 186 return (unsigned long)list->skb < PAGE_OFFSET;
1ffb40b8
IY
187}
188
0d160211
JF
189/*
190 * Access macros for acquiring freeing slots in tx_skbs[].
191 */
192
193static void add_id_to_freelist(unsigned *head, union skb_entry *list,
194 unsigned short id)
195{
1ffb40b8 196 skb_entry_set_link(&list[id], *head);
0d160211
JF
197 *head = id;
198}
199
200static unsigned short get_id_from_freelist(unsigned *head,
201 union skb_entry *list)
202{
203 unsigned int id = *head;
204 *head = list[id].link;
205 return id;
206}
207
208static int xennet_rxidx(RING_IDX idx)
209{
210 return idx & (NET_RX_RING_SIZE - 1);
211}
212
2688fcb7 213static struct sk_buff *xennet_get_rx_skb(struct netfront_queue *queue,
0d160211
JF
214 RING_IDX ri)
215{
216 int i = xennet_rxidx(ri);
2688fcb7
AB
217 struct sk_buff *skb = queue->rx_skbs[i];
218 queue->rx_skbs[i] = NULL;
0d160211
JF
219 return skb;
220}
221
2688fcb7 222static grant_ref_t xennet_get_rx_ref(struct netfront_queue *queue,
0d160211
JF
223 RING_IDX ri)
224{
225 int i = xennet_rxidx(ri);
2688fcb7
AB
226 grant_ref_t ref = queue->grant_rx_ref[i];
227 queue->grant_rx_ref[i] = GRANT_INVALID_REF;
0d160211
JF
228 return ref;
229}
230
231#ifdef CONFIG_SYSFS
232static int xennet_sysfs_addif(struct net_device *netdev);
233static void xennet_sysfs_delif(struct net_device *netdev);
234#else /* !CONFIG_SYSFS */
235#define xennet_sysfs_addif(dev) (0)
236#define xennet_sysfs_delif(dev) do { } while (0)
237#endif
238
3ad9b358 239static bool xennet_can_sg(struct net_device *dev)
0d160211 240{
3ad9b358 241 return dev->features & NETIF_F_SG;
0d160211
JF
242}
243
244
245static void rx_refill_timeout(unsigned long data)
246{
2688fcb7
AB
247 struct netfront_queue *queue = (struct netfront_queue *)data;
248 napi_schedule(&queue->napi);
0d160211
JF
249}
250
2688fcb7 251static int netfront_tx_slot_available(struct netfront_queue *queue)
0d160211 252{
2688fcb7 253 return (queue->tx.req_prod_pvt - queue->tx.rsp_cons) <
807540ba 254 (TX_MAX_TARGET - MAX_SKB_FRAGS - 2);
0d160211
JF
255}
256
2688fcb7 257static void xennet_maybe_wake_tx(struct netfront_queue *queue)
0d160211 258{
2688fcb7
AB
259 struct net_device *dev = queue->info->netdev;
260 struct netdev_queue *dev_queue = netdev_get_tx_queue(dev, queue->id);
0d160211 261
2688fcb7
AB
262 if (unlikely(netif_tx_queue_stopped(dev_queue)) &&
263 netfront_tx_slot_available(queue) &&
0d160211 264 likely(netif_running(dev)))
2688fcb7 265 netif_tx_wake_queue(netdev_get_tx_queue(dev, queue->id));
0d160211
JF
266}
267
2688fcb7 268static void xennet_alloc_rx_buffers(struct netfront_queue *queue)
0d160211
JF
269{
270 unsigned short id;
0d160211
JF
271 struct sk_buff *skb;
272 struct page *page;
273 int i, batch_target, notify;
2688fcb7 274 RING_IDX req_prod = queue->rx.req_prod_pvt;
0d160211
JF
275 grant_ref_t ref;
276 unsigned long pfn;
277 void *vaddr;
0d160211
JF
278 struct xen_netif_rx_request *req;
279
2688fcb7 280 if (unlikely(!netif_carrier_ok(queue->info->netdev)))
0d160211
JF
281 return;
282
283 /*
284 * Allocate skbuffs greedily, even though we batch updates to the
285 * receive ring. This creates a less bursty demand on the memory
286 * allocator, so should reduce the chance of failed allocation requests
287 * both for ourself and for other kernel subsystems.
288 */
2688fcb7
AB
289 batch_target = queue->rx_target - (req_prod - queue->rx.rsp_cons);
290 for (i = skb_queue_len(&queue->rx_batch); i < batch_target; i++) {
291 skb = __netdev_alloc_skb(queue->info->netdev,
292 RX_COPY_THRESHOLD + NET_IP_ALIGN,
0d160211
JF
293 GFP_ATOMIC | __GFP_NOWARN);
294 if (unlikely(!skb))
295 goto no_skb;
296
617a20bb
IY
297 /* Align ip header to a 16 bytes boundary */
298 skb_reserve(skb, NET_IP_ALIGN);
299
0d160211
JF
300 page = alloc_page(GFP_ATOMIC | __GFP_NOWARN);
301 if (!page) {
302 kfree_skb(skb);
303no_skb:
0d160211 304 /* Could not allocate any skbuffs. Try again later. */
2688fcb7 305 mod_timer(&queue->rx_refill_timer,
0d160211 306 jiffies + (HZ/10));
fdcf7765
MJ
307
308 /* Any skbuffs queued for refill? Force them out. */
309 if (i != 0)
310 goto refill;
0d160211
JF
311 break;
312 }
313
093b9c71 314 skb_add_rx_frag(skb, 0, page, 0, 0, PAGE_SIZE);
2688fcb7 315 __skb_queue_tail(&queue->rx_batch, skb);
0d160211
JF
316 }
317
318 /* Is the batch large enough to be worthwhile? */
2688fcb7
AB
319 if (i < (queue->rx_target/2)) {
320 if (req_prod > queue->rx.sring->req_prod)
0d160211
JF
321 goto push;
322 return;
323 }
324
325 /* Adjust our fill target if we risked running out of buffers. */
2688fcb7
AB
326 if (((req_prod - queue->rx.sring->rsp_prod) < (queue->rx_target / 4)) &&
327 ((queue->rx_target *= 2) > queue->rx_max_target))
328 queue->rx_target = queue->rx_max_target;
0d160211
JF
329
330 refill:
5dcddfae 331 for (i = 0; ; i++) {
2688fcb7 332 skb = __skb_dequeue(&queue->rx_batch);
0d160211
JF
333 if (skb == NULL)
334 break;
335
2688fcb7 336 skb->dev = queue->info->netdev;
0d160211
JF
337
338 id = xennet_rxidx(req_prod + i);
339
2688fcb7
AB
340 BUG_ON(queue->rx_skbs[id]);
341 queue->rx_skbs[id] = skb;
0d160211 342
2688fcb7 343 ref = gnttab_claim_grant_reference(&queue->gref_rx_head);
0d160211 344 BUG_ON((signed short)ref < 0);
2688fcb7 345 queue->grant_rx_ref[id] = ref;
0d160211 346
01c68026
IC
347 pfn = page_to_pfn(skb_frag_page(&skb_shinfo(skb)->frags[0]));
348 vaddr = page_address(skb_frag_page(&skb_shinfo(skb)->frags[0]));
0d160211 349
2688fcb7 350 req = RING_GET_REQUEST(&queue->rx, req_prod + i);
0d160211 351 gnttab_grant_foreign_access_ref(ref,
2688fcb7 352 queue->info->xbdev->otherend_id,
0d160211
JF
353 pfn_to_mfn(pfn),
354 0);
355
356 req->id = id;
357 req->gref = ref;
358 }
359
5dcddfae 360 wmb(); /* barrier so backend seens requests */
0d160211
JF
361
362 /* Above is a suitable barrier to ensure backend will see requests. */
2688fcb7 363 queue->rx.req_prod_pvt = req_prod + i;
0d160211 364 push:
2688fcb7 365 RING_PUSH_REQUESTS_AND_CHECK_NOTIFY(&queue->rx, notify);
0d160211 366 if (notify)
2688fcb7 367 notify_remote_via_irq(queue->rx_irq);
0d160211
JF
368}
369
370static int xennet_open(struct net_device *dev)
371{
372 struct netfront_info *np = netdev_priv(dev);
2688fcb7
AB
373 unsigned int num_queues = dev->real_num_tx_queues;
374 unsigned int i = 0;
375 struct netfront_queue *queue = NULL;
376
377 for (i = 0; i < num_queues; ++i) {
378 queue = &np->queues[i];
379 napi_enable(&queue->napi);
380
381 spin_lock_bh(&queue->rx_lock);
382 if (netif_carrier_ok(dev)) {
383 xennet_alloc_rx_buffers(queue);
384 queue->rx.sring->rsp_event = queue->rx.rsp_cons + 1;
385 if (RING_HAS_UNCONSUMED_RESPONSES(&queue->rx))
386 napi_schedule(&queue->napi);
387 }
388 spin_unlock_bh(&queue->rx_lock);
0d160211 389 }
0d160211 390
2688fcb7 391 netif_tx_start_all_queues(dev);
0d160211
JF
392
393 return 0;
394}
395
2688fcb7 396static void xennet_tx_buf_gc(struct netfront_queue *queue)
0d160211
JF
397{
398 RING_IDX cons, prod;
399 unsigned short id;
0d160211
JF
400 struct sk_buff *skb;
401
2688fcb7 402 BUG_ON(!netif_carrier_ok(queue->info->netdev));
0d160211
JF
403
404 do {
2688fcb7 405 prod = queue->tx.sring->rsp_prod;
0d160211
JF
406 rmb(); /* Ensure we see responses up to 'rp'. */
407
2688fcb7 408 for (cons = queue->tx.rsp_cons; cons != prod; cons++) {
0d160211
JF
409 struct xen_netif_tx_response *txrsp;
410
2688fcb7 411 txrsp = RING_GET_RESPONSE(&queue->tx, cons);
f942dc25 412 if (txrsp->status == XEN_NETIF_RSP_NULL)
0d160211
JF
413 continue;
414
415 id = txrsp->id;
2688fcb7 416 skb = queue->tx_skbs[id].skb;
0d160211 417 if (unlikely(gnttab_query_foreign_access(
2688fcb7 418 queue->grant_tx_ref[id]) != 0)) {
383eda32
JP
419 pr_alert("%s: warning -- grant still in use by backend domain\n",
420 __func__);
0d160211
JF
421 BUG();
422 }
423 gnttab_end_foreign_access_ref(
2688fcb7 424 queue->grant_tx_ref[id], GNTMAP_readonly);
0d160211 425 gnttab_release_grant_reference(
2688fcb7
AB
426 &queue->gref_tx_head, queue->grant_tx_ref[id]);
427 queue->grant_tx_ref[id] = GRANT_INVALID_REF;
428 queue->grant_tx_page[id] = NULL;
429 add_id_to_freelist(&queue->tx_skb_freelist, queue->tx_skbs, id);
0d160211
JF
430 dev_kfree_skb_irq(skb);
431 }
432
2688fcb7 433 queue->tx.rsp_cons = prod;
0d160211
JF
434
435 /*
436 * Set a new event, then check for race with update of tx_cons.
437 * Note that it is essential to schedule a callback, no matter
438 * how few buffers are pending. Even if there is space in the
439 * transmit ring, higher layers may be blocked because too much
440 * data is outstanding: in such cases notification from Xen is
441 * likely to be the only kick that we'll get.
442 */
2688fcb7
AB
443 queue->tx.sring->rsp_event =
444 prod + ((queue->tx.sring->req_prod - prod) >> 1) + 1;
0d160211 445 mb(); /* update shared area */
2688fcb7 446 } while ((cons == prod) && (prod != queue->tx.sring->rsp_prod));
0d160211 447
2688fcb7 448 xennet_maybe_wake_tx(queue);
0d160211
JF
449}
450
2688fcb7 451static void xennet_make_frags(struct sk_buff *skb, struct netfront_queue *queue,
0d160211
JF
452 struct xen_netif_tx_request *tx)
453{
0d160211
JF
454 char *data = skb->data;
455 unsigned long mfn;
2688fcb7 456 RING_IDX prod = queue->tx.req_prod_pvt;
0d160211
JF
457 int frags = skb_shinfo(skb)->nr_frags;
458 unsigned int offset = offset_in_page(data);
459 unsigned int len = skb_headlen(skb);
460 unsigned int id;
461 grant_ref_t ref;
462 int i;
463
464 /* While the header overlaps a page boundary (including being
465 larger than a page), split it it into page-sized chunks. */
466 while (len > PAGE_SIZE - offset) {
467 tx->size = PAGE_SIZE - offset;
f942dc25 468 tx->flags |= XEN_NETTXF_more_data;
0d160211
JF
469 len -= tx->size;
470 data += tx->size;
471 offset = 0;
472
2688fcb7
AB
473 id = get_id_from_freelist(&queue->tx_skb_freelist, queue->tx_skbs);
474 queue->tx_skbs[id].skb = skb_get(skb);
475 tx = RING_GET_REQUEST(&queue->tx, prod++);
0d160211 476 tx->id = id;
2688fcb7 477 ref = gnttab_claim_grant_reference(&queue->gref_tx_head);
0d160211
JF
478 BUG_ON((signed short)ref < 0);
479
480 mfn = virt_to_mfn(data);
2688fcb7 481 gnttab_grant_foreign_access_ref(ref, queue->info->xbdev->otherend_id,
0d160211
JF
482 mfn, GNTMAP_readonly);
483
2688fcb7
AB
484 queue->grant_tx_page[id] = virt_to_page(data);
485 tx->gref = queue->grant_tx_ref[id] = ref;
0d160211
JF
486 tx->offset = offset;
487 tx->size = len;
488 tx->flags = 0;
489 }
490
491 /* Grant backend access to each skb fragment page. */
492 for (i = 0; i < frags; i++) {
493 skb_frag_t *frag = skb_shinfo(skb)->frags + i;
f36c3747 494 struct page *page = skb_frag_page(frag);
0d160211 495
f36c3747
IC
496 len = skb_frag_size(frag);
497 offset = frag->page_offset;
0d160211 498
f36c3747
IC
499 /* Data must not cross a page boundary. */
500 BUG_ON(len + offset > PAGE_SIZE<<compound_order(page));
0d160211 501
f36c3747
IC
502 /* Skip unused frames from start of page */
503 page += offset >> PAGE_SHIFT;
504 offset &= ~PAGE_MASK;
0d160211 505
f36c3747
IC
506 while (len > 0) {
507 unsigned long bytes;
508
509 BUG_ON(offset >= PAGE_SIZE);
510
511 bytes = PAGE_SIZE - offset;
512 if (bytes > len)
513 bytes = len;
514
515 tx->flags |= XEN_NETTXF_more_data;
516
2688fcb7
AB
517 id = get_id_from_freelist(&queue->tx_skb_freelist,
518 queue->tx_skbs);
519 queue->tx_skbs[id].skb = skb_get(skb);
520 tx = RING_GET_REQUEST(&queue->tx, prod++);
f36c3747 521 tx->id = id;
2688fcb7 522 ref = gnttab_claim_grant_reference(&queue->gref_tx_head);
f36c3747
IC
523 BUG_ON((signed short)ref < 0);
524
525 mfn = pfn_to_mfn(page_to_pfn(page));
526 gnttab_grant_foreign_access_ref(ref,
2688fcb7 527 queue->info->xbdev->otherend_id,
f36c3747
IC
528 mfn, GNTMAP_readonly);
529
2688fcb7
AB
530 queue->grant_tx_page[id] = page;
531 tx->gref = queue->grant_tx_ref[id] = ref;
f36c3747
IC
532 tx->offset = offset;
533 tx->size = bytes;
534 tx->flags = 0;
535
536 offset += bytes;
537 len -= bytes;
538
539 /* Next frame */
540 if (offset == PAGE_SIZE && len) {
541 BUG_ON(!PageCompound(page));
542 page++;
543 offset = 0;
544 }
545 }
0d160211
JF
546 }
547
2688fcb7 548 queue->tx.req_prod_pvt = prod;
0d160211
JF
549}
550
f36c3747
IC
551/*
552 * Count how many ring slots are required to send the frags of this
553 * skb. Each frag might be a compound page.
554 */
555static int xennet_count_skb_frag_slots(struct sk_buff *skb)
556{
557 int i, frags = skb_shinfo(skb)->nr_frags;
558 int pages = 0;
559
560 for (i = 0; i < frags; i++) {
561 skb_frag_t *frag = skb_shinfo(skb)->frags + i;
562 unsigned long size = skb_frag_size(frag);
563 unsigned long offset = frag->page_offset;
564
565 /* Skip unused frames from start of page */
566 offset &= ~PAGE_MASK;
567
568 pages += PFN_UP(offset + size);
569 }
570
571 return pages;
572}
573
50ee6061
AB
574static u16 xennet_select_queue(struct net_device *dev, struct sk_buff *skb,
575 void *accel_priv, select_queue_fallback_t fallback)
2688fcb7 576{
50ee6061
AB
577 unsigned int num_queues = dev->real_num_tx_queues;
578 u32 hash;
579 u16 queue_idx;
580
581 /* First, check if there is only one queue */
582 if (num_queues == 1) {
583 queue_idx = 0;
584 } else {
585 hash = skb_get_hash(skb);
586 queue_idx = hash % num_queues;
587 }
588
589 return queue_idx;
2688fcb7
AB
590}
591
0d160211
JF
592static int xennet_start_xmit(struct sk_buff *skb, struct net_device *dev)
593{
594 unsigned short id;
595 struct netfront_info *np = netdev_priv(dev);
e00f85be 596 struct netfront_stats *stats = this_cpu_ptr(np->stats);
0d160211 597 struct xen_netif_tx_request *tx;
0d160211
JF
598 char *data = skb->data;
599 RING_IDX i;
600 grant_ref_t ref;
601 unsigned long mfn;
602 int notify;
f36c3747 603 int slots;
0d160211
JF
604 unsigned int offset = offset_in_page(data);
605 unsigned int len = skb_headlen(skb);
cf66f9d4 606 unsigned long flags;
2688fcb7
AB
607 struct netfront_queue *queue = NULL;
608 unsigned int num_queues = dev->real_num_tx_queues;
609 u16 queue_index;
610
611 /* Drop the packet if no queues are set up */
612 if (num_queues < 1)
613 goto drop;
614 /* Determine which queue to transmit this SKB on */
615 queue_index = skb_get_queue_mapping(skb);
616 queue = &np->queues[queue_index];
0d160211 617
9ecd1a75
WL
618 /* If skb->len is too big for wire format, drop skb and alert
619 * user about misconfiguration.
620 */
621 if (unlikely(skb->len > XEN_NETIF_MAX_TX_SIZE)) {
622 net_alert_ratelimited(
623 "xennet: skb->len = %u, too big for wire format\n",
624 skb->len);
625 goto drop;
626 }
627
f36c3747
IC
628 slots = DIV_ROUND_UP(offset + len, PAGE_SIZE) +
629 xennet_count_skb_frag_slots(skb);
630 if (unlikely(slots > MAX_SKB_FRAGS + 1)) {
631 net_alert_ratelimited(
632 "xennet: skb rides the rocket: %d slots\n", slots);
0d160211
JF
633 goto drop;
634 }
635
2688fcb7 636 spin_lock_irqsave(&queue->tx_lock, flags);
0d160211
JF
637
638 if (unlikely(!netif_carrier_ok(dev) ||
f36c3747 639 (slots > 1 && !xennet_can_sg(dev)) ||
fc741216 640 netif_needs_gso(skb, netif_skb_features(skb)))) {
2688fcb7 641 spin_unlock_irqrestore(&queue->tx_lock, flags);
0d160211
JF
642 goto drop;
643 }
644
2688fcb7 645 i = queue->tx.req_prod_pvt;
0d160211 646
2688fcb7
AB
647 id = get_id_from_freelist(&queue->tx_skb_freelist, queue->tx_skbs);
648 queue->tx_skbs[id].skb = skb;
0d160211 649
2688fcb7 650 tx = RING_GET_REQUEST(&queue->tx, i);
0d160211
JF
651
652 tx->id = id;
2688fcb7 653 ref = gnttab_claim_grant_reference(&queue->gref_tx_head);
0d160211
JF
654 BUG_ON((signed short)ref < 0);
655 mfn = virt_to_mfn(data);
656 gnttab_grant_foreign_access_ref(
2688fcb7
AB
657 ref, queue->info->xbdev->otherend_id, mfn, GNTMAP_readonly);
658 queue->grant_tx_page[id] = virt_to_page(data);
659 tx->gref = queue->grant_tx_ref[id] = ref;
0d160211
JF
660 tx->offset = offset;
661 tx->size = len;
0d160211
JF
662
663 tx->flags = 0;
664 if (skb->ip_summed == CHECKSUM_PARTIAL)
665 /* local packet? */
f942dc25 666 tx->flags |= XEN_NETTXF_csum_blank | XEN_NETTXF_data_validated;
0d160211
JF
667 else if (skb->ip_summed == CHECKSUM_UNNECESSARY)
668 /* remote but checksummed. */
f942dc25 669 tx->flags |= XEN_NETTXF_data_validated;
0d160211
JF
670
671 if (skb_shinfo(skb)->gso_size) {
672 struct xen_netif_extra_info *gso;
673
674 gso = (struct xen_netif_extra_info *)
2688fcb7 675 RING_GET_REQUEST(&queue->tx, ++i);
0d160211 676
e2d617c0 677 tx->flags |= XEN_NETTXF_extra_info;
0d160211
JF
678
679 gso->u.gso.size = skb_shinfo(skb)->gso_size;
2c0057de
PD
680 gso->u.gso.type = (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV6) ?
681 XEN_NETIF_GSO_TYPE_TCPV6 :
682 XEN_NETIF_GSO_TYPE_TCPV4;
0d160211
JF
683 gso->u.gso.pad = 0;
684 gso->u.gso.features = 0;
685
686 gso->type = XEN_NETIF_EXTRA_TYPE_GSO;
687 gso->flags = 0;
0d160211
JF
688 }
689
2688fcb7 690 queue->tx.req_prod_pvt = i + 1;
0d160211 691
2688fcb7 692 xennet_make_frags(skb, queue, tx);
0d160211
JF
693 tx->size = skb->len;
694
2688fcb7 695 RING_PUSH_REQUESTS_AND_CHECK_NOTIFY(&queue->tx, notify);
0d160211 696 if (notify)
2688fcb7 697 notify_remote_via_irq(queue->tx_irq);
0d160211 698
e00f85be 699 u64_stats_update_begin(&stats->syncp);
700 stats->tx_bytes += skb->len;
701 stats->tx_packets++;
702 u64_stats_update_end(&stats->syncp);
10a273a6
JF
703
704 /* Note: It is not safe to access skb after xennet_tx_buf_gc()! */
2688fcb7 705 xennet_tx_buf_gc(queue);
0d160211 706
2688fcb7
AB
707 if (!netfront_tx_slot_available(queue))
708 netif_tx_stop_queue(netdev_get_tx_queue(dev, queue->id));
0d160211 709
2688fcb7 710 spin_unlock_irqrestore(&queue->tx_lock, flags);
0d160211 711
6ed10654 712 return NETDEV_TX_OK;
0d160211
JF
713
714 drop:
09f75cd7 715 dev->stats.tx_dropped++;
979de8a0 716 dev_kfree_skb_any(skb);
6ed10654 717 return NETDEV_TX_OK;
0d160211
JF
718}
719
720static int xennet_close(struct net_device *dev)
721{
722 struct netfront_info *np = netdev_priv(dev);
2688fcb7
AB
723 unsigned int num_queues = dev->real_num_tx_queues;
724 unsigned int i;
725 struct netfront_queue *queue;
726 netif_tx_stop_all_queues(np->netdev);
727 for (i = 0; i < num_queues; ++i) {
728 queue = &np->queues[i];
729 napi_disable(&queue->napi);
730 }
0d160211
JF
731 return 0;
732}
733
2688fcb7 734static void xennet_move_rx_slot(struct netfront_queue *queue, struct sk_buff *skb,
0d160211
JF
735 grant_ref_t ref)
736{
2688fcb7
AB
737 int new = xennet_rxidx(queue->rx.req_prod_pvt);
738
739 BUG_ON(queue->rx_skbs[new]);
740 queue->rx_skbs[new] = skb;
741 queue->grant_rx_ref[new] = ref;
742 RING_GET_REQUEST(&queue->rx, queue->rx.req_prod_pvt)->id = new;
743 RING_GET_REQUEST(&queue->rx, queue->rx.req_prod_pvt)->gref = ref;
744 queue->rx.req_prod_pvt++;
0d160211
JF
745}
746
2688fcb7 747static int xennet_get_extras(struct netfront_queue *queue,
0d160211
JF
748 struct xen_netif_extra_info *extras,
749 RING_IDX rp)
750
751{
752 struct xen_netif_extra_info *extra;
2688fcb7
AB
753 struct device *dev = &queue->info->netdev->dev;
754 RING_IDX cons = queue->rx.rsp_cons;
0d160211
JF
755 int err = 0;
756
757 do {
758 struct sk_buff *skb;
759 grant_ref_t ref;
760
761 if (unlikely(cons + 1 == rp)) {
762 if (net_ratelimit())
763 dev_warn(dev, "Missing extra info\n");
764 err = -EBADR;
765 break;
766 }
767
768 extra = (struct xen_netif_extra_info *)
2688fcb7 769 RING_GET_RESPONSE(&queue->rx, ++cons);
0d160211
JF
770
771 if (unlikely(!extra->type ||
772 extra->type >= XEN_NETIF_EXTRA_TYPE_MAX)) {
773 if (net_ratelimit())
774 dev_warn(dev, "Invalid extra type: %d\n",
775 extra->type);
776 err = -EINVAL;
777 } else {
778 memcpy(&extras[extra->type - 1], extra,
779 sizeof(*extra));
780 }
781
2688fcb7
AB
782 skb = xennet_get_rx_skb(queue, cons);
783 ref = xennet_get_rx_ref(queue, cons);
784 xennet_move_rx_slot(queue, skb, ref);
0d160211
JF
785 } while (extra->flags & XEN_NETIF_EXTRA_FLAG_MORE);
786
2688fcb7 787 queue->rx.rsp_cons = cons;
0d160211
JF
788 return err;
789}
790
2688fcb7 791static int xennet_get_responses(struct netfront_queue *queue,
0d160211
JF
792 struct netfront_rx_info *rinfo, RING_IDX rp,
793 struct sk_buff_head *list)
794{
795 struct xen_netif_rx_response *rx = &rinfo->rx;
796 struct xen_netif_extra_info *extras = rinfo->extras;
2688fcb7
AB
797 struct device *dev = &queue->info->netdev->dev;
798 RING_IDX cons = queue->rx.rsp_cons;
799 struct sk_buff *skb = xennet_get_rx_skb(queue, cons);
800 grant_ref_t ref = xennet_get_rx_ref(queue, cons);
0d160211 801 int max = MAX_SKB_FRAGS + (rx->status <= RX_COPY_THRESHOLD);
7158ff6d 802 int slots = 1;
0d160211
JF
803 int err = 0;
804 unsigned long ret;
805
f942dc25 806 if (rx->flags & XEN_NETRXF_extra_info) {
2688fcb7
AB
807 err = xennet_get_extras(queue, extras, rp);
808 cons = queue->rx.rsp_cons;
0d160211
JF
809 }
810
811 for (;;) {
812 if (unlikely(rx->status < 0 ||
813 rx->offset + rx->status > PAGE_SIZE)) {
814 if (net_ratelimit())
815 dev_warn(dev, "rx->offset: %x, size: %u\n",
816 rx->offset, rx->status);
2688fcb7 817 xennet_move_rx_slot(queue, skb, ref);
0d160211
JF
818 err = -EINVAL;
819 goto next;
820 }
821
822 /*
823 * This definitely indicates a bug, either in this driver or in
824 * the backend driver. In future this should flag the bad
697089dc 825 * situation to the system controller to reboot the backend.
0d160211
JF
826 */
827 if (ref == GRANT_INVALID_REF) {
828 if (net_ratelimit())
829 dev_warn(dev, "Bad rx response id %d.\n",
830 rx->id);
831 err = -EINVAL;
832 goto next;
833 }
834
835 ret = gnttab_end_foreign_access_ref(ref, 0);
836 BUG_ON(!ret);
837
2688fcb7 838 gnttab_release_grant_reference(&queue->gref_rx_head, ref);
0d160211
JF
839
840 __skb_queue_tail(list, skb);
841
842next:
f942dc25 843 if (!(rx->flags & XEN_NETRXF_more_data))
0d160211
JF
844 break;
845
7158ff6d 846 if (cons + slots == rp) {
0d160211 847 if (net_ratelimit())
7158ff6d 848 dev_warn(dev, "Need more slots\n");
0d160211
JF
849 err = -ENOENT;
850 break;
851 }
852
2688fcb7
AB
853 rx = RING_GET_RESPONSE(&queue->rx, cons + slots);
854 skb = xennet_get_rx_skb(queue, cons + slots);
855 ref = xennet_get_rx_ref(queue, cons + slots);
7158ff6d 856 slots++;
0d160211
JF
857 }
858
7158ff6d 859 if (unlikely(slots > max)) {
0d160211 860 if (net_ratelimit())
697089dc 861 dev_warn(dev, "Too many slots\n");
0d160211
JF
862 err = -E2BIG;
863 }
864
865 if (unlikely(err))
2688fcb7 866 queue->rx.rsp_cons = cons + slots;
0d160211
JF
867
868 return err;
869}
870
871static int xennet_set_skb_gso(struct sk_buff *skb,
872 struct xen_netif_extra_info *gso)
873{
874 if (!gso->u.gso.size) {
875 if (net_ratelimit())
383eda32 876 pr_warn("GSO size must not be zero\n");
0d160211
JF
877 return -EINVAL;
878 }
879
2c0057de
PD
880 if (gso->u.gso.type != XEN_NETIF_GSO_TYPE_TCPV4 &&
881 gso->u.gso.type != XEN_NETIF_GSO_TYPE_TCPV6) {
0d160211 882 if (net_ratelimit())
383eda32 883 pr_warn("Bad GSO type %d\n", gso->u.gso.type);
0d160211
JF
884 return -EINVAL;
885 }
886
887 skb_shinfo(skb)->gso_size = gso->u.gso.size;
2c0057de
PD
888 skb_shinfo(skb)->gso_type =
889 (gso->u.gso.type == XEN_NETIF_GSO_TYPE_TCPV4) ?
890 SKB_GSO_TCPV4 :
891 SKB_GSO_TCPV6;
0d160211
JF
892
893 /* Header must be checked, and gso_segs computed. */
894 skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
895 skb_shinfo(skb)->gso_segs = 0;
896
897 return 0;
898}
899
2688fcb7 900static RING_IDX xennet_fill_frags(struct netfront_queue *queue,
0d160211
JF
901 struct sk_buff *skb,
902 struct sk_buff_head *list)
903{
904 struct skb_shared_info *shinfo = skb_shinfo(skb);
2688fcb7 905 RING_IDX cons = queue->rx.rsp_cons;
0d160211
JF
906 struct sk_buff *nskb;
907
908 while ((nskb = __skb_dequeue(list))) {
909 struct xen_netif_rx_response *rx =
2688fcb7 910 RING_GET_RESPONSE(&queue->rx, ++cons);
01c68026 911 skb_frag_t *nfrag = &skb_shinfo(nskb)->frags[0];
0d160211 912
093b9c71
JB
913 if (shinfo->nr_frags == MAX_SKB_FRAGS) {
914 unsigned int pull_to = NETFRONT_SKB_CB(skb)->pull_to;
0d160211 915
093b9c71
JB
916 BUG_ON(pull_to <= skb_headlen(skb));
917 __pskb_pull_tail(skb, pull_to - skb_headlen(skb));
918 }
919 BUG_ON(shinfo->nr_frags >= MAX_SKB_FRAGS);
920
921 skb_add_rx_frag(skb, shinfo->nr_frags, skb_frag_page(nfrag),
922 rx->offset, rx->status, PAGE_SIZE);
0d160211
JF
923
924 skb_shinfo(nskb)->nr_frags = 0;
925 kfree_skb(nskb);
0d160211
JF
926 }
927
0d160211
JF
928 return cons;
929}
930
e0ce4af9 931static int checksum_setup(struct net_device *dev, struct sk_buff *skb)
0d160211 932{
b5cf66cd 933 bool recalculate_partial_csum = false;
e0ce4af9
IC
934
935 /*
936 * A GSO SKB must be CHECKSUM_PARTIAL. However some buggy
937 * peers can fail to set NETRXF_csum_blank when sending a GSO
938 * frame. In this case force the SKB to CHECKSUM_PARTIAL and
939 * recalculate the partial checksum.
940 */
941 if (skb->ip_summed != CHECKSUM_PARTIAL && skb_is_gso(skb)) {
942 struct netfront_info *np = netdev_priv(dev);
2688fcb7 943 atomic_inc(&np->rx_gso_checksum_fixup);
e0ce4af9 944 skb->ip_summed = CHECKSUM_PARTIAL;
b5cf66cd 945 recalculate_partial_csum = true;
e0ce4af9
IC
946 }
947
948 /* A non-CHECKSUM_PARTIAL SKB does not require setup. */
949 if (skb->ip_summed != CHECKSUM_PARTIAL)
950 return 0;
0d160211 951
b5cf66cd 952 return skb_checksum_setup(skb, recalculate_partial_csum);
0d160211
JF
953}
954
2688fcb7 955static int handle_incoming_queue(struct netfront_queue *queue,
09f75cd7 956 struct sk_buff_head *rxq)
0d160211 957{
2688fcb7 958 struct netfront_stats *stats = this_cpu_ptr(queue->info->stats);
0d160211
JF
959 int packets_dropped = 0;
960 struct sk_buff *skb;
961
962 while ((skb = __skb_dequeue(rxq)) != NULL) {
3683243b 963 int pull_to = NETFRONT_SKB_CB(skb)->pull_to;
0d160211 964
093b9c71
JB
965 if (pull_to > skb_headlen(skb))
966 __pskb_pull_tail(skb, pull_to - skb_headlen(skb));
0d160211
JF
967
968 /* Ethernet work: Delayed to here as it peeks the header. */
2688fcb7 969 skb->protocol = eth_type_trans(skb, queue->info->netdev);
d554f73d 970 skb_reset_network_header(skb);
0d160211 971
2688fcb7 972 if (checksum_setup(queue->info->netdev, skb)) {
e0ce4af9
IC
973 kfree_skb(skb);
974 packets_dropped++;
2688fcb7 975 queue->info->netdev->stats.rx_errors++;
e0ce4af9 976 continue;
0d160211
JF
977 }
978
e00f85be 979 u64_stats_update_begin(&stats->syncp);
980 stats->rx_packets++;
981 stats->rx_bytes += skb->len;
982 u64_stats_update_end(&stats->syncp);
0d160211
JF
983
984 /* Pass it up. */
2688fcb7 985 napi_gro_receive(&queue->napi, skb);
0d160211
JF
986 }
987
988 return packets_dropped;
989}
990
bea3348e 991static int xennet_poll(struct napi_struct *napi, int budget)
0d160211 992{
2688fcb7
AB
993 struct netfront_queue *queue = container_of(napi, struct netfront_queue, napi);
994 struct net_device *dev = queue->info->netdev;
0d160211
JF
995 struct sk_buff *skb;
996 struct netfront_rx_info rinfo;
997 struct xen_netif_rx_response *rx = &rinfo.rx;
998 struct xen_netif_extra_info *extras = rinfo.extras;
999 RING_IDX i, rp;
bea3348e 1000 int work_done;
0d160211
JF
1001 struct sk_buff_head rxq;
1002 struct sk_buff_head errq;
1003 struct sk_buff_head tmpq;
1004 unsigned long flags;
0d160211
JF
1005 int err;
1006
2688fcb7 1007 spin_lock(&queue->rx_lock);
0d160211 1008
0d160211
JF
1009 skb_queue_head_init(&rxq);
1010 skb_queue_head_init(&errq);
1011 skb_queue_head_init(&tmpq);
1012
2688fcb7 1013 rp = queue->rx.sring->rsp_prod;
0d160211
JF
1014 rmb(); /* Ensure we see queued responses up to 'rp'. */
1015
2688fcb7 1016 i = queue->rx.rsp_cons;
0d160211
JF
1017 work_done = 0;
1018 while ((i != rp) && (work_done < budget)) {
2688fcb7 1019 memcpy(rx, RING_GET_RESPONSE(&queue->rx, i), sizeof(*rx));
0d160211
JF
1020 memset(extras, 0, sizeof(rinfo.extras));
1021
2688fcb7 1022 err = xennet_get_responses(queue, &rinfo, rp, &tmpq);
0d160211
JF
1023
1024 if (unlikely(err)) {
1025err:
1026 while ((skb = __skb_dequeue(&tmpq)))
1027 __skb_queue_tail(&errq, skb);
09f75cd7 1028 dev->stats.rx_errors++;
2688fcb7 1029 i = queue->rx.rsp_cons;
0d160211
JF
1030 continue;
1031 }
1032
1033 skb = __skb_dequeue(&tmpq);
1034
1035 if (extras[XEN_NETIF_EXTRA_TYPE_GSO - 1].type) {
1036 struct xen_netif_extra_info *gso;
1037 gso = &extras[XEN_NETIF_EXTRA_TYPE_GSO - 1];
1038
1039 if (unlikely(xennet_set_skb_gso(skb, gso))) {
1040 __skb_queue_head(&tmpq, skb);
2688fcb7 1041 queue->rx.rsp_cons += skb_queue_len(&tmpq);
0d160211
JF
1042 goto err;
1043 }
1044 }
1045
3683243b
IC
1046 NETFRONT_SKB_CB(skb)->pull_to = rx->status;
1047 if (NETFRONT_SKB_CB(skb)->pull_to > RX_COPY_THRESHOLD)
1048 NETFRONT_SKB_CB(skb)->pull_to = RX_COPY_THRESHOLD;
0d160211 1049
3683243b
IC
1050 skb_shinfo(skb)->frags[0].page_offset = rx->offset;
1051 skb_frag_size_set(&skb_shinfo(skb)->frags[0], rx->status);
1052 skb->data_len = rx->status;
093b9c71 1053 skb->len += rx->status;
0d160211 1054
2688fcb7 1055 i = xennet_fill_frags(queue, skb, &tmpq);
0d160211 1056
f942dc25 1057 if (rx->flags & XEN_NETRXF_csum_blank)
0d160211 1058 skb->ip_summed = CHECKSUM_PARTIAL;
f942dc25 1059 else if (rx->flags & XEN_NETRXF_data_validated)
0d160211
JF
1060 skb->ip_summed = CHECKSUM_UNNECESSARY;
1061
1062 __skb_queue_tail(&rxq, skb);
1063
2688fcb7 1064 queue->rx.rsp_cons = ++i;
0d160211
JF
1065 work_done++;
1066 }
1067
56cfe5d0 1068 __skb_queue_purge(&errq);
0d160211 1069
2688fcb7 1070 work_done -= handle_incoming_queue(queue, &rxq);
0d160211
JF
1071
1072 /* If we get a callback with very few responses, reduce fill target. */
1073 /* NB. Note exponential increase, linear decrease. */
2688fcb7
AB
1074 if (((queue->rx.req_prod_pvt - queue->rx.sring->rsp_prod) >
1075 ((3*queue->rx_target) / 4)) &&
1076 (--queue->rx_target < queue->rx_min_target))
1077 queue->rx_target = queue->rx_min_target;
0d160211 1078
2688fcb7 1079 xennet_alloc_rx_buffers(queue);
0d160211 1080
0d160211 1081 if (work_done < budget) {
bea3348e
SH
1082 int more_to_do = 0;
1083
99d3d587
WL
1084 napi_gro_flush(napi, false);
1085
0d160211
JF
1086 local_irq_save(flags);
1087
2688fcb7 1088 RING_FINAL_CHECK_FOR_RESPONSES(&queue->rx, more_to_do);
0d160211 1089 if (!more_to_do)
288379f0 1090 __napi_complete(napi);
0d160211
JF
1091
1092 local_irq_restore(flags);
1093 }
1094
2688fcb7 1095 spin_unlock(&queue->rx_lock);
0d160211 1096
bea3348e 1097 return work_done;
0d160211
JF
1098}
1099
1100static int xennet_change_mtu(struct net_device *dev, int mtu)
1101{
9ecd1a75
WL
1102 int max = xennet_can_sg(dev) ?
1103 XEN_NETIF_MAX_TX_SIZE - MAX_TCP_HEADER : ETH_DATA_LEN;
0d160211
JF
1104
1105 if (mtu > max)
1106 return -EINVAL;
1107 dev->mtu = mtu;
1108 return 0;
1109}
1110
e00f85be 1111static struct rtnl_link_stats64 *xennet_get_stats64(struct net_device *dev,
1112 struct rtnl_link_stats64 *tot)
1113{
1114 struct netfront_info *np = netdev_priv(dev);
1115 int cpu;
1116
1117 for_each_possible_cpu(cpu) {
1118 struct netfront_stats *stats = per_cpu_ptr(np->stats, cpu);
1119 u64 rx_packets, rx_bytes, tx_packets, tx_bytes;
1120 unsigned int start;
1121
1122 do {
57a7744e 1123 start = u64_stats_fetch_begin_irq(&stats->syncp);
e00f85be 1124
1125 rx_packets = stats->rx_packets;
1126 tx_packets = stats->tx_packets;
1127 rx_bytes = stats->rx_bytes;
1128 tx_bytes = stats->tx_bytes;
57a7744e 1129 } while (u64_stats_fetch_retry_irq(&stats->syncp, start));
e00f85be 1130
1131 tot->rx_packets += rx_packets;
1132 tot->tx_packets += tx_packets;
1133 tot->rx_bytes += rx_bytes;
1134 tot->tx_bytes += tx_bytes;
1135 }
1136
1137 tot->rx_errors = dev->stats.rx_errors;
1138 tot->tx_dropped = dev->stats.tx_dropped;
1139
1140 return tot;
1141}
1142
2688fcb7 1143static void xennet_release_tx_bufs(struct netfront_queue *queue)
0d160211
JF
1144{
1145 struct sk_buff *skb;
1146 int i;
1147
1148 for (i = 0; i < NET_TX_RING_SIZE; i++) {
1149 /* Skip over entries which are actually freelist references */
2688fcb7 1150 if (skb_entry_is_link(&queue->tx_skbs[i]))
0d160211
JF
1151 continue;
1152
2688fcb7
AB
1153 skb = queue->tx_skbs[i].skb;
1154 get_page(queue->grant_tx_page[i]);
1155 gnttab_end_foreign_access(queue->grant_tx_ref[i],
cefe0078 1156 GNTMAP_readonly,
2688fcb7
AB
1157 (unsigned long)page_address(queue->grant_tx_page[i]));
1158 queue->grant_tx_page[i] = NULL;
1159 queue->grant_tx_ref[i] = GRANT_INVALID_REF;
1160 add_id_to_freelist(&queue->tx_skb_freelist, queue->tx_skbs, i);
0d160211
JF
1161 dev_kfree_skb_irq(skb);
1162 }
1163}
1164
2688fcb7 1165static void xennet_release_rx_bufs(struct netfront_queue *queue)
0d160211 1166{
0d160211
JF
1167 int id, ref;
1168
2688fcb7 1169 spin_lock_bh(&queue->rx_lock);
0d160211
JF
1170
1171 for (id = 0; id < NET_RX_RING_SIZE; id++) {
cefe0078
AL
1172 struct sk_buff *skb;
1173 struct page *page;
0d160211 1174
2688fcb7 1175 skb = queue->rx_skbs[id];
cefe0078 1176 if (!skb)
0d160211 1177 continue;
0d160211 1178
2688fcb7 1179 ref = queue->grant_rx_ref[id];
cefe0078
AL
1180 if (ref == GRANT_INVALID_REF)
1181 continue;
0d160211 1182
cefe0078 1183 page = skb_frag_page(&skb_shinfo(skb)->frags[0]);
0d160211 1184
cefe0078
AL
1185 /* gnttab_end_foreign_access() needs a page ref until
1186 * foreign access is ended (which may be deferred).
1187 */
1188 get_page(page);
1189 gnttab_end_foreign_access(ref, 0,
1190 (unsigned long)page_address(page));
2688fcb7 1191 queue->grant_rx_ref[id] = GRANT_INVALID_REF;
0d160211 1192
cefe0078 1193 kfree_skb(skb);
0d160211
JF
1194 }
1195
2688fcb7 1196 spin_unlock_bh(&queue->rx_lock);
0d160211
JF
1197}
1198
c8f44aff
MM
1199static netdev_features_t xennet_fix_features(struct net_device *dev,
1200 netdev_features_t features)
8f7b01a1
ED
1201{
1202 struct netfront_info *np = netdev_priv(dev);
1203 int val;
1204
1205 if (features & NETIF_F_SG) {
1206 if (xenbus_scanf(XBT_NIL, np->xbdev->otherend, "feature-sg",
1207 "%d", &val) < 0)
1208 val = 0;
1209
1210 if (!val)
1211 features &= ~NETIF_F_SG;
1212 }
1213
2c0057de
PD
1214 if (features & NETIF_F_IPV6_CSUM) {
1215 if (xenbus_scanf(XBT_NIL, np->xbdev->otherend,
1216 "feature-ipv6-csum-offload", "%d", &val) < 0)
1217 val = 0;
1218
1219 if (!val)
1220 features &= ~NETIF_F_IPV6_CSUM;
1221 }
1222
8f7b01a1
ED
1223 if (features & NETIF_F_TSO) {
1224 if (xenbus_scanf(XBT_NIL, np->xbdev->otherend,
1225 "feature-gso-tcpv4", "%d", &val) < 0)
1226 val = 0;
1227
1228 if (!val)
1229 features &= ~NETIF_F_TSO;
1230 }
1231
2c0057de
PD
1232 if (features & NETIF_F_TSO6) {
1233 if (xenbus_scanf(XBT_NIL, np->xbdev->otherend,
1234 "feature-gso-tcpv6", "%d", &val) < 0)
1235 val = 0;
1236
1237 if (!val)
1238 features &= ~NETIF_F_TSO6;
1239 }
1240
8f7b01a1
ED
1241 return features;
1242}
1243
c8f44aff
MM
1244static int xennet_set_features(struct net_device *dev,
1245 netdev_features_t features)
8f7b01a1
ED
1246{
1247 if (!(features & NETIF_F_SG) && dev->mtu > ETH_DATA_LEN) {
1248 netdev_info(dev, "Reducing MTU because no SG offload");
1249 dev->mtu = ETH_DATA_LEN;
1250 }
1251
1252 return 0;
1253}
1254
d634bf2c 1255static irqreturn_t xennet_tx_interrupt(int irq, void *dev_id)
cf66f9d4 1256{
2688fcb7 1257 struct netfront_queue *queue = dev_id;
cf66f9d4
KRW
1258 unsigned long flags;
1259
2688fcb7
AB
1260 spin_lock_irqsave(&queue->tx_lock, flags);
1261 xennet_tx_buf_gc(queue);
1262 spin_unlock_irqrestore(&queue->tx_lock, flags);
cf66f9d4 1263
d634bf2c
WL
1264 return IRQ_HANDLED;
1265}
1266
1267static irqreturn_t xennet_rx_interrupt(int irq, void *dev_id)
1268{
2688fcb7
AB
1269 struct netfront_queue *queue = dev_id;
1270 struct net_device *dev = queue->info->netdev;
d634bf2c
WL
1271
1272 if (likely(netif_carrier_ok(dev) &&
2688fcb7 1273 RING_HAS_UNCONSUMED_RESPONSES(&queue->rx)))
76541869 1274 napi_schedule(&queue->napi);
cf66f9d4 1275
d634bf2c
WL
1276 return IRQ_HANDLED;
1277}
cf66f9d4 1278
d634bf2c
WL
1279static irqreturn_t xennet_interrupt(int irq, void *dev_id)
1280{
1281 xennet_tx_interrupt(irq, dev_id);
1282 xennet_rx_interrupt(irq, dev_id);
cf66f9d4
KRW
1283 return IRQ_HANDLED;
1284}
1285
1286#ifdef CONFIG_NET_POLL_CONTROLLER
1287static void xennet_poll_controller(struct net_device *dev)
1288{
2688fcb7
AB
1289 /* Poll each queue */
1290 struct netfront_info *info = netdev_priv(dev);
1291 unsigned int num_queues = dev->real_num_tx_queues;
1292 unsigned int i;
1293 for (i = 0; i < num_queues; ++i)
1294 xennet_interrupt(0, &info->queues[i]);
cf66f9d4
KRW
1295}
1296#endif
1297
0a0b9d2e
SH
1298static const struct net_device_ops xennet_netdev_ops = {
1299 .ndo_open = xennet_open,
0a0b9d2e
SH
1300 .ndo_stop = xennet_close,
1301 .ndo_start_xmit = xennet_start_xmit,
1302 .ndo_change_mtu = xennet_change_mtu,
e00f85be 1303 .ndo_get_stats64 = xennet_get_stats64,
0a0b9d2e
SH
1304 .ndo_set_mac_address = eth_mac_addr,
1305 .ndo_validate_addr = eth_validate_addr,
fb507934
MM
1306 .ndo_fix_features = xennet_fix_features,
1307 .ndo_set_features = xennet_set_features,
2688fcb7 1308 .ndo_select_queue = xennet_select_queue,
cf66f9d4
KRW
1309#ifdef CONFIG_NET_POLL_CONTROLLER
1310 .ndo_poll_controller = xennet_poll_controller,
1311#endif
0a0b9d2e
SH
1312};
1313
8e0e46bb 1314static struct net_device *xennet_create_dev(struct xenbus_device *dev)
0d160211 1315{
2688fcb7 1316 int err;
0d160211
JF
1317 struct net_device *netdev;
1318 struct netfront_info *np;
1319
50ee6061 1320 netdev = alloc_etherdev_mq(sizeof(struct netfront_info), xennet_max_queues);
41de8d4c 1321 if (!netdev)
0d160211 1322 return ERR_PTR(-ENOMEM);
0d160211
JF
1323
1324 np = netdev_priv(netdev);
1325 np->xbdev = dev;
1326
2688fcb7
AB
1327 /* No need to use rtnl_lock() before the call below as it
1328 * happens before register_netdev().
1329 */
1330 netif_set_real_num_tx_queues(netdev, 0);
1331 np->queues = NULL;
0d160211 1332
e00f85be 1333 err = -ENOMEM;
1c213bd2 1334 np->stats = netdev_alloc_pcpu_stats(struct netfront_stats);
e00f85be 1335 if (np->stats == NULL)
1336 goto exit;
1337
0a0b9d2e
SH
1338 netdev->netdev_ops = &xennet_netdev_ops;
1339
fb507934
MM
1340 netdev->features = NETIF_F_IP_CSUM | NETIF_F_RXCSUM |
1341 NETIF_F_GSO_ROBUST;
2c0057de
PD
1342 netdev->hw_features = NETIF_F_SG |
1343 NETIF_F_IPV6_CSUM |
1344 NETIF_F_TSO | NETIF_F_TSO6;
0d160211 1345
fc3e5941
IC
1346 /*
1347 * Assume that all hw features are available for now. This set
1348 * will be adjusted by the call to netdev_update_features() in
1349 * xennet_connect() which is the earliest point where we can
1350 * negotiate with the backend regarding supported features.
1351 */
1352 netdev->features |= netdev->hw_features;
1353
7ad24ea4 1354 netdev->ethtool_ops = &xennet_ethtool_ops;
0d160211
JF
1355 SET_NETDEV_DEV(netdev, &dev->dev);
1356
9ecd1a75
WL
1357 netif_set_gso_max_size(netdev, XEN_NETIF_MAX_TX_SIZE - MAX_TCP_HEADER);
1358
0d160211
JF
1359 np->netdev = netdev;
1360
1361 netif_carrier_off(netdev);
1362
1363 return netdev;
1364
0d160211
JF
1365 exit:
1366 free_netdev(netdev);
1367 return ERR_PTR(err);
1368}
1369
1370/**
1371 * Entry point to this code when a new device is created. Allocate the basic
1372 * structures and the ring buffers for communication with the backend, and
1373 * inform the backend of the appropriate details for those.
1374 */
8e0e46bb 1375static int netfront_probe(struct xenbus_device *dev,
1dd06ae8 1376 const struct xenbus_device_id *id)
0d160211
JF
1377{
1378 int err;
1379 struct net_device *netdev;
1380 struct netfront_info *info;
1381
1382 netdev = xennet_create_dev(dev);
1383 if (IS_ERR(netdev)) {
1384 err = PTR_ERR(netdev);
1385 xenbus_dev_fatal(dev, err, "creating netdev");
1386 return err;
1387 }
1388
1389 info = netdev_priv(netdev);
1b713e00 1390 dev_set_drvdata(&dev->dev, info);
0d160211
JF
1391
1392 err = register_netdev(info->netdev);
1393 if (err) {
383eda32 1394 pr_warn("%s: register_netdev err=%d\n", __func__, err);
0d160211
JF
1395 goto fail;
1396 }
1397
1398 err = xennet_sysfs_addif(info->netdev);
1399 if (err) {
1400 unregister_netdev(info->netdev);
383eda32 1401 pr_warn("%s: add sysfs failed err=%d\n", __func__, err);
0d160211
JF
1402 goto fail;
1403 }
1404
1405 return 0;
1406
1407 fail:
1408 free_netdev(netdev);
1b713e00 1409 dev_set_drvdata(&dev->dev, NULL);
0d160211
JF
1410 return err;
1411}
1412
1413static void xennet_end_access(int ref, void *page)
1414{
1415 /* This frees the page as a side-effect */
1416 if (ref != GRANT_INVALID_REF)
1417 gnttab_end_foreign_access(ref, 0, (unsigned long)page);
1418}
1419
1420static void xennet_disconnect_backend(struct netfront_info *info)
1421{
2688fcb7 1422 unsigned int i = 0;
2688fcb7
AB
1423 unsigned int num_queues = info->netdev->real_num_tx_queues;
1424
f9feb1e6
DV
1425 netif_carrier_off(info->netdev);
1426
2688fcb7 1427 for (i = 0; i < num_queues; ++i) {
76541869
DV
1428 struct netfront_queue *queue = &info->queues[i];
1429
2688fcb7
AB
1430 if (queue->tx_irq && (queue->tx_irq == queue->rx_irq))
1431 unbind_from_irqhandler(queue->tx_irq, queue);
1432 if (queue->tx_irq && (queue->tx_irq != queue->rx_irq)) {
1433 unbind_from_irqhandler(queue->tx_irq, queue);
1434 unbind_from_irqhandler(queue->rx_irq, queue);
1435 }
1436 queue->tx_evtchn = queue->rx_evtchn = 0;
1437 queue->tx_irq = queue->rx_irq = 0;
0d160211 1438
f9feb1e6
DV
1439 napi_synchronize(&queue->napi);
1440
a5b5dc3c
DV
1441 xennet_release_tx_bufs(queue);
1442 xennet_release_rx_bufs(queue);
1443 gnttab_free_grant_references(queue->gref_tx_head);
1444 gnttab_free_grant_references(queue->gref_rx_head);
1445
2688fcb7
AB
1446 /* End access and free the pages */
1447 xennet_end_access(queue->tx_ring_ref, queue->tx.sring);
1448 xennet_end_access(queue->rx_ring_ref, queue->rx.sring);
0d160211 1449
2688fcb7
AB
1450 queue->tx_ring_ref = GRANT_INVALID_REF;
1451 queue->rx_ring_ref = GRANT_INVALID_REF;
1452 queue->tx.sring = NULL;
1453 queue->rx.sring = NULL;
1454 }
0d160211
JF
1455}
1456
1457/**
1458 * We are reconnecting to the backend, due to a suspend/resume, or a backend
1459 * driver restart. We tear down our netif structure and recreate it, but
1460 * leave the device-layer structures intact so that this is transparent to the
1461 * rest of the kernel.
1462 */
1463static int netfront_resume(struct xenbus_device *dev)
1464{
1b713e00 1465 struct netfront_info *info = dev_get_drvdata(&dev->dev);
0d160211
JF
1466
1467 dev_dbg(&dev->dev, "%s\n", dev->nodename);
1468
1469 xennet_disconnect_backend(info);
1470 return 0;
1471}
1472
1473static int xen_net_read_mac(struct xenbus_device *dev, u8 mac[])
1474{
1475 char *s, *e, *macstr;
1476 int i;
1477
1478 macstr = s = xenbus_read(XBT_NIL, dev->nodename, "mac", NULL);
1479 if (IS_ERR(macstr))
1480 return PTR_ERR(macstr);
1481
1482 for (i = 0; i < ETH_ALEN; i++) {
1483 mac[i] = simple_strtoul(s, &e, 16);
1484 if ((s == e) || (*e != ((i == ETH_ALEN-1) ? '\0' : ':'))) {
1485 kfree(macstr);
1486 return -ENOENT;
1487 }
1488 s = e+1;
1489 }
1490
1491 kfree(macstr);
1492 return 0;
1493}
1494
2688fcb7 1495static int setup_netfront_single(struct netfront_queue *queue)
d634bf2c
WL
1496{
1497 int err;
1498
2688fcb7 1499 err = xenbus_alloc_evtchn(queue->info->xbdev, &queue->tx_evtchn);
d634bf2c
WL
1500 if (err < 0)
1501 goto fail;
1502
2688fcb7 1503 err = bind_evtchn_to_irqhandler(queue->tx_evtchn,
d634bf2c 1504 xennet_interrupt,
2688fcb7 1505 0, queue->info->netdev->name, queue);
d634bf2c
WL
1506 if (err < 0)
1507 goto bind_fail;
2688fcb7
AB
1508 queue->rx_evtchn = queue->tx_evtchn;
1509 queue->rx_irq = queue->tx_irq = err;
d634bf2c
WL
1510
1511 return 0;
1512
1513bind_fail:
2688fcb7
AB
1514 xenbus_free_evtchn(queue->info->xbdev, queue->tx_evtchn);
1515 queue->tx_evtchn = 0;
d634bf2c
WL
1516fail:
1517 return err;
1518}
1519
2688fcb7 1520static int setup_netfront_split(struct netfront_queue *queue)
d634bf2c
WL
1521{
1522 int err;
1523
2688fcb7 1524 err = xenbus_alloc_evtchn(queue->info->xbdev, &queue->tx_evtchn);
d634bf2c
WL
1525 if (err < 0)
1526 goto fail;
2688fcb7 1527 err = xenbus_alloc_evtchn(queue->info->xbdev, &queue->rx_evtchn);
d634bf2c
WL
1528 if (err < 0)
1529 goto alloc_rx_evtchn_fail;
1530
2688fcb7
AB
1531 snprintf(queue->tx_irq_name, sizeof(queue->tx_irq_name),
1532 "%s-tx", queue->name);
1533 err = bind_evtchn_to_irqhandler(queue->tx_evtchn,
d634bf2c 1534 xennet_tx_interrupt,
2688fcb7 1535 0, queue->tx_irq_name, queue);
d634bf2c
WL
1536 if (err < 0)
1537 goto bind_tx_fail;
2688fcb7 1538 queue->tx_irq = err;
d634bf2c 1539
2688fcb7
AB
1540 snprintf(queue->rx_irq_name, sizeof(queue->rx_irq_name),
1541 "%s-rx", queue->name);
1542 err = bind_evtchn_to_irqhandler(queue->rx_evtchn,
d634bf2c 1543 xennet_rx_interrupt,
2688fcb7 1544 0, queue->rx_irq_name, queue);
d634bf2c
WL
1545 if (err < 0)
1546 goto bind_rx_fail;
2688fcb7 1547 queue->rx_irq = err;
d634bf2c
WL
1548
1549 return 0;
1550
1551bind_rx_fail:
2688fcb7
AB
1552 unbind_from_irqhandler(queue->tx_irq, queue);
1553 queue->tx_irq = 0;
d634bf2c 1554bind_tx_fail:
2688fcb7
AB
1555 xenbus_free_evtchn(queue->info->xbdev, queue->rx_evtchn);
1556 queue->rx_evtchn = 0;
d634bf2c 1557alloc_rx_evtchn_fail:
2688fcb7
AB
1558 xenbus_free_evtchn(queue->info->xbdev, queue->tx_evtchn);
1559 queue->tx_evtchn = 0;
d634bf2c
WL
1560fail:
1561 return err;
1562}
1563
2688fcb7
AB
1564static int setup_netfront(struct xenbus_device *dev,
1565 struct netfront_queue *queue, unsigned int feature_split_evtchn)
0d160211
JF
1566{
1567 struct xen_netif_tx_sring *txs;
1568 struct xen_netif_rx_sring *rxs;
1569 int err;
0d160211 1570
2688fcb7
AB
1571 queue->tx_ring_ref = GRANT_INVALID_REF;
1572 queue->rx_ring_ref = GRANT_INVALID_REF;
1573 queue->rx.sring = NULL;
1574 queue->tx.sring = NULL;
0d160211 1575
a144ff09 1576 txs = (struct xen_netif_tx_sring *)get_zeroed_page(GFP_NOIO | __GFP_HIGH);
0d160211
JF
1577 if (!txs) {
1578 err = -ENOMEM;
1579 xenbus_dev_fatal(dev, err, "allocating tx ring page");
1580 goto fail;
1581 }
1582 SHARED_RING_INIT(txs);
2688fcb7 1583 FRONT_RING_INIT(&queue->tx, txs, PAGE_SIZE);
0d160211
JF
1584
1585 err = xenbus_grant_ring(dev, virt_to_mfn(txs));
1ca2983a
WL
1586 if (err < 0)
1587 goto grant_tx_ring_fail;
2688fcb7 1588 queue->tx_ring_ref = err;
0d160211 1589
a144ff09 1590 rxs = (struct xen_netif_rx_sring *)get_zeroed_page(GFP_NOIO | __GFP_HIGH);
0d160211
JF
1591 if (!rxs) {
1592 err = -ENOMEM;
1593 xenbus_dev_fatal(dev, err, "allocating rx ring page");
1ca2983a 1594 goto alloc_rx_ring_fail;
0d160211
JF
1595 }
1596 SHARED_RING_INIT(rxs);
2688fcb7 1597 FRONT_RING_INIT(&queue->rx, rxs, PAGE_SIZE);
0d160211
JF
1598
1599 err = xenbus_grant_ring(dev, virt_to_mfn(rxs));
1ca2983a
WL
1600 if (err < 0)
1601 goto grant_rx_ring_fail;
2688fcb7 1602 queue->rx_ring_ref = err;
0d160211 1603
d634bf2c 1604 if (feature_split_evtchn)
2688fcb7 1605 err = setup_netfront_split(queue);
d634bf2c
WL
1606 /* setup single event channel if
1607 * a) feature-split-event-channels == 0
1608 * b) feature-split-event-channels == 1 but failed to setup
1609 */
1610 if (!feature_split_evtchn || (feature_split_evtchn && err))
2688fcb7 1611 err = setup_netfront_single(queue);
d634bf2c 1612
0d160211 1613 if (err)
1ca2983a 1614 goto alloc_evtchn_fail;
0d160211 1615
0d160211
JF
1616 return 0;
1617
1ca2983a
WL
1618 /* If we fail to setup netfront, it is safe to just revoke access to
1619 * granted pages because backend is not accessing it at this point.
1620 */
1ca2983a 1621alloc_evtchn_fail:
2688fcb7 1622 gnttab_end_foreign_access_ref(queue->rx_ring_ref, 0);
1ca2983a
WL
1623grant_rx_ring_fail:
1624 free_page((unsigned long)rxs);
1625alloc_rx_ring_fail:
2688fcb7 1626 gnttab_end_foreign_access_ref(queue->tx_ring_ref, 0);
1ca2983a
WL
1627grant_tx_ring_fail:
1628 free_page((unsigned long)txs);
1629fail:
0d160211
JF
1630 return err;
1631}
1632
2688fcb7
AB
1633/* Queue-specific initialisation
1634 * This used to be done in xennet_create_dev() but must now
1635 * be run per-queue.
1636 */
1637static int xennet_init_queue(struct netfront_queue *queue)
1638{
1639 unsigned short i;
1640 int err = 0;
1641
1642 spin_lock_init(&queue->tx_lock);
1643 spin_lock_init(&queue->rx_lock);
1644
1645 skb_queue_head_init(&queue->rx_batch);
1646 queue->rx_target = RX_DFL_MIN_TARGET;
1647 queue->rx_min_target = RX_DFL_MIN_TARGET;
1648 queue->rx_max_target = RX_MAX_TARGET;
1649
1650 init_timer(&queue->rx_refill_timer);
1651 queue->rx_refill_timer.data = (unsigned long)queue;
1652 queue->rx_refill_timer.function = rx_refill_timeout;
1653
8b715010
WL
1654 snprintf(queue->name, sizeof(queue->name), "%s-q%u",
1655 queue->info->netdev->name, queue->id);
1656
2688fcb7
AB
1657 /* Initialise tx_skbs as a free chain containing every entry. */
1658 queue->tx_skb_freelist = 0;
1659 for (i = 0; i < NET_TX_RING_SIZE; i++) {
1660 skb_entry_set_link(&queue->tx_skbs[i], i+1);
1661 queue->grant_tx_ref[i] = GRANT_INVALID_REF;
1662 queue->grant_tx_page[i] = NULL;
1663 }
1664
1665 /* Clear out rx_skbs */
1666 for (i = 0; i < NET_RX_RING_SIZE; i++) {
1667 queue->rx_skbs[i] = NULL;
1668 queue->grant_rx_ref[i] = GRANT_INVALID_REF;
1669 }
1670
1671 /* A grant for every tx ring slot */
1672 if (gnttab_alloc_grant_references(TX_MAX_TARGET,
1673 &queue->gref_tx_head) < 0) {
1674 pr_alert("can't alloc tx grant refs\n");
1675 err = -ENOMEM;
1676 goto exit;
1677 }
1678
1679 /* A grant for every rx ring slot */
1680 if (gnttab_alloc_grant_references(RX_MAX_TARGET,
1681 &queue->gref_rx_head) < 0) {
1682 pr_alert("can't alloc rx grant refs\n");
1683 err = -ENOMEM;
1684 goto exit_free_tx;
1685 }
1686
2688fcb7
AB
1687 return 0;
1688
1689 exit_free_tx:
1690 gnttab_free_grant_references(queue->gref_tx_head);
1691 exit:
1692 return err;
1693}
1694
50ee6061
AB
1695static int write_queue_xenstore_keys(struct netfront_queue *queue,
1696 struct xenbus_transaction *xbt, int write_hierarchical)
1697{
1698 /* Write the queue-specific keys into XenStore in the traditional
1699 * way for a single queue, or in a queue subkeys for multiple
1700 * queues.
1701 */
1702 struct xenbus_device *dev = queue->info->xbdev;
1703 int err;
1704 const char *message;
1705 char *path;
1706 size_t pathsize;
1707
1708 /* Choose the correct place to write the keys */
1709 if (write_hierarchical) {
1710 pathsize = strlen(dev->nodename) + 10;
1711 path = kzalloc(pathsize, GFP_KERNEL);
1712 if (!path) {
1713 err = -ENOMEM;
1714 message = "out of memory while writing ring references";
1715 goto error;
1716 }
1717 snprintf(path, pathsize, "%s/queue-%u",
1718 dev->nodename, queue->id);
1719 } else {
1720 path = (char *)dev->nodename;
1721 }
1722
1723 /* Write ring references */
1724 err = xenbus_printf(*xbt, path, "tx-ring-ref", "%u",
1725 queue->tx_ring_ref);
1726 if (err) {
1727 message = "writing tx-ring-ref";
1728 goto error;
1729 }
1730
1731 err = xenbus_printf(*xbt, path, "rx-ring-ref", "%u",
1732 queue->rx_ring_ref);
1733 if (err) {
1734 message = "writing rx-ring-ref";
1735 goto error;
1736 }
1737
1738 /* Write event channels; taking into account both shared
1739 * and split event channel scenarios.
1740 */
1741 if (queue->tx_evtchn == queue->rx_evtchn) {
1742 /* Shared event channel */
1743 err = xenbus_printf(*xbt, path,
1744 "event-channel", "%u", queue->tx_evtchn);
1745 if (err) {
1746 message = "writing event-channel";
1747 goto error;
1748 }
1749 } else {
1750 /* Split event channels */
1751 err = xenbus_printf(*xbt, path,
1752 "event-channel-tx", "%u", queue->tx_evtchn);
1753 if (err) {
1754 message = "writing event-channel-tx";
1755 goto error;
1756 }
1757
1758 err = xenbus_printf(*xbt, path,
1759 "event-channel-rx", "%u", queue->rx_evtchn);
1760 if (err) {
1761 message = "writing event-channel-rx";
1762 goto error;
1763 }
1764 }
1765
1766 if (write_hierarchical)
1767 kfree(path);
1768 return 0;
1769
1770error:
1771 if (write_hierarchical)
1772 kfree(path);
1773 xenbus_dev_fatal(dev, err, "%s", message);
1774 return err;
1775}
1776
ce58725f
DV
1777static void xennet_destroy_queues(struct netfront_info *info)
1778{
1779 unsigned int i;
1780
1781 rtnl_lock();
1782
1783 for (i = 0; i < info->netdev->real_num_tx_queues; i++) {
1784 struct netfront_queue *queue = &info->queues[i];
1785
1786 if (netif_running(info->netdev))
1787 napi_disable(&queue->napi);
1788 netif_napi_del(&queue->napi);
1789 }
1790
1791 rtnl_unlock();
1792
1793 kfree(info->queues);
1794 info->queues = NULL;
1795}
1796
1797static int xennet_create_queues(struct netfront_info *info,
1798 unsigned int num_queues)
1799{
1800 unsigned int i;
1801 int ret;
1802
1803 info->queues = kcalloc(num_queues, sizeof(struct netfront_queue),
1804 GFP_KERNEL);
1805 if (!info->queues)
1806 return -ENOMEM;
1807
1808 rtnl_lock();
1809
1810 for (i = 0; i < num_queues; i++) {
1811 struct netfront_queue *queue = &info->queues[i];
1812
1813 queue->id = i;
1814 queue->info = info;
1815
1816 ret = xennet_init_queue(queue);
1817 if (ret < 0) {
1818 dev_warn(&info->netdev->dev, "only created %d queues\n",
1819 num_queues);
1820 num_queues = i;
1821 break;
1822 }
1823
1824 netif_napi_add(queue->info->netdev, &queue->napi,
1825 xennet_poll, 64);
1826 if (netif_running(info->netdev))
1827 napi_enable(&queue->napi);
1828 }
1829
1830 netif_set_real_num_tx_queues(info->netdev, num_queues);
1831
1832 rtnl_unlock();
1833
1834 if (num_queues == 0) {
1835 dev_err(&info->netdev->dev, "no queues\n");
1836 return -EINVAL;
1837 }
1838 return 0;
1839}
1840
0d160211 1841/* Common code used when first setting up, and when resuming. */
f502bf2b 1842static int talk_to_netback(struct xenbus_device *dev,
0d160211
JF
1843 struct netfront_info *info)
1844{
1845 const char *message;
1846 struct xenbus_transaction xbt;
1847 int err;
2688fcb7
AB
1848 unsigned int feature_split_evtchn;
1849 unsigned int i = 0;
50ee6061 1850 unsigned int max_queues = 0;
2688fcb7
AB
1851 struct netfront_queue *queue = NULL;
1852 unsigned int num_queues = 1;
0d160211 1853
2688fcb7
AB
1854 info->netdev->irq = 0;
1855
50ee6061
AB
1856 /* Check if backend supports multiple queues */
1857 err = xenbus_scanf(XBT_NIL, info->xbdev->otherend,
1858 "multi-queue-max-queues", "%u", &max_queues);
1859 if (err < 0)
1860 max_queues = 1;
1861 num_queues = min(max_queues, xennet_max_queues);
1862
2688fcb7
AB
1863 /* Check feature-split-event-channels */
1864 err = xenbus_scanf(XBT_NIL, info->xbdev->otherend,
1865 "feature-split-event-channels", "%u",
1866 &feature_split_evtchn);
1867 if (err < 0)
1868 feature_split_evtchn = 0;
1869
1870 /* Read mac addr. */
1871 err = xen_net_read_mac(dev, info->netdev->dev_addr);
1872 if (err) {
1873 xenbus_dev_fatal(dev, err, "parsing %s/mac", dev->nodename);
1874 goto out;
1875 }
1876
ce58725f
DV
1877 if (info->queues)
1878 xennet_destroy_queues(info);
1879
1880 err = xennet_create_queues(info, num_queues);
1881 if (err < 0)
1882 goto destroy_ring;
2688fcb7
AB
1883
1884 /* Create shared ring, alloc event channel -- for each queue */
1885 for (i = 0; i < num_queues; ++i) {
1886 queue = &info->queues[i];
2688fcb7
AB
1887 err = setup_netfront(dev, queue, feature_split_evtchn);
1888 if (err) {
ce58725f
DV
1889 /* setup_netfront() will tidy up the current
1890 * queue on error, but we need to clean up
2688fcb7
AB
1891 * those already allocated.
1892 */
1893 if (i > 0) {
1894 rtnl_lock();
1895 netif_set_real_num_tx_queues(info->netdev, i);
1896 rtnl_unlock();
1897 goto destroy_ring;
1898 } else {
1899 goto out;
1900 }
1901 }
1902 }
0d160211
JF
1903
1904again:
1905 err = xenbus_transaction_start(&xbt);
1906 if (err) {
1907 xenbus_dev_fatal(dev, err, "starting transaction");
1908 goto destroy_ring;
1909 }
1910
50ee6061
AB
1911 if (num_queues == 1) {
1912 err = write_queue_xenstore_keys(&info->queues[0], &xbt, 0); /* flat */
1913 if (err)
1914 goto abort_transaction_no_dev_fatal;
d634bf2c 1915 } else {
50ee6061
AB
1916 /* Write the number of queues */
1917 err = xenbus_printf(xbt, dev->nodename, "multi-queue-num-queues",
1918 "%u", num_queues);
d634bf2c 1919 if (err) {
50ee6061
AB
1920 message = "writing multi-queue-num-queues";
1921 goto abort_transaction_no_dev_fatal;
d634bf2c 1922 }
50ee6061
AB
1923
1924 /* Write the keys for each queue */
1925 for (i = 0; i < num_queues; ++i) {
1926 queue = &info->queues[i];
1927 err = write_queue_xenstore_keys(queue, &xbt, 1); /* hierarchical */
1928 if (err)
1929 goto abort_transaction_no_dev_fatal;
d634bf2c 1930 }
0d160211
JF
1931 }
1932
50ee6061 1933 /* The remaining keys are not queue-specific */
0d160211
JF
1934 err = xenbus_printf(xbt, dev->nodename, "request-rx-copy", "%u",
1935 1);
1936 if (err) {
1937 message = "writing request-rx-copy";
1938 goto abort_transaction;
1939 }
1940
1941 err = xenbus_printf(xbt, dev->nodename, "feature-rx-notify", "%d", 1);
1942 if (err) {
1943 message = "writing feature-rx-notify";
1944 goto abort_transaction;
1945 }
1946
1947 err = xenbus_printf(xbt, dev->nodename, "feature-sg", "%d", 1);
1948 if (err) {
1949 message = "writing feature-sg";
1950 goto abort_transaction;
1951 }
1952
1953 err = xenbus_printf(xbt, dev->nodename, "feature-gso-tcpv4", "%d", 1);
1954 if (err) {
1955 message = "writing feature-gso-tcpv4";
1956 goto abort_transaction;
1957 }
1958
2c0057de
PD
1959 err = xenbus_write(xbt, dev->nodename, "feature-gso-tcpv6", "1");
1960 if (err) {
1961 message = "writing feature-gso-tcpv6";
1962 goto abort_transaction;
1963 }
1964
1965 err = xenbus_write(xbt, dev->nodename, "feature-ipv6-csum-offload",
1966 "1");
1967 if (err) {
1968 message = "writing feature-ipv6-csum-offload";
1969 goto abort_transaction;
1970 }
1971
0d160211
JF
1972 err = xenbus_transaction_end(xbt, 0);
1973 if (err) {
1974 if (err == -EAGAIN)
1975 goto again;
1976 xenbus_dev_fatal(dev, err, "completing transaction");
1977 goto destroy_ring;
1978 }
1979
1980 return 0;
1981
1982 abort_transaction:
0d160211 1983 xenbus_dev_fatal(dev, err, "%s", message);
50ee6061
AB
1984abort_transaction_no_dev_fatal:
1985 xenbus_transaction_end(xbt, 1);
0d160211
JF
1986 destroy_ring:
1987 xennet_disconnect_backend(info);
2688fcb7
AB
1988 kfree(info->queues);
1989 info->queues = NULL;
1990 rtnl_lock();
1991 netif_set_real_num_tx_queues(info->netdev, 0);
db8c8ab6 1992 rtnl_unlock();
0d160211
JF
1993 out:
1994 return err;
1995}
1996
0d160211
JF
1997static int xennet_connect(struct net_device *dev)
1998{
1999 struct netfront_info *np = netdev_priv(dev);
2688fcb7 2000 unsigned int num_queues = 0;
a5b5dc3c 2001 int err;
0d160211 2002 unsigned int feature_rx_copy;
2688fcb7
AB
2003 unsigned int j = 0;
2004 struct netfront_queue *queue = NULL;
0d160211
JF
2005
2006 err = xenbus_scanf(XBT_NIL, np->xbdev->otherend,
2007 "feature-rx-copy", "%u", &feature_rx_copy);
2008 if (err != 1)
2009 feature_rx_copy = 0;
2010
2011 if (!feature_rx_copy) {
2012 dev_info(&dev->dev,
898eb71c 2013 "backend does not support copying receive path\n");
0d160211
JF
2014 return -ENODEV;
2015 }
2016
f502bf2b 2017 err = talk_to_netback(np->xbdev, np);
0d160211
JF
2018 if (err)
2019 return err;
2020
2688fcb7
AB
2021 /* talk_to_netback() sets the correct number of queues */
2022 num_queues = dev->real_num_tx_queues;
2023
1ba37c51 2024 rtnl_lock();
fb507934 2025 netdev_update_features(dev);
1ba37c51 2026 rtnl_unlock();
0d160211 2027
0d160211 2028 /*
a5b5dc3c 2029 * All public and private state should now be sane. Get
0d160211
JF
2030 * ready to start sending and receiving packets and give the driver
2031 * domain a kick because we've probably just requeued some
2032 * packets.
2033 */
2034 netif_carrier_on(np->netdev);
2688fcb7
AB
2035 for (j = 0; j < num_queues; ++j) {
2036 queue = &np->queues[j];
f50b4076 2037
2688fcb7
AB
2038 notify_remote_via_irq(queue->tx_irq);
2039 if (queue->tx_irq != queue->rx_irq)
2040 notify_remote_via_irq(queue->rx_irq);
2688fcb7 2041
f50b4076
DV
2042 spin_lock_irq(&queue->tx_lock);
2043 xennet_tx_buf_gc(queue);
2688fcb7 2044 spin_unlock_irq(&queue->tx_lock);
f50b4076
DV
2045
2046 spin_lock_bh(&queue->rx_lock);
2047 xennet_alloc_rx_buffers(queue);
2688fcb7
AB
2048 spin_unlock_bh(&queue->rx_lock);
2049 }
0d160211
JF
2050
2051 return 0;
2052}
2053
2054/**
2055 * Callback received when the backend's state changes.
2056 */
f502bf2b 2057static void netback_changed(struct xenbus_device *dev,
0d160211
JF
2058 enum xenbus_state backend_state)
2059{
1b713e00 2060 struct netfront_info *np = dev_get_drvdata(&dev->dev);
0d160211
JF
2061 struct net_device *netdev = np->netdev;
2062
2063 dev_dbg(&dev->dev, "%s\n", xenbus_strstate(backend_state));
2064
2065 switch (backend_state) {
2066 case XenbusStateInitialising:
2067 case XenbusStateInitialised:
b78c9512
NI
2068 case XenbusStateReconfiguring:
2069 case XenbusStateReconfigured:
0d160211 2070 case XenbusStateUnknown:
0d160211
JF
2071 break;
2072
2073 case XenbusStateInitWait:
2074 if (dev->state != XenbusStateInitialising)
2075 break;
2076 if (xennet_connect(netdev) != 0)
2077 break;
2078 xenbus_switch_state(dev, XenbusStateConnected);
08e34eb1
LE
2079 break;
2080
2081 case XenbusStateConnected:
ee89bab1 2082 netdev_notify_peers(netdev);
0d160211
JF
2083 break;
2084
bce3ea81
DV
2085 case XenbusStateClosed:
2086 if (dev->state == XenbusStateClosed)
2087 break;
2088 /* Missed the backend's CLOSING state -- fallthrough */
0d160211
JF
2089 case XenbusStateClosing:
2090 xenbus_frontend_closed(dev);
2091 break;
2092 }
2093}
2094
e0ce4af9
IC
2095static const struct xennet_stat {
2096 char name[ETH_GSTRING_LEN];
2097 u16 offset;
2098} xennet_stats[] = {
2099 {
2100 "rx_gso_checksum_fixup",
2101 offsetof(struct netfront_info, rx_gso_checksum_fixup)
2102 },
2103};
2104
2105static int xennet_get_sset_count(struct net_device *dev, int string_set)
2106{
2107 switch (string_set) {
2108 case ETH_SS_STATS:
2109 return ARRAY_SIZE(xennet_stats);
2110 default:
2111 return -EINVAL;
2112 }
2113}
2114
2115static void xennet_get_ethtool_stats(struct net_device *dev,
2116 struct ethtool_stats *stats, u64 * data)
2117{
2118 void *np = netdev_priv(dev);
2119 int i;
2120
2121 for (i = 0; i < ARRAY_SIZE(xennet_stats); i++)
2688fcb7 2122 data[i] = atomic_read((atomic_t *)(np + xennet_stats[i].offset));
e0ce4af9
IC
2123}
2124
2125static void xennet_get_strings(struct net_device *dev, u32 stringset, u8 * data)
2126{
2127 int i;
2128
2129 switch (stringset) {
2130 case ETH_SS_STATS:
2131 for (i = 0; i < ARRAY_SIZE(xennet_stats); i++)
2132 memcpy(data + i * ETH_GSTRING_LEN,
2133 xennet_stats[i].name, ETH_GSTRING_LEN);
2134 break;
2135 }
2136}
2137
0fc0b732 2138static const struct ethtool_ops xennet_ethtool_ops =
0d160211 2139{
0d160211 2140 .get_link = ethtool_op_get_link,
e0ce4af9
IC
2141
2142 .get_sset_count = xennet_get_sset_count,
2143 .get_ethtool_stats = xennet_get_ethtool_stats,
2144 .get_strings = xennet_get_strings,
0d160211
JF
2145};
2146
2147#ifdef CONFIG_SYSFS
2148static ssize_t show_rxbuf_min(struct device *dev,
2149 struct device_attribute *attr, char *buf)
2150{
2151 struct net_device *netdev = to_net_dev(dev);
2152 struct netfront_info *info = netdev_priv(netdev);
2688fcb7 2153 unsigned int num_queues = netdev->real_num_tx_queues;
0d160211 2154
2688fcb7
AB
2155 if (num_queues)
2156 return sprintf(buf, "%u\n", info->queues[0].rx_min_target);
2157 else
2158 return sprintf(buf, "%u\n", RX_MIN_TARGET);
0d160211
JF
2159}
2160
2161static ssize_t store_rxbuf_min(struct device *dev,
2162 struct device_attribute *attr,
2163 const char *buf, size_t len)
2164{
2165 struct net_device *netdev = to_net_dev(dev);
2166 struct netfront_info *np = netdev_priv(netdev);
2688fcb7 2167 unsigned int num_queues = netdev->real_num_tx_queues;
0d160211
JF
2168 char *endp;
2169 unsigned long target;
2688fcb7
AB
2170 unsigned int i;
2171 struct netfront_queue *queue;
0d160211
JF
2172
2173 if (!capable(CAP_NET_ADMIN))
2174 return -EPERM;
2175
2176 target = simple_strtoul(buf, &endp, 0);
2177 if (endp == buf)
2178 return -EBADMSG;
2179
2180 if (target < RX_MIN_TARGET)
2181 target = RX_MIN_TARGET;
2182 if (target > RX_MAX_TARGET)
2183 target = RX_MAX_TARGET;
2184
2688fcb7
AB
2185 for (i = 0; i < num_queues; ++i) {
2186 queue = &np->queues[i];
2187 spin_lock_bh(&queue->rx_lock);
2188 if (target > queue->rx_max_target)
2189 queue->rx_max_target = target;
2190 queue->rx_min_target = target;
2191 if (target > queue->rx_target)
2192 queue->rx_target = target;
0d160211 2193
2688fcb7 2194 xennet_alloc_rx_buffers(queue);
0d160211 2195
2688fcb7
AB
2196 spin_unlock_bh(&queue->rx_lock);
2197 }
0d160211
JF
2198 return len;
2199}
2200
2201static ssize_t show_rxbuf_max(struct device *dev,
2202 struct device_attribute *attr, char *buf)
2203{
2204 struct net_device *netdev = to_net_dev(dev);
2205 struct netfront_info *info = netdev_priv(netdev);
2688fcb7 2206 unsigned int num_queues = netdev->real_num_tx_queues;
0d160211 2207
2688fcb7
AB
2208 if (num_queues)
2209 return sprintf(buf, "%u\n", info->queues[0].rx_max_target);
2210 else
2211 return sprintf(buf, "%u\n", RX_MAX_TARGET);
0d160211
JF
2212}
2213
2214static ssize_t store_rxbuf_max(struct device *dev,
2215 struct device_attribute *attr,
2216 const char *buf, size_t len)
2217{
2218 struct net_device *netdev = to_net_dev(dev);
2219 struct netfront_info *np = netdev_priv(netdev);
2688fcb7 2220 unsigned int num_queues = netdev->real_num_tx_queues;
0d160211
JF
2221 char *endp;
2222 unsigned long target;
2688fcb7
AB
2223 unsigned int i = 0;
2224 struct netfront_queue *queue = NULL;
0d160211
JF
2225
2226 if (!capable(CAP_NET_ADMIN))
2227 return -EPERM;
2228
2229 target = simple_strtoul(buf, &endp, 0);
2230 if (endp == buf)
2231 return -EBADMSG;
2232
2233 if (target < RX_MIN_TARGET)
2234 target = RX_MIN_TARGET;
2235 if (target > RX_MAX_TARGET)
2236 target = RX_MAX_TARGET;
2237
2688fcb7
AB
2238 for (i = 0; i < num_queues; ++i) {
2239 queue = &np->queues[i];
2240 spin_lock_bh(&queue->rx_lock);
2241 if (target < queue->rx_min_target)
2242 queue->rx_min_target = target;
2243 queue->rx_max_target = target;
2244 if (target < queue->rx_target)
2245 queue->rx_target = target;
0d160211 2246
2688fcb7 2247 xennet_alloc_rx_buffers(queue);
0d160211 2248
2688fcb7
AB
2249 spin_unlock_bh(&queue->rx_lock);
2250 }
0d160211
JF
2251 return len;
2252}
2253
2254static ssize_t show_rxbuf_cur(struct device *dev,
2255 struct device_attribute *attr, char *buf)
2256{
2257 struct net_device *netdev = to_net_dev(dev);
2258 struct netfront_info *info = netdev_priv(netdev);
2688fcb7 2259 unsigned int num_queues = netdev->real_num_tx_queues;
0d160211 2260
2688fcb7
AB
2261 if (num_queues)
2262 return sprintf(buf, "%u\n", info->queues[0].rx_target);
2263 else
2264 return sprintf(buf, "0\n");
0d160211
JF
2265}
2266
2267static struct device_attribute xennet_attrs[] = {
2268 __ATTR(rxbuf_min, S_IRUGO|S_IWUSR, show_rxbuf_min, store_rxbuf_min),
2269 __ATTR(rxbuf_max, S_IRUGO|S_IWUSR, show_rxbuf_max, store_rxbuf_max),
2270 __ATTR(rxbuf_cur, S_IRUGO, show_rxbuf_cur, NULL),
2271};
2272
2273static int xennet_sysfs_addif(struct net_device *netdev)
2274{
2275 int i;
2276 int err;
2277
2278 for (i = 0; i < ARRAY_SIZE(xennet_attrs); i++) {
2279 err = device_create_file(&netdev->dev,
2280 &xennet_attrs[i]);
2281 if (err)
2282 goto fail;
2283 }
2284 return 0;
2285
2286 fail:
2287 while (--i >= 0)
2288 device_remove_file(&netdev->dev, &xennet_attrs[i]);
2289 return err;
2290}
2291
2292static void xennet_sysfs_delif(struct net_device *netdev)
2293{
2294 int i;
2295
2296 for (i = 0; i < ARRAY_SIZE(xennet_attrs); i++)
2297 device_remove_file(&netdev->dev, &xennet_attrs[i]);
2298}
2299
2300#endif /* CONFIG_SYSFS */
2301
73db144b 2302static const struct xenbus_device_id netfront_ids[] = {
0d160211
JF
2303 { "vif" },
2304 { "" }
2305};
2306
2307
8e0e46bb 2308static int xennet_remove(struct xenbus_device *dev)
0d160211 2309{
1b713e00 2310 struct netfront_info *info = dev_get_drvdata(&dev->dev);
2688fcb7
AB
2311 unsigned int num_queues = info->netdev->real_num_tx_queues;
2312 struct netfront_queue *queue = NULL;
2313 unsigned int i = 0;
0d160211
JF
2314
2315 dev_dbg(&dev->dev, "%s\n", dev->nodename);
2316
0d160211
JF
2317 xennet_disconnect_backend(info);
2318
0d160211
JF
2319 xennet_sysfs_delif(info->netdev);
2320
6bc96d04
IC
2321 unregister_netdev(info->netdev);
2322
2688fcb7
AB
2323 for (i = 0; i < num_queues; ++i) {
2324 queue = &info->queues[i];
2325 del_timer_sync(&queue->rx_refill_timer);
2326 }
2327
2328 if (num_queues) {
2329 kfree(info->queues);
2330 info->queues = NULL;
2331 }
6bc96d04 2332
e00f85be 2333 free_percpu(info->stats);
2334
0d160211
JF
2335 free_netdev(info->netdev);
2336
2337 return 0;
2338}
2339
73db144b 2340static DEFINE_XENBUS_DRIVER(netfront, ,
0d160211 2341 .probe = netfront_probe,
8e0e46bb 2342 .remove = xennet_remove,
0d160211 2343 .resume = netfront_resume,
f502bf2b 2344 .otherend_changed = netback_changed,
73db144b 2345);
0d160211
JF
2346
2347static int __init netif_init(void)
2348{
6e833587 2349 if (!xen_domain())
0d160211
JF
2350 return -ENODEV;
2351
51c71a3b 2352 if (!xen_has_pv_nic_devices())
b9136d20
IM
2353 return -ENODEV;
2354
383eda32 2355 pr_info("Initialising Xen virtual ethernet driver\n");
0d160211 2356
50ee6061
AB
2357 /* Allow as many queues as there are CPUs, by default */
2358 xennet_max_queues = num_online_cpus();
2359
ffb78a26 2360 return xenbus_register_frontend(&netfront_driver);
0d160211
JF
2361}
2362module_init(netif_init);
2363
2364
2365static void __exit netif_exit(void)
2366{
ffb78a26 2367 xenbus_unregister_driver(&netfront_driver);
0d160211
JF
2368}
2369module_exit(netif_exit);
2370
2371MODULE_DESCRIPTION("Xen virtual network device frontend");
2372MODULE_LICENSE("GPL");
d2f0c52b 2373MODULE_ALIAS("xen:vif");
4f93f09b 2374MODULE_ALIAS("xennet");