xen: remove DEFINE_XENBUS_DRIVER() macro
[linux-2.6-block.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)) {
97a6d1bb
ZK
631 net_dbg_ratelimited("xennet: skb rides the rocket: %d slots, %d bytes\n",
632 slots, skb->len);
633 if (skb_linearize(skb))
634 goto drop;
0d160211
JF
635 }
636
2688fcb7 637 spin_lock_irqsave(&queue->tx_lock, flags);
0d160211
JF
638
639 if (unlikely(!netif_carrier_ok(dev) ||
f36c3747 640 (slots > 1 && !xennet_can_sg(dev)) ||
fc741216 641 netif_needs_gso(skb, netif_skb_features(skb)))) {
2688fcb7 642 spin_unlock_irqrestore(&queue->tx_lock, flags);
0d160211
JF
643 goto drop;
644 }
645
2688fcb7 646 i = queue->tx.req_prod_pvt;
0d160211 647
2688fcb7
AB
648 id = get_id_from_freelist(&queue->tx_skb_freelist, queue->tx_skbs);
649 queue->tx_skbs[id].skb = skb;
0d160211 650
2688fcb7 651 tx = RING_GET_REQUEST(&queue->tx, i);
0d160211
JF
652
653 tx->id = id;
2688fcb7 654 ref = gnttab_claim_grant_reference(&queue->gref_tx_head);
0d160211
JF
655 BUG_ON((signed short)ref < 0);
656 mfn = virt_to_mfn(data);
657 gnttab_grant_foreign_access_ref(
2688fcb7
AB
658 ref, queue->info->xbdev->otherend_id, mfn, GNTMAP_readonly);
659 queue->grant_tx_page[id] = virt_to_page(data);
660 tx->gref = queue->grant_tx_ref[id] = ref;
0d160211
JF
661 tx->offset = offset;
662 tx->size = len;
0d160211
JF
663
664 tx->flags = 0;
665 if (skb->ip_summed == CHECKSUM_PARTIAL)
666 /* local packet? */
f942dc25 667 tx->flags |= XEN_NETTXF_csum_blank | XEN_NETTXF_data_validated;
0d160211
JF
668 else if (skb->ip_summed == CHECKSUM_UNNECESSARY)
669 /* remote but checksummed. */
f942dc25 670 tx->flags |= XEN_NETTXF_data_validated;
0d160211
JF
671
672 if (skb_shinfo(skb)->gso_size) {
673 struct xen_netif_extra_info *gso;
674
675 gso = (struct xen_netif_extra_info *)
2688fcb7 676 RING_GET_REQUEST(&queue->tx, ++i);
0d160211 677
e2d617c0 678 tx->flags |= XEN_NETTXF_extra_info;
0d160211
JF
679
680 gso->u.gso.size = skb_shinfo(skb)->gso_size;
2c0057de
PD
681 gso->u.gso.type = (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV6) ?
682 XEN_NETIF_GSO_TYPE_TCPV6 :
683 XEN_NETIF_GSO_TYPE_TCPV4;
0d160211
JF
684 gso->u.gso.pad = 0;
685 gso->u.gso.features = 0;
686
687 gso->type = XEN_NETIF_EXTRA_TYPE_GSO;
688 gso->flags = 0;
0d160211
JF
689 }
690
2688fcb7 691 queue->tx.req_prod_pvt = i + 1;
0d160211 692
2688fcb7 693 xennet_make_frags(skb, queue, tx);
0d160211
JF
694 tx->size = skb->len;
695
2688fcb7 696 RING_PUSH_REQUESTS_AND_CHECK_NOTIFY(&queue->tx, notify);
0d160211 697 if (notify)
2688fcb7 698 notify_remote_via_irq(queue->tx_irq);
0d160211 699
e00f85be 700 u64_stats_update_begin(&stats->syncp);
701 stats->tx_bytes += skb->len;
702 stats->tx_packets++;
703 u64_stats_update_end(&stats->syncp);
10a273a6
JF
704
705 /* Note: It is not safe to access skb after xennet_tx_buf_gc()! */
2688fcb7 706 xennet_tx_buf_gc(queue);
0d160211 707
2688fcb7
AB
708 if (!netfront_tx_slot_available(queue))
709 netif_tx_stop_queue(netdev_get_tx_queue(dev, queue->id));
0d160211 710
2688fcb7 711 spin_unlock_irqrestore(&queue->tx_lock, flags);
0d160211 712
6ed10654 713 return NETDEV_TX_OK;
0d160211
JF
714
715 drop:
09f75cd7 716 dev->stats.tx_dropped++;
979de8a0 717 dev_kfree_skb_any(skb);
6ed10654 718 return NETDEV_TX_OK;
0d160211
JF
719}
720
721static int xennet_close(struct net_device *dev)
722{
723 struct netfront_info *np = netdev_priv(dev);
2688fcb7
AB
724 unsigned int num_queues = dev->real_num_tx_queues;
725 unsigned int i;
726 struct netfront_queue *queue;
727 netif_tx_stop_all_queues(np->netdev);
728 for (i = 0; i < num_queues; ++i) {
729 queue = &np->queues[i];
730 napi_disable(&queue->napi);
731 }
0d160211
JF
732 return 0;
733}
734
2688fcb7 735static void xennet_move_rx_slot(struct netfront_queue *queue, struct sk_buff *skb,
0d160211
JF
736 grant_ref_t ref)
737{
2688fcb7
AB
738 int new = xennet_rxidx(queue->rx.req_prod_pvt);
739
740 BUG_ON(queue->rx_skbs[new]);
741 queue->rx_skbs[new] = skb;
742 queue->grant_rx_ref[new] = ref;
743 RING_GET_REQUEST(&queue->rx, queue->rx.req_prod_pvt)->id = new;
744 RING_GET_REQUEST(&queue->rx, queue->rx.req_prod_pvt)->gref = ref;
745 queue->rx.req_prod_pvt++;
0d160211
JF
746}
747
2688fcb7 748static int xennet_get_extras(struct netfront_queue *queue,
0d160211
JF
749 struct xen_netif_extra_info *extras,
750 RING_IDX rp)
751
752{
753 struct xen_netif_extra_info *extra;
2688fcb7
AB
754 struct device *dev = &queue->info->netdev->dev;
755 RING_IDX cons = queue->rx.rsp_cons;
0d160211
JF
756 int err = 0;
757
758 do {
759 struct sk_buff *skb;
760 grant_ref_t ref;
761
762 if (unlikely(cons + 1 == rp)) {
763 if (net_ratelimit())
764 dev_warn(dev, "Missing extra info\n");
765 err = -EBADR;
766 break;
767 }
768
769 extra = (struct xen_netif_extra_info *)
2688fcb7 770 RING_GET_RESPONSE(&queue->rx, ++cons);
0d160211
JF
771
772 if (unlikely(!extra->type ||
773 extra->type >= XEN_NETIF_EXTRA_TYPE_MAX)) {
774 if (net_ratelimit())
775 dev_warn(dev, "Invalid extra type: %d\n",
776 extra->type);
777 err = -EINVAL;
778 } else {
779 memcpy(&extras[extra->type - 1], extra,
780 sizeof(*extra));
781 }
782
2688fcb7
AB
783 skb = xennet_get_rx_skb(queue, cons);
784 ref = xennet_get_rx_ref(queue, cons);
785 xennet_move_rx_slot(queue, skb, ref);
0d160211
JF
786 } while (extra->flags & XEN_NETIF_EXTRA_FLAG_MORE);
787
2688fcb7 788 queue->rx.rsp_cons = cons;
0d160211
JF
789 return err;
790}
791
2688fcb7 792static int xennet_get_responses(struct netfront_queue *queue,
0d160211
JF
793 struct netfront_rx_info *rinfo, RING_IDX rp,
794 struct sk_buff_head *list)
795{
796 struct xen_netif_rx_response *rx = &rinfo->rx;
797 struct xen_netif_extra_info *extras = rinfo->extras;
2688fcb7
AB
798 struct device *dev = &queue->info->netdev->dev;
799 RING_IDX cons = queue->rx.rsp_cons;
800 struct sk_buff *skb = xennet_get_rx_skb(queue, cons);
801 grant_ref_t ref = xennet_get_rx_ref(queue, cons);
0d160211 802 int max = MAX_SKB_FRAGS + (rx->status <= RX_COPY_THRESHOLD);
7158ff6d 803 int slots = 1;
0d160211
JF
804 int err = 0;
805 unsigned long ret;
806
f942dc25 807 if (rx->flags & XEN_NETRXF_extra_info) {
2688fcb7
AB
808 err = xennet_get_extras(queue, extras, rp);
809 cons = queue->rx.rsp_cons;
0d160211
JF
810 }
811
812 for (;;) {
813 if (unlikely(rx->status < 0 ||
814 rx->offset + rx->status > PAGE_SIZE)) {
815 if (net_ratelimit())
816 dev_warn(dev, "rx->offset: %x, size: %u\n",
817 rx->offset, rx->status);
2688fcb7 818 xennet_move_rx_slot(queue, skb, ref);
0d160211
JF
819 err = -EINVAL;
820 goto next;
821 }
822
823 /*
824 * This definitely indicates a bug, either in this driver or in
825 * the backend driver. In future this should flag the bad
697089dc 826 * situation to the system controller to reboot the backend.
0d160211
JF
827 */
828 if (ref == GRANT_INVALID_REF) {
829 if (net_ratelimit())
830 dev_warn(dev, "Bad rx response id %d.\n",
831 rx->id);
832 err = -EINVAL;
833 goto next;
834 }
835
836 ret = gnttab_end_foreign_access_ref(ref, 0);
837 BUG_ON(!ret);
838
2688fcb7 839 gnttab_release_grant_reference(&queue->gref_rx_head, ref);
0d160211
JF
840
841 __skb_queue_tail(list, skb);
842
843next:
f942dc25 844 if (!(rx->flags & XEN_NETRXF_more_data))
0d160211
JF
845 break;
846
7158ff6d 847 if (cons + slots == rp) {
0d160211 848 if (net_ratelimit())
7158ff6d 849 dev_warn(dev, "Need more slots\n");
0d160211
JF
850 err = -ENOENT;
851 break;
852 }
853
2688fcb7
AB
854 rx = RING_GET_RESPONSE(&queue->rx, cons + slots);
855 skb = xennet_get_rx_skb(queue, cons + slots);
856 ref = xennet_get_rx_ref(queue, cons + slots);
7158ff6d 857 slots++;
0d160211
JF
858 }
859
7158ff6d 860 if (unlikely(slots > max)) {
0d160211 861 if (net_ratelimit())
697089dc 862 dev_warn(dev, "Too many slots\n");
0d160211
JF
863 err = -E2BIG;
864 }
865
866 if (unlikely(err))
2688fcb7 867 queue->rx.rsp_cons = cons + slots;
0d160211
JF
868
869 return err;
870}
871
872static int xennet_set_skb_gso(struct sk_buff *skb,
873 struct xen_netif_extra_info *gso)
874{
875 if (!gso->u.gso.size) {
876 if (net_ratelimit())
383eda32 877 pr_warn("GSO size must not be zero\n");
0d160211
JF
878 return -EINVAL;
879 }
880
2c0057de
PD
881 if (gso->u.gso.type != XEN_NETIF_GSO_TYPE_TCPV4 &&
882 gso->u.gso.type != XEN_NETIF_GSO_TYPE_TCPV6) {
0d160211 883 if (net_ratelimit())
383eda32 884 pr_warn("Bad GSO type %d\n", gso->u.gso.type);
0d160211
JF
885 return -EINVAL;
886 }
887
888 skb_shinfo(skb)->gso_size = gso->u.gso.size;
2c0057de
PD
889 skb_shinfo(skb)->gso_type =
890 (gso->u.gso.type == XEN_NETIF_GSO_TYPE_TCPV4) ?
891 SKB_GSO_TCPV4 :
892 SKB_GSO_TCPV6;
0d160211
JF
893
894 /* Header must be checked, and gso_segs computed. */
895 skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
896 skb_shinfo(skb)->gso_segs = 0;
897
898 return 0;
899}
900
2688fcb7 901static RING_IDX xennet_fill_frags(struct netfront_queue *queue,
0d160211
JF
902 struct sk_buff *skb,
903 struct sk_buff_head *list)
904{
905 struct skb_shared_info *shinfo = skb_shinfo(skb);
2688fcb7 906 RING_IDX cons = queue->rx.rsp_cons;
0d160211
JF
907 struct sk_buff *nskb;
908
909 while ((nskb = __skb_dequeue(list))) {
910 struct xen_netif_rx_response *rx =
2688fcb7 911 RING_GET_RESPONSE(&queue->rx, ++cons);
01c68026 912 skb_frag_t *nfrag = &skb_shinfo(nskb)->frags[0];
0d160211 913
093b9c71
JB
914 if (shinfo->nr_frags == MAX_SKB_FRAGS) {
915 unsigned int pull_to = NETFRONT_SKB_CB(skb)->pull_to;
0d160211 916
093b9c71
JB
917 BUG_ON(pull_to <= skb_headlen(skb));
918 __pskb_pull_tail(skb, pull_to - skb_headlen(skb));
919 }
920 BUG_ON(shinfo->nr_frags >= MAX_SKB_FRAGS);
921
922 skb_add_rx_frag(skb, shinfo->nr_frags, skb_frag_page(nfrag),
923 rx->offset, rx->status, PAGE_SIZE);
0d160211
JF
924
925 skb_shinfo(nskb)->nr_frags = 0;
926 kfree_skb(nskb);
0d160211
JF
927 }
928
0d160211
JF
929 return cons;
930}
931
e0ce4af9 932static int checksum_setup(struct net_device *dev, struct sk_buff *skb)
0d160211 933{
b5cf66cd 934 bool recalculate_partial_csum = false;
e0ce4af9
IC
935
936 /*
937 * A GSO SKB must be CHECKSUM_PARTIAL. However some buggy
938 * peers can fail to set NETRXF_csum_blank when sending a GSO
939 * frame. In this case force the SKB to CHECKSUM_PARTIAL and
940 * recalculate the partial checksum.
941 */
942 if (skb->ip_summed != CHECKSUM_PARTIAL && skb_is_gso(skb)) {
943 struct netfront_info *np = netdev_priv(dev);
2688fcb7 944 atomic_inc(&np->rx_gso_checksum_fixup);
e0ce4af9 945 skb->ip_summed = CHECKSUM_PARTIAL;
b5cf66cd 946 recalculate_partial_csum = true;
e0ce4af9
IC
947 }
948
949 /* A non-CHECKSUM_PARTIAL SKB does not require setup. */
950 if (skb->ip_summed != CHECKSUM_PARTIAL)
951 return 0;
0d160211 952
b5cf66cd 953 return skb_checksum_setup(skb, recalculate_partial_csum);
0d160211
JF
954}
955
2688fcb7 956static int handle_incoming_queue(struct netfront_queue *queue,
09f75cd7 957 struct sk_buff_head *rxq)
0d160211 958{
2688fcb7 959 struct netfront_stats *stats = this_cpu_ptr(queue->info->stats);
0d160211
JF
960 int packets_dropped = 0;
961 struct sk_buff *skb;
962
963 while ((skb = __skb_dequeue(rxq)) != NULL) {
3683243b 964 int pull_to = NETFRONT_SKB_CB(skb)->pull_to;
0d160211 965
093b9c71
JB
966 if (pull_to > skb_headlen(skb))
967 __pskb_pull_tail(skb, pull_to - skb_headlen(skb));
0d160211
JF
968
969 /* Ethernet work: Delayed to here as it peeks the header. */
2688fcb7 970 skb->protocol = eth_type_trans(skb, queue->info->netdev);
d554f73d 971 skb_reset_network_header(skb);
0d160211 972
2688fcb7 973 if (checksum_setup(queue->info->netdev, skb)) {
e0ce4af9
IC
974 kfree_skb(skb);
975 packets_dropped++;
2688fcb7 976 queue->info->netdev->stats.rx_errors++;
e0ce4af9 977 continue;
0d160211
JF
978 }
979
e00f85be 980 u64_stats_update_begin(&stats->syncp);
981 stats->rx_packets++;
982 stats->rx_bytes += skb->len;
983 u64_stats_update_end(&stats->syncp);
0d160211
JF
984
985 /* Pass it up. */
2688fcb7 986 napi_gro_receive(&queue->napi, skb);
0d160211
JF
987 }
988
989 return packets_dropped;
990}
991
bea3348e 992static int xennet_poll(struct napi_struct *napi, int budget)
0d160211 993{
2688fcb7
AB
994 struct netfront_queue *queue = container_of(napi, struct netfront_queue, napi);
995 struct net_device *dev = queue->info->netdev;
0d160211
JF
996 struct sk_buff *skb;
997 struct netfront_rx_info rinfo;
998 struct xen_netif_rx_response *rx = &rinfo.rx;
999 struct xen_netif_extra_info *extras = rinfo.extras;
1000 RING_IDX i, rp;
bea3348e 1001 int work_done;
0d160211
JF
1002 struct sk_buff_head rxq;
1003 struct sk_buff_head errq;
1004 struct sk_buff_head tmpq;
1005 unsigned long flags;
0d160211
JF
1006 int err;
1007
2688fcb7 1008 spin_lock(&queue->rx_lock);
0d160211 1009
0d160211
JF
1010 skb_queue_head_init(&rxq);
1011 skb_queue_head_init(&errq);
1012 skb_queue_head_init(&tmpq);
1013
2688fcb7 1014 rp = queue->rx.sring->rsp_prod;
0d160211
JF
1015 rmb(); /* Ensure we see queued responses up to 'rp'. */
1016
2688fcb7 1017 i = queue->rx.rsp_cons;
0d160211
JF
1018 work_done = 0;
1019 while ((i != rp) && (work_done < budget)) {
2688fcb7 1020 memcpy(rx, RING_GET_RESPONSE(&queue->rx, i), sizeof(*rx));
0d160211
JF
1021 memset(extras, 0, sizeof(rinfo.extras));
1022
2688fcb7 1023 err = xennet_get_responses(queue, &rinfo, rp, &tmpq);
0d160211
JF
1024
1025 if (unlikely(err)) {
1026err:
1027 while ((skb = __skb_dequeue(&tmpq)))
1028 __skb_queue_tail(&errq, skb);
09f75cd7 1029 dev->stats.rx_errors++;
2688fcb7 1030 i = queue->rx.rsp_cons;
0d160211
JF
1031 continue;
1032 }
1033
1034 skb = __skb_dequeue(&tmpq);
1035
1036 if (extras[XEN_NETIF_EXTRA_TYPE_GSO - 1].type) {
1037 struct xen_netif_extra_info *gso;
1038 gso = &extras[XEN_NETIF_EXTRA_TYPE_GSO - 1];
1039
1040 if (unlikely(xennet_set_skb_gso(skb, gso))) {
1041 __skb_queue_head(&tmpq, skb);
2688fcb7 1042 queue->rx.rsp_cons += skb_queue_len(&tmpq);
0d160211
JF
1043 goto err;
1044 }
1045 }
1046
3683243b
IC
1047 NETFRONT_SKB_CB(skb)->pull_to = rx->status;
1048 if (NETFRONT_SKB_CB(skb)->pull_to > RX_COPY_THRESHOLD)
1049 NETFRONT_SKB_CB(skb)->pull_to = RX_COPY_THRESHOLD;
0d160211 1050
3683243b
IC
1051 skb_shinfo(skb)->frags[0].page_offset = rx->offset;
1052 skb_frag_size_set(&skb_shinfo(skb)->frags[0], rx->status);
1053 skb->data_len = rx->status;
093b9c71 1054 skb->len += rx->status;
0d160211 1055
2688fcb7 1056 i = xennet_fill_frags(queue, skb, &tmpq);
0d160211 1057
f942dc25 1058 if (rx->flags & XEN_NETRXF_csum_blank)
0d160211 1059 skb->ip_summed = CHECKSUM_PARTIAL;
f942dc25 1060 else if (rx->flags & XEN_NETRXF_data_validated)
0d160211
JF
1061 skb->ip_summed = CHECKSUM_UNNECESSARY;
1062
1063 __skb_queue_tail(&rxq, skb);
1064
2688fcb7 1065 queue->rx.rsp_cons = ++i;
0d160211
JF
1066 work_done++;
1067 }
1068
56cfe5d0 1069 __skb_queue_purge(&errq);
0d160211 1070
2688fcb7 1071 work_done -= handle_incoming_queue(queue, &rxq);
0d160211
JF
1072
1073 /* If we get a callback with very few responses, reduce fill target. */
1074 /* NB. Note exponential increase, linear decrease. */
2688fcb7
AB
1075 if (((queue->rx.req_prod_pvt - queue->rx.sring->rsp_prod) >
1076 ((3*queue->rx_target) / 4)) &&
1077 (--queue->rx_target < queue->rx_min_target))
1078 queue->rx_target = queue->rx_min_target;
0d160211 1079
2688fcb7 1080 xennet_alloc_rx_buffers(queue);
0d160211 1081
0d160211 1082 if (work_done < budget) {
bea3348e
SH
1083 int more_to_do = 0;
1084
99d3d587
WL
1085 napi_gro_flush(napi, false);
1086
0d160211
JF
1087 local_irq_save(flags);
1088
2688fcb7 1089 RING_FINAL_CHECK_FOR_RESPONSES(&queue->rx, more_to_do);
0d160211 1090 if (!more_to_do)
288379f0 1091 __napi_complete(napi);
0d160211
JF
1092
1093 local_irq_restore(flags);
1094 }
1095
2688fcb7 1096 spin_unlock(&queue->rx_lock);
0d160211 1097
bea3348e 1098 return work_done;
0d160211
JF
1099}
1100
1101static int xennet_change_mtu(struct net_device *dev, int mtu)
1102{
9ecd1a75
WL
1103 int max = xennet_can_sg(dev) ?
1104 XEN_NETIF_MAX_TX_SIZE - MAX_TCP_HEADER : ETH_DATA_LEN;
0d160211
JF
1105
1106 if (mtu > max)
1107 return -EINVAL;
1108 dev->mtu = mtu;
1109 return 0;
1110}
1111
e00f85be 1112static struct rtnl_link_stats64 *xennet_get_stats64(struct net_device *dev,
1113 struct rtnl_link_stats64 *tot)
1114{
1115 struct netfront_info *np = netdev_priv(dev);
1116 int cpu;
1117
1118 for_each_possible_cpu(cpu) {
1119 struct netfront_stats *stats = per_cpu_ptr(np->stats, cpu);
1120 u64 rx_packets, rx_bytes, tx_packets, tx_bytes;
1121 unsigned int start;
1122
1123 do {
57a7744e 1124 start = u64_stats_fetch_begin_irq(&stats->syncp);
e00f85be 1125
1126 rx_packets = stats->rx_packets;
1127 tx_packets = stats->tx_packets;
1128 rx_bytes = stats->rx_bytes;
1129 tx_bytes = stats->tx_bytes;
57a7744e 1130 } while (u64_stats_fetch_retry_irq(&stats->syncp, start));
e00f85be 1131
1132 tot->rx_packets += rx_packets;
1133 tot->tx_packets += tx_packets;
1134 tot->rx_bytes += rx_bytes;
1135 tot->tx_bytes += tx_bytes;
1136 }
1137
1138 tot->rx_errors = dev->stats.rx_errors;
1139 tot->tx_dropped = dev->stats.tx_dropped;
1140
1141 return tot;
1142}
1143
2688fcb7 1144static void xennet_release_tx_bufs(struct netfront_queue *queue)
0d160211
JF
1145{
1146 struct sk_buff *skb;
1147 int i;
1148
1149 for (i = 0; i < NET_TX_RING_SIZE; i++) {
1150 /* Skip over entries which are actually freelist references */
2688fcb7 1151 if (skb_entry_is_link(&queue->tx_skbs[i]))
0d160211
JF
1152 continue;
1153
2688fcb7
AB
1154 skb = queue->tx_skbs[i].skb;
1155 get_page(queue->grant_tx_page[i]);
1156 gnttab_end_foreign_access(queue->grant_tx_ref[i],
cefe0078 1157 GNTMAP_readonly,
2688fcb7
AB
1158 (unsigned long)page_address(queue->grant_tx_page[i]));
1159 queue->grant_tx_page[i] = NULL;
1160 queue->grant_tx_ref[i] = GRANT_INVALID_REF;
1161 add_id_to_freelist(&queue->tx_skb_freelist, queue->tx_skbs, i);
0d160211
JF
1162 dev_kfree_skb_irq(skb);
1163 }
1164}
1165
2688fcb7 1166static void xennet_release_rx_bufs(struct netfront_queue *queue)
0d160211 1167{
0d160211
JF
1168 int id, ref;
1169
2688fcb7 1170 spin_lock_bh(&queue->rx_lock);
0d160211
JF
1171
1172 for (id = 0; id < NET_RX_RING_SIZE; id++) {
cefe0078
AL
1173 struct sk_buff *skb;
1174 struct page *page;
0d160211 1175
2688fcb7 1176 skb = queue->rx_skbs[id];
cefe0078 1177 if (!skb)
0d160211 1178 continue;
0d160211 1179
2688fcb7 1180 ref = queue->grant_rx_ref[id];
cefe0078
AL
1181 if (ref == GRANT_INVALID_REF)
1182 continue;
0d160211 1183
cefe0078 1184 page = skb_frag_page(&skb_shinfo(skb)->frags[0]);
0d160211 1185
cefe0078
AL
1186 /* gnttab_end_foreign_access() needs a page ref until
1187 * foreign access is ended (which may be deferred).
1188 */
1189 get_page(page);
1190 gnttab_end_foreign_access(ref, 0,
1191 (unsigned long)page_address(page));
2688fcb7 1192 queue->grant_rx_ref[id] = GRANT_INVALID_REF;
0d160211 1193
cefe0078 1194 kfree_skb(skb);
0d160211
JF
1195 }
1196
2688fcb7 1197 spin_unlock_bh(&queue->rx_lock);
0d160211
JF
1198}
1199
c8f44aff
MM
1200static netdev_features_t xennet_fix_features(struct net_device *dev,
1201 netdev_features_t features)
8f7b01a1
ED
1202{
1203 struct netfront_info *np = netdev_priv(dev);
1204 int val;
1205
1206 if (features & NETIF_F_SG) {
1207 if (xenbus_scanf(XBT_NIL, np->xbdev->otherend, "feature-sg",
1208 "%d", &val) < 0)
1209 val = 0;
1210
1211 if (!val)
1212 features &= ~NETIF_F_SG;
1213 }
1214
2c0057de
PD
1215 if (features & NETIF_F_IPV6_CSUM) {
1216 if (xenbus_scanf(XBT_NIL, np->xbdev->otherend,
1217 "feature-ipv6-csum-offload", "%d", &val) < 0)
1218 val = 0;
1219
1220 if (!val)
1221 features &= ~NETIF_F_IPV6_CSUM;
1222 }
1223
8f7b01a1
ED
1224 if (features & NETIF_F_TSO) {
1225 if (xenbus_scanf(XBT_NIL, np->xbdev->otherend,
1226 "feature-gso-tcpv4", "%d", &val) < 0)
1227 val = 0;
1228
1229 if (!val)
1230 features &= ~NETIF_F_TSO;
1231 }
1232
2c0057de
PD
1233 if (features & NETIF_F_TSO6) {
1234 if (xenbus_scanf(XBT_NIL, np->xbdev->otherend,
1235 "feature-gso-tcpv6", "%d", &val) < 0)
1236 val = 0;
1237
1238 if (!val)
1239 features &= ~NETIF_F_TSO6;
1240 }
1241
8f7b01a1
ED
1242 return features;
1243}
1244
c8f44aff
MM
1245static int xennet_set_features(struct net_device *dev,
1246 netdev_features_t features)
8f7b01a1
ED
1247{
1248 if (!(features & NETIF_F_SG) && dev->mtu > ETH_DATA_LEN) {
1249 netdev_info(dev, "Reducing MTU because no SG offload");
1250 dev->mtu = ETH_DATA_LEN;
1251 }
1252
1253 return 0;
1254}
1255
d634bf2c 1256static irqreturn_t xennet_tx_interrupt(int irq, void *dev_id)
cf66f9d4 1257{
2688fcb7 1258 struct netfront_queue *queue = dev_id;
cf66f9d4
KRW
1259 unsigned long flags;
1260
2688fcb7
AB
1261 spin_lock_irqsave(&queue->tx_lock, flags);
1262 xennet_tx_buf_gc(queue);
1263 spin_unlock_irqrestore(&queue->tx_lock, flags);
cf66f9d4 1264
d634bf2c
WL
1265 return IRQ_HANDLED;
1266}
1267
1268static irqreturn_t xennet_rx_interrupt(int irq, void *dev_id)
1269{
2688fcb7
AB
1270 struct netfront_queue *queue = dev_id;
1271 struct net_device *dev = queue->info->netdev;
d634bf2c
WL
1272
1273 if (likely(netif_carrier_ok(dev) &&
2688fcb7 1274 RING_HAS_UNCONSUMED_RESPONSES(&queue->rx)))
76541869 1275 napi_schedule(&queue->napi);
cf66f9d4 1276
d634bf2c
WL
1277 return IRQ_HANDLED;
1278}
cf66f9d4 1279
d634bf2c
WL
1280static irqreturn_t xennet_interrupt(int irq, void *dev_id)
1281{
1282 xennet_tx_interrupt(irq, dev_id);
1283 xennet_rx_interrupt(irq, dev_id);
cf66f9d4
KRW
1284 return IRQ_HANDLED;
1285}
1286
1287#ifdef CONFIG_NET_POLL_CONTROLLER
1288static void xennet_poll_controller(struct net_device *dev)
1289{
2688fcb7
AB
1290 /* Poll each queue */
1291 struct netfront_info *info = netdev_priv(dev);
1292 unsigned int num_queues = dev->real_num_tx_queues;
1293 unsigned int i;
1294 for (i = 0; i < num_queues; ++i)
1295 xennet_interrupt(0, &info->queues[i]);
cf66f9d4
KRW
1296}
1297#endif
1298
0a0b9d2e
SH
1299static const struct net_device_ops xennet_netdev_ops = {
1300 .ndo_open = xennet_open,
0a0b9d2e
SH
1301 .ndo_stop = xennet_close,
1302 .ndo_start_xmit = xennet_start_xmit,
1303 .ndo_change_mtu = xennet_change_mtu,
e00f85be 1304 .ndo_get_stats64 = xennet_get_stats64,
0a0b9d2e
SH
1305 .ndo_set_mac_address = eth_mac_addr,
1306 .ndo_validate_addr = eth_validate_addr,
fb507934
MM
1307 .ndo_fix_features = xennet_fix_features,
1308 .ndo_set_features = xennet_set_features,
2688fcb7 1309 .ndo_select_queue = xennet_select_queue,
cf66f9d4
KRW
1310#ifdef CONFIG_NET_POLL_CONTROLLER
1311 .ndo_poll_controller = xennet_poll_controller,
1312#endif
0a0b9d2e
SH
1313};
1314
8e0e46bb 1315static struct net_device *xennet_create_dev(struct xenbus_device *dev)
0d160211 1316{
2688fcb7 1317 int err;
0d160211
JF
1318 struct net_device *netdev;
1319 struct netfront_info *np;
1320
50ee6061 1321 netdev = alloc_etherdev_mq(sizeof(struct netfront_info), xennet_max_queues);
41de8d4c 1322 if (!netdev)
0d160211 1323 return ERR_PTR(-ENOMEM);
0d160211
JF
1324
1325 np = netdev_priv(netdev);
1326 np->xbdev = dev;
1327
2688fcb7
AB
1328 /* No need to use rtnl_lock() before the call below as it
1329 * happens before register_netdev().
1330 */
1331 netif_set_real_num_tx_queues(netdev, 0);
1332 np->queues = NULL;
0d160211 1333
e00f85be 1334 err = -ENOMEM;
1c213bd2 1335 np->stats = netdev_alloc_pcpu_stats(struct netfront_stats);
e00f85be 1336 if (np->stats == NULL)
1337 goto exit;
1338
0a0b9d2e
SH
1339 netdev->netdev_ops = &xennet_netdev_ops;
1340
fb507934
MM
1341 netdev->features = NETIF_F_IP_CSUM | NETIF_F_RXCSUM |
1342 NETIF_F_GSO_ROBUST;
2c0057de
PD
1343 netdev->hw_features = NETIF_F_SG |
1344 NETIF_F_IPV6_CSUM |
1345 NETIF_F_TSO | NETIF_F_TSO6;
0d160211 1346
fc3e5941
IC
1347 /*
1348 * Assume that all hw features are available for now. This set
1349 * will be adjusted by the call to netdev_update_features() in
1350 * xennet_connect() which is the earliest point where we can
1351 * negotiate with the backend regarding supported features.
1352 */
1353 netdev->features |= netdev->hw_features;
1354
7ad24ea4 1355 netdev->ethtool_ops = &xennet_ethtool_ops;
0d160211
JF
1356 SET_NETDEV_DEV(netdev, &dev->dev);
1357
9ecd1a75
WL
1358 netif_set_gso_max_size(netdev, XEN_NETIF_MAX_TX_SIZE - MAX_TCP_HEADER);
1359
0d160211
JF
1360 np->netdev = netdev;
1361
1362 netif_carrier_off(netdev);
1363
1364 return netdev;
1365
0d160211
JF
1366 exit:
1367 free_netdev(netdev);
1368 return ERR_PTR(err);
1369}
1370
1371/**
1372 * Entry point to this code when a new device is created. Allocate the basic
1373 * structures and the ring buffers for communication with the backend, and
1374 * inform the backend of the appropriate details for those.
1375 */
8e0e46bb 1376static int netfront_probe(struct xenbus_device *dev,
1dd06ae8 1377 const struct xenbus_device_id *id)
0d160211
JF
1378{
1379 int err;
1380 struct net_device *netdev;
1381 struct netfront_info *info;
1382
1383 netdev = xennet_create_dev(dev);
1384 if (IS_ERR(netdev)) {
1385 err = PTR_ERR(netdev);
1386 xenbus_dev_fatal(dev, err, "creating netdev");
1387 return err;
1388 }
1389
1390 info = netdev_priv(netdev);
1b713e00 1391 dev_set_drvdata(&dev->dev, info);
0d160211
JF
1392
1393 err = register_netdev(info->netdev);
1394 if (err) {
383eda32 1395 pr_warn("%s: register_netdev err=%d\n", __func__, err);
0d160211
JF
1396 goto fail;
1397 }
1398
1399 err = xennet_sysfs_addif(info->netdev);
1400 if (err) {
1401 unregister_netdev(info->netdev);
383eda32 1402 pr_warn("%s: add sysfs failed err=%d\n", __func__, err);
0d160211
JF
1403 goto fail;
1404 }
1405
1406 return 0;
1407
1408 fail:
1409 free_netdev(netdev);
1b713e00 1410 dev_set_drvdata(&dev->dev, NULL);
0d160211
JF
1411 return err;
1412}
1413
1414static void xennet_end_access(int ref, void *page)
1415{
1416 /* This frees the page as a side-effect */
1417 if (ref != GRANT_INVALID_REF)
1418 gnttab_end_foreign_access(ref, 0, (unsigned long)page);
1419}
1420
1421static void xennet_disconnect_backend(struct netfront_info *info)
1422{
2688fcb7 1423 unsigned int i = 0;
2688fcb7
AB
1424 unsigned int num_queues = info->netdev->real_num_tx_queues;
1425
f9feb1e6
DV
1426 netif_carrier_off(info->netdev);
1427
2688fcb7 1428 for (i = 0; i < num_queues; ++i) {
76541869
DV
1429 struct netfront_queue *queue = &info->queues[i];
1430
2688fcb7
AB
1431 if (queue->tx_irq && (queue->tx_irq == queue->rx_irq))
1432 unbind_from_irqhandler(queue->tx_irq, queue);
1433 if (queue->tx_irq && (queue->tx_irq != queue->rx_irq)) {
1434 unbind_from_irqhandler(queue->tx_irq, queue);
1435 unbind_from_irqhandler(queue->rx_irq, queue);
1436 }
1437 queue->tx_evtchn = queue->rx_evtchn = 0;
1438 queue->tx_irq = queue->rx_irq = 0;
0d160211 1439
f9feb1e6
DV
1440 napi_synchronize(&queue->napi);
1441
a5b5dc3c
DV
1442 xennet_release_tx_bufs(queue);
1443 xennet_release_rx_bufs(queue);
1444 gnttab_free_grant_references(queue->gref_tx_head);
1445 gnttab_free_grant_references(queue->gref_rx_head);
1446
2688fcb7
AB
1447 /* End access and free the pages */
1448 xennet_end_access(queue->tx_ring_ref, queue->tx.sring);
1449 xennet_end_access(queue->rx_ring_ref, queue->rx.sring);
0d160211 1450
2688fcb7
AB
1451 queue->tx_ring_ref = GRANT_INVALID_REF;
1452 queue->rx_ring_ref = GRANT_INVALID_REF;
1453 queue->tx.sring = NULL;
1454 queue->rx.sring = NULL;
1455 }
0d160211
JF
1456}
1457
1458/**
1459 * We are reconnecting to the backend, due to a suspend/resume, or a backend
1460 * driver restart. We tear down our netif structure and recreate it, but
1461 * leave the device-layer structures intact so that this is transparent to the
1462 * rest of the kernel.
1463 */
1464static int netfront_resume(struct xenbus_device *dev)
1465{
1b713e00 1466 struct netfront_info *info = dev_get_drvdata(&dev->dev);
0d160211
JF
1467
1468 dev_dbg(&dev->dev, "%s\n", dev->nodename);
1469
1470 xennet_disconnect_backend(info);
1471 return 0;
1472}
1473
1474static int xen_net_read_mac(struct xenbus_device *dev, u8 mac[])
1475{
1476 char *s, *e, *macstr;
1477 int i;
1478
1479 macstr = s = xenbus_read(XBT_NIL, dev->nodename, "mac", NULL);
1480 if (IS_ERR(macstr))
1481 return PTR_ERR(macstr);
1482
1483 for (i = 0; i < ETH_ALEN; i++) {
1484 mac[i] = simple_strtoul(s, &e, 16);
1485 if ((s == e) || (*e != ((i == ETH_ALEN-1) ? '\0' : ':'))) {
1486 kfree(macstr);
1487 return -ENOENT;
1488 }
1489 s = e+1;
1490 }
1491
1492 kfree(macstr);
1493 return 0;
1494}
1495
2688fcb7 1496static int setup_netfront_single(struct netfront_queue *queue)
d634bf2c
WL
1497{
1498 int err;
1499
2688fcb7 1500 err = xenbus_alloc_evtchn(queue->info->xbdev, &queue->tx_evtchn);
d634bf2c
WL
1501 if (err < 0)
1502 goto fail;
1503
2688fcb7 1504 err = bind_evtchn_to_irqhandler(queue->tx_evtchn,
d634bf2c 1505 xennet_interrupt,
2688fcb7 1506 0, queue->info->netdev->name, queue);
d634bf2c
WL
1507 if (err < 0)
1508 goto bind_fail;
2688fcb7
AB
1509 queue->rx_evtchn = queue->tx_evtchn;
1510 queue->rx_irq = queue->tx_irq = err;
d634bf2c
WL
1511
1512 return 0;
1513
1514bind_fail:
2688fcb7
AB
1515 xenbus_free_evtchn(queue->info->xbdev, queue->tx_evtchn);
1516 queue->tx_evtchn = 0;
d634bf2c
WL
1517fail:
1518 return err;
1519}
1520
2688fcb7 1521static int setup_netfront_split(struct netfront_queue *queue)
d634bf2c
WL
1522{
1523 int err;
1524
2688fcb7 1525 err = xenbus_alloc_evtchn(queue->info->xbdev, &queue->tx_evtchn);
d634bf2c
WL
1526 if (err < 0)
1527 goto fail;
2688fcb7 1528 err = xenbus_alloc_evtchn(queue->info->xbdev, &queue->rx_evtchn);
d634bf2c
WL
1529 if (err < 0)
1530 goto alloc_rx_evtchn_fail;
1531
2688fcb7
AB
1532 snprintf(queue->tx_irq_name, sizeof(queue->tx_irq_name),
1533 "%s-tx", queue->name);
1534 err = bind_evtchn_to_irqhandler(queue->tx_evtchn,
d634bf2c 1535 xennet_tx_interrupt,
2688fcb7 1536 0, queue->tx_irq_name, queue);
d634bf2c
WL
1537 if (err < 0)
1538 goto bind_tx_fail;
2688fcb7 1539 queue->tx_irq = err;
d634bf2c 1540
2688fcb7
AB
1541 snprintf(queue->rx_irq_name, sizeof(queue->rx_irq_name),
1542 "%s-rx", queue->name);
1543 err = bind_evtchn_to_irqhandler(queue->rx_evtchn,
d634bf2c 1544 xennet_rx_interrupt,
2688fcb7 1545 0, queue->rx_irq_name, queue);
d634bf2c
WL
1546 if (err < 0)
1547 goto bind_rx_fail;
2688fcb7 1548 queue->rx_irq = err;
d634bf2c
WL
1549
1550 return 0;
1551
1552bind_rx_fail:
2688fcb7
AB
1553 unbind_from_irqhandler(queue->tx_irq, queue);
1554 queue->tx_irq = 0;
d634bf2c 1555bind_tx_fail:
2688fcb7
AB
1556 xenbus_free_evtchn(queue->info->xbdev, queue->rx_evtchn);
1557 queue->rx_evtchn = 0;
d634bf2c 1558alloc_rx_evtchn_fail:
2688fcb7
AB
1559 xenbus_free_evtchn(queue->info->xbdev, queue->tx_evtchn);
1560 queue->tx_evtchn = 0;
d634bf2c
WL
1561fail:
1562 return err;
1563}
1564
2688fcb7
AB
1565static int setup_netfront(struct xenbus_device *dev,
1566 struct netfront_queue *queue, unsigned int feature_split_evtchn)
0d160211
JF
1567{
1568 struct xen_netif_tx_sring *txs;
1569 struct xen_netif_rx_sring *rxs;
1570 int err;
0d160211 1571
2688fcb7
AB
1572 queue->tx_ring_ref = GRANT_INVALID_REF;
1573 queue->rx_ring_ref = GRANT_INVALID_REF;
1574 queue->rx.sring = NULL;
1575 queue->tx.sring = NULL;
0d160211 1576
a144ff09 1577 txs = (struct xen_netif_tx_sring *)get_zeroed_page(GFP_NOIO | __GFP_HIGH);
0d160211
JF
1578 if (!txs) {
1579 err = -ENOMEM;
1580 xenbus_dev_fatal(dev, err, "allocating tx ring page");
1581 goto fail;
1582 }
1583 SHARED_RING_INIT(txs);
2688fcb7 1584 FRONT_RING_INIT(&queue->tx, txs, PAGE_SIZE);
0d160211
JF
1585
1586 err = xenbus_grant_ring(dev, virt_to_mfn(txs));
1ca2983a
WL
1587 if (err < 0)
1588 goto grant_tx_ring_fail;
2688fcb7 1589 queue->tx_ring_ref = err;
0d160211 1590
a144ff09 1591 rxs = (struct xen_netif_rx_sring *)get_zeroed_page(GFP_NOIO | __GFP_HIGH);
0d160211
JF
1592 if (!rxs) {
1593 err = -ENOMEM;
1594 xenbus_dev_fatal(dev, err, "allocating rx ring page");
1ca2983a 1595 goto alloc_rx_ring_fail;
0d160211
JF
1596 }
1597 SHARED_RING_INIT(rxs);
2688fcb7 1598 FRONT_RING_INIT(&queue->rx, rxs, PAGE_SIZE);
0d160211
JF
1599
1600 err = xenbus_grant_ring(dev, virt_to_mfn(rxs));
1ca2983a
WL
1601 if (err < 0)
1602 goto grant_rx_ring_fail;
2688fcb7 1603 queue->rx_ring_ref = err;
0d160211 1604
d634bf2c 1605 if (feature_split_evtchn)
2688fcb7 1606 err = setup_netfront_split(queue);
d634bf2c
WL
1607 /* setup single event channel if
1608 * a) feature-split-event-channels == 0
1609 * b) feature-split-event-channels == 1 but failed to setup
1610 */
1611 if (!feature_split_evtchn || (feature_split_evtchn && err))
2688fcb7 1612 err = setup_netfront_single(queue);
d634bf2c 1613
0d160211 1614 if (err)
1ca2983a 1615 goto alloc_evtchn_fail;
0d160211 1616
0d160211
JF
1617 return 0;
1618
1ca2983a
WL
1619 /* If we fail to setup netfront, it is safe to just revoke access to
1620 * granted pages because backend is not accessing it at this point.
1621 */
1ca2983a 1622alloc_evtchn_fail:
2688fcb7 1623 gnttab_end_foreign_access_ref(queue->rx_ring_ref, 0);
1ca2983a
WL
1624grant_rx_ring_fail:
1625 free_page((unsigned long)rxs);
1626alloc_rx_ring_fail:
2688fcb7 1627 gnttab_end_foreign_access_ref(queue->tx_ring_ref, 0);
1ca2983a
WL
1628grant_tx_ring_fail:
1629 free_page((unsigned long)txs);
1630fail:
0d160211
JF
1631 return err;
1632}
1633
2688fcb7
AB
1634/* Queue-specific initialisation
1635 * This used to be done in xennet_create_dev() but must now
1636 * be run per-queue.
1637 */
1638static int xennet_init_queue(struct netfront_queue *queue)
1639{
1640 unsigned short i;
1641 int err = 0;
1642
1643 spin_lock_init(&queue->tx_lock);
1644 spin_lock_init(&queue->rx_lock);
1645
1646 skb_queue_head_init(&queue->rx_batch);
1647 queue->rx_target = RX_DFL_MIN_TARGET;
1648 queue->rx_min_target = RX_DFL_MIN_TARGET;
1649 queue->rx_max_target = RX_MAX_TARGET;
1650
1651 init_timer(&queue->rx_refill_timer);
1652 queue->rx_refill_timer.data = (unsigned long)queue;
1653 queue->rx_refill_timer.function = rx_refill_timeout;
1654
8b715010
WL
1655 snprintf(queue->name, sizeof(queue->name), "%s-q%u",
1656 queue->info->netdev->name, queue->id);
1657
2688fcb7
AB
1658 /* Initialise tx_skbs as a free chain containing every entry. */
1659 queue->tx_skb_freelist = 0;
1660 for (i = 0; i < NET_TX_RING_SIZE; i++) {
1661 skb_entry_set_link(&queue->tx_skbs[i], i+1);
1662 queue->grant_tx_ref[i] = GRANT_INVALID_REF;
1663 queue->grant_tx_page[i] = NULL;
1664 }
1665
1666 /* Clear out rx_skbs */
1667 for (i = 0; i < NET_RX_RING_SIZE; i++) {
1668 queue->rx_skbs[i] = NULL;
1669 queue->grant_rx_ref[i] = GRANT_INVALID_REF;
1670 }
1671
1672 /* A grant for every tx ring slot */
1673 if (gnttab_alloc_grant_references(TX_MAX_TARGET,
1674 &queue->gref_tx_head) < 0) {
1675 pr_alert("can't alloc tx grant refs\n");
1676 err = -ENOMEM;
1677 goto exit;
1678 }
1679
1680 /* A grant for every rx ring slot */
1681 if (gnttab_alloc_grant_references(RX_MAX_TARGET,
1682 &queue->gref_rx_head) < 0) {
1683 pr_alert("can't alloc rx grant refs\n");
1684 err = -ENOMEM;
1685 goto exit_free_tx;
1686 }
1687
2688fcb7
AB
1688 return 0;
1689
1690 exit_free_tx:
1691 gnttab_free_grant_references(queue->gref_tx_head);
1692 exit:
1693 return err;
1694}
1695
50ee6061
AB
1696static int write_queue_xenstore_keys(struct netfront_queue *queue,
1697 struct xenbus_transaction *xbt, int write_hierarchical)
1698{
1699 /* Write the queue-specific keys into XenStore in the traditional
1700 * way for a single queue, or in a queue subkeys for multiple
1701 * queues.
1702 */
1703 struct xenbus_device *dev = queue->info->xbdev;
1704 int err;
1705 const char *message;
1706 char *path;
1707 size_t pathsize;
1708
1709 /* Choose the correct place to write the keys */
1710 if (write_hierarchical) {
1711 pathsize = strlen(dev->nodename) + 10;
1712 path = kzalloc(pathsize, GFP_KERNEL);
1713 if (!path) {
1714 err = -ENOMEM;
1715 message = "out of memory while writing ring references";
1716 goto error;
1717 }
1718 snprintf(path, pathsize, "%s/queue-%u",
1719 dev->nodename, queue->id);
1720 } else {
1721 path = (char *)dev->nodename;
1722 }
1723
1724 /* Write ring references */
1725 err = xenbus_printf(*xbt, path, "tx-ring-ref", "%u",
1726 queue->tx_ring_ref);
1727 if (err) {
1728 message = "writing tx-ring-ref";
1729 goto error;
1730 }
1731
1732 err = xenbus_printf(*xbt, path, "rx-ring-ref", "%u",
1733 queue->rx_ring_ref);
1734 if (err) {
1735 message = "writing rx-ring-ref";
1736 goto error;
1737 }
1738
1739 /* Write event channels; taking into account both shared
1740 * and split event channel scenarios.
1741 */
1742 if (queue->tx_evtchn == queue->rx_evtchn) {
1743 /* Shared event channel */
1744 err = xenbus_printf(*xbt, path,
1745 "event-channel", "%u", queue->tx_evtchn);
1746 if (err) {
1747 message = "writing event-channel";
1748 goto error;
1749 }
1750 } else {
1751 /* Split event channels */
1752 err = xenbus_printf(*xbt, path,
1753 "event-channel-tx", "%u", queue->tx_evtchn);
1754 if (err) {
1755 message = "writing event-channel-tx";
1756 goto error;
1757 }
1758
1759 err = xenbus_printf(*xbt, path,
1760 "event-channel-rx", "%u", queue->rx_evtchn);
1761 if (err) {
1762 message = "writing event-channel-rx";
1763 goto error;
1764 }
1765 }
1766
1767 if (write_hierarchical)
1768 kfree(path);
1769 return 0;
1770
1771error:
1772 if (write_hierarchical)
1773 kfree(path);
1774 xenbus_dev_fatal(dev, err, "%s", message);
1775 return err;
1776}
1777
ce58725f
DV
1778static void xennet_destroy_queues(struct netfront_info *info)
1779{
1780 unsigned int i;
1781
1782 rtnl_lock();
1783
1784 for (i = 0; i < info->netdev->real_num_tx_queues; i++) {
1785 struct netfront_queue *queue = &info->queues[i];
1786
1787 if (netif_running(info->netdev))
1788 napi_disable(&queue->napi);
1789 netif_napi_del(&queue->napi);
1790 }
1791
1792 rtnl_unlock();
1793
1794 kfree(info->queues);
1795 info->queues = NULL;
1796}
1797
1798static int xennet_create_queues(struct netfront_info *info,
1799 unsigned int num_queues)
1800{
1801 unsigned int i;
1802 int ret;
1803
1804 info->queues = kcalloc(num_queues, sizeof(struct netfront_queue),
1805 GFP_KERNEL);
1806 if (!info->queues)
1807 return -ENOMEM;
1808
1809 rtnl_lock();
1810
1811 for (i = 0; i < num_queues; i++) {
1812 struct netfront_queue *queue = &info->queues[i];
1813
1814 queue->id = i;
1815 queue->info = info;
1816
1817 ret = xennet_init_queue(queue);
1818 if (ret < 0) {
69cb8524
DV
1819 dev_warn(&info->netdev->dev,
1820 "only created %d queues\n", i);
ce58725f
DV
1821 num_queues = i;
1822 break;
1823 }
1824
1825 netif_napi_add(queue->info->netdev, &queue->napi,
1826 xennet_poll, 64);
1827 if (netif_running(info->netdev))
1828 napi_enable(&queue->napi);
1829 }
1830
1831 netif_set_real_num_tx_queues(info->netdev, num_queues);
1832
1833 rtnl_unlock();
1834
1835 if (num_queues == 0) {
1836 dev_err(&info->netdev->dev, "no queues\n");
1837 return -EINVAL;
1838 }
1839 return 0;
1840}
1841
0d160211 1842/* Common code used when first setting up, and when resuming. */
f502bf2b 1843static int talk_to_netback(struct xenbus_device *dev,
0d160211
JF
1844 struct netfront_info *info)
1845{
1846 const char *message;
1847 struct xenbus_transaction xbt;
1848 int err;
2688fcb7
AB
1849 unsigned int feature_split_evtchn;
1850 unsigned int i = 0;
50ee6061 1851 unsigned int max_queues = 0;
2688fcb7
AB
1852 struct netfront_queue *queue = NULL;
1853 unsigned int num_queues = 1;
0d160211 1854
2688fcb7
AB
1855 info->netdev->irq = 0;
1856
50ee6061
AB
1857 /* Check if backend supports multiple queues */
1858 err = xenbus_scanf(XBT_NIL, info->xbdev->otherend,
1859 "multi-queue-max-queues", "%u", &max_queues);
1860 if (err < 0)
1861 max_queues = 1;
1862 num_queues = min(max_queues, xennet_max_queues);
1863
2688fcb7
AB
1864 /* Check feature-split-event-channels */
1865 err = xenbus_scanf(XBT_NIL, info->xbdev->otherend,
1866 "feature-split-event-channels", "%u",
1867 &feature_split_evtchn);
1868 if (err < 0)
1869 feature_split_evtchn = 0;
1870
1871 /* Read mac addr. */
1872 err = xen_net_read_mac(dev, info->netdev->dev_addr);
1873 if (err) {
1874 xenbus_dev_fatal(dev, err, "parsing %s/mac", dev->nodename);
1875 goto out;
1876 }
1877
ce58725f
DV
1878 if (info->queues)
1879 xennet_destroy_queues(info);
1880
1881 err = xennet_create_queues(info, num_queues);
1882 if (err < 0)
1883 goto destroy_ring;
2688fcb7
AB
1884
1885 /* Create shared ring, alloc event channel -- for each queue */
1886 for (i = 0; i < num_queues; ++i) {
1887 queue = &info->queues[i];
2688fcb7
AB
1888 err = setup_netfront(dev, queue, feature_split_evtchn);
1889 if (err) {
ce58725f
DV
1890 /* setup_netfront() will tidy up the current
1891 * queue on error, but we need to clean up
2688fcb7
AB
1892 * those already allocated.
1893 */
1894 if (i > 0) {
1895 rtnl_lock();
1896 netif_set_real_num_tx_queues(info->netdev, i);
1897 rtnl_unlock();
1898 goto destroy_ring;
1899 } else {
1900 goto out;
1901 }
1902 }
1903 }
0d160211
JF
1904
1905again:
1906 err = xenbus_transaction_start(&xbt);
1907 if (err) {
1908 xenbus_dev_fatal(dev, err, "starting transaction");
1909 goto destroy_ring;
1910 }
1911
50ee6061
AB
1912 if (num_queues == 1) {
1913 err = write_queue_xenstore_keys(&info->queues[0], &xbt, 0); /* flat */
1914 if (err)
1915 goto abort_transaction_no_dev_fatal;
d634bf2c 1916 } else {
50ee6061
AB
1917 /* Write the number of queues */
1918 err = xenbus_printf(xbt, dev->nodename, "multi-queue-num-queues",
1919 "%u", num_queues);
d634bf2c 1920 if (err) {
50ee6061
AB
1921 message = "writing multi-queue-num-queues";
1922 goto abort_transaction_no_dev_fatal;
d634bf2c 1923 }
50ee6061
AB
1924
1925 /* Write the keys for each queue */
1926 for (i = 0; i < num_queues; ++i) {
1927 queue = &info->queues[i];
1928 err = write_queue_xenstore_keys(queue, &xbt, 1); /* hierarchical */
1929 if (err)
1930 goto abort_transaction_no_dev_fatal;
d634bf2c 1931 }
0d160211
JF
1932 }
1933
50ee6061 1934 /* The remaining keys are not queue-specific */
0d160211
JF
1935 err = xenbus_printf(xbt, dev->nodename, "request-rx-copy", "%u",
1936 1);
1937 if (err) {
1938 message = "writing request-rx-copy";
1939 goto abort_transaction;
1940 }
1941
1942 err = xenbus_printf(xbt, dev->nodename, "feature-rx-notify", "%d", 1);
1943 if (err) {
1944 message = "writing feature-rx-notify";
1945 goto abort_transaction;
1946 }
1947
1948 err = xenbus_printf(xbt, dev->nodename, "feature-sg", "%d", 1);
1949 if (err) {
1950 message = "writing feature-sg";
1951 goto abort_transaction;
1952 }
1953
1954 err = xenbus_printf(xbt, dev->nodename, "feature-gso-tcpv4", "%d", 1);
1955 if (err) {
1956 message = "writing feature-gso-tcpv4";
1957 goto abort_transaction;
1958 }
1959
2c0057de
PD
1960 err = xenbus_write(xbt, dev->nodename, "feature-gso-tcpv6", "1");
1961 if (err) {
1962 message = "writing feature-gso-tcpv6";
1963 goto abort_transaction;
1964 }
1965
1966 err = xenbus_write(xbt, dev->nodename, "feature-ipv6-csum-offload",
1967 "1");
1968 if (err) {
1969 message = "writing feature-ipv6-csum-offload";
1970 goto abort_transaction;
1971 }
1972
0d160211
JF
1973 err = xenbus_transaction_end(xbt, 0);
1974 if (err) {
1975 if (err == -EAGAIN)
1976 goto again;
1977 xenbus_dev_fatal(dev, err, "completing transaction");
1978 goto destroy_ring;
1979 }
1980
1981 return 0;
1982
1983 abort_transaction:
0d160211 1984 xenbus_dev_fatal(dev, err, "%s", message);
50ee6061
AB
1985abort_transaction_no_dev_fatal:
1986 xenbus_transaction_end(xbt, 1);
0d160211
JF
1987 destroy_ring:
1988 xennet_disconnect_backend(info);
2688fcb7
AB
1989 kfree(info->queues);
1990 info->queues = NULL;
1991 rtnl_lock();
1992 netif_set_real_num_tx_queues(info->netdev, 0);
db8c8ab6 1993 rtnl_unlock();
0d160211
JF
1994 out:
1995 return err;
1996}
1997
0d160211
JF
1998static int xennet_connect(struct net_device *dev)
1999{
2000 struct netfront_info *np = netdev_priv(dev);
2688fcb7 2001 unsigned int num_queues = 0;
a5b5dc3c 2002 int err;
0d160211 2003 unsigned int feature_rx_copy;
2688fcb7
AB
2004 unsigned int j = 0;
2005 struct netfront_queue *queue = NULL;
0d160211
JF
2006
2007 err = xenbus_scanf(XBT_NIL, np->xbdev->otherend,
2008 "feature-rx-copy", "%u", &feature_rx_copy);
2009 if (err != 1)
2010 feature_rx_copy = 0;
2011
2012 if (!feature_rx_copy) {
2013 dev_info(&dev->dev,
898eb71c 2014 "backend does not support copying receive path\n");
0d160211
JF
2015 return -ENODEV;
2016 }
2017
f502bf2b 2018 err = talk_to_netback(np->xbdev, np);
0d160211
JF
2019 if (err)
2020 return err;
2021
2688fcb7
AB
2022 /* talk_to_netback() sets the correct number of queues */
2023 num_queues = dev->real_num_tx_queues;
2024
1ba37c51 2025 rtnl_lock();
fb507934 2026 netdev_update_features(dev);
1ba37c51 2027 rtnl_unlock();
0d160211 2028
0d160211 2029 /*
a5b5dc3c 2030 * All public and private state should now be sane. Get
0d160211
JF
2031 * ready to start sending and receiving packets and give the driver
2032 * domain a kick because we've probably just requeued some
2033 * packets.
2034 */
2035 netif_carrier_on(np->netdev);
2688fcb7
AB
2036 for (j = 0; j < num_queues; ++j) {
2037 queue = &np->queues[j];
f50b4076 2038
2688fcb7
AB
2039 notify_remote_via_irq(queue->tx_irq);
2040 if (queue->tx_irq != queue->rx_irq)
2041 notify_remote_via_irq(queue->rx_irq);
2688fcb7 2042
f50b4076
DV
2043 spin_lock_irq(&queue->tx_lock);
2044 xennet_tx_buf_gc(queue);
2688fcb7 2045 spin_unlock_irq(&queue->tx_lock);
f50b4076
DV
2046
2047 spin_lock_bh(&queue->rx_lock);
2048 xennet_alloc_rx_buffers(queue);
2688fcb7
AB
2049 spin_unlock_bh(&queue->rx_lock);
2050 }
0d160211
JF
2051
2052 return 0;
2053}
2054
2055/**
2056 * Callback received when the backend's state changes.
2057 */
f502bf2b 2058static void netback_changed(struct xenbus_device *dev,
0d160211
JF
2059 enum xenbus_state backend_state)
2060{
1b713e00 2061 struct netfront_info *np = dev_get_drvdata(&dev->dev);
0d160211
JF
2062 struct net_device *netdev = np->netdev;
2063
2064 dev_dbg(&dev->dev, "%s\n", xenbus_strstate(backend_state));
2065
2066 switch (backend_state) {
2067 case XenbusStateInitialising:
2068 case XenbusStateInitialised:
b78c9512
NI
2069 case XenbusStateReconfiguring:
2070 case XenbusStateReconfigured:
0d160211 2071 case XenbusStateUnknown:
0d160211
JF
2072 break;
2073
2074 case XenbusStateInitWait:
2075 if (dev->state != XenbusStateInitialising)
2076 break;
2077 if (xennet_connect(netdev) != 0)
2078 break;
2079 xenbus_switch_state(dev, XenbusStateConnected);
08e34eb1
LE
2080 break;
2081
2082 case XenbusStateConnected:
ee89bab1 2083 netdev_notify_peers(netdev);
0d160211
JF
2084 break;
2085
bce3ea81
DV
2086 case XenbusStateClosed:
2087 if (dev->state == XenbusStateClosed)
2088 break;
2089 /* Missed the backend's CLOSING state -- fallthrough */
0d160211
JF
2090 case XenbusStateClosing:
2091 xenbus_frontend_closed(dev);
2092 break;
2093 }
2094}
2095
e0ce4af9
IC
2096static const struct xennet_stat {
2097 char name[ETH_GSTRING_LEN];
2098 u16 offset;
2099} xennet_stats[] = {
2100 {
2101 "rx_gso_checksum_fixup",
2102 offsetof(struct netfront_info, rx_gso_checksum_fixup)
2103 },
2104};
2105
2106static int xennet_get_sset_count(struct net_device *dev, int string_set)
2107{
2108 switch (string_set) {
2109 case ETH_SS_STATS:
2110 return ARRAY_SIZE(xennet_stats);
2111 default:
2112 return -EINVAL;
2113 }
2114}
2115
2116static void xennet_get_ethtool_stats(struct net_device *dev,
2117 struct ethtool_stats *stats, u64 * data)
2118{
2119 void *np = netdev_priv(dev);
2120 int i;
2121
2122 for (i = 0; i < ARRAY_SIZE(xennet_stats); i++)
2688fcb7 2123 data[i] = atomic_read((atomic_t *)(np + xennet_stats[i].offset));
e0ce4af9
IC
2124}
2125
2126static void xennet_get_strings(struct net_device *dev, u32 stringset, u8 * data)
2127{
2128 int i;
2129
2130 switch (stringset) {
2131 case ETH_SS_STATS:
2132 for (i = 0; i < ARRAY_SIZE(xennet_stats); i++)
2133 memcpy(data + i * ETH_GSTRING_LEN,
2134 xennet_stats[i].name, ETH_GSTRING_LEN);
2135 break;
2136 }
2137}
2138
0fc0b732 2139static const struct ethtool_ops xennet_ethtool_ops =
0d160211 2140{
0d160211 2141 .get_link = ethtool_op_get_link,
e0ce4af9
IC
2142
2143 .get_sset_count = xennet_get_sset_count,
2144 .get_ethtool_stats = xennet_get_ethtool_stats,
2145 .get_strings = xennet_get_strings,
0d160211
JF
2146};
2147
2148#ifdef CONFIG_SYSFS
2149static ssize_t show_rxbuf_min(struct device *dev,
2150 struct device_attribute *attr, char *buf)
2151{
2152 struct net_device *netdev = to_net_dev(dev);
2153 struct netfront_info *info = netdev_priv(netdev);
2688fcb7 2154 unsigned int num_queues = netdev->real_num_tx_queues;
0d160211 2155
2688fcb7
AB
2156 if (num_queues)
2157 return sprintf(buf, "%u\n", info->queues[0].rx_min_target);
2158 else
2159 return sprintf(buf, "%u\n", RX_MIN_TARGET);
0d160211
JF
2160}
2161
2162static ssize_t store_rxbuf_min(struct device *dev,
2163 struct device_attribute *attr,
2164 const char *buf, size_t len)
2165{
2166 struct net_device *netdev = to_net_dev(dev);
2167 struct netfront_info *np = netdev_priv(netdev);
2688fcb7 2168 unsigned int num_queues = netdev->real_num_tx_queues;
0d160211
JF
2169 char *endp;
2170 unsigned long target;
2688fcb7
AB
2171 unsigned int i;
2172 struct netfront_queue *queue;
0d160211
JF
2173
2174 if (!capable(CAP_NET_ADMIN))
2175 return -EPERM;
2176
2177 target = simple_strtoul(buf, &endp, 0);
2178 if (endp == buf)
2179 return -EBADMSG;
2180
2181 if (target < RX_MIN_TARGET)
2182 target = RX_MIN_TARGET;
2183 if (target > RX_MAX_TARGET)
2184 target = RX_MAX_TARGET;
2185
2688fcb7
AB
2186 for (i = 0; i < num_queues; ++i) {
2187 queue = &np->queues[i];
2188 spin_lock_bh(&queue->rx_lock);
2189 if (target > queue->rx_max_target)
2190 queue->rx_max_target = target;
2191 queue->rx_min_target = target;
2192 if (target > queue->rx_target)
2193 queue->rx_target = target;
0d160211 2194
2688fcb7 2195 xennet_alloc_rx_buffers(queue);
0d160211 2196
2688fcb7
AB
2197 spin_unlock_bh(&queue->rx_lock);
2198 }
0d160211
JF
2199 return len;
2200}
2201
2202static ssize_t show_rxbuf_max(struct device *dev,
2203 struct device_attribute *attr, char *buf)
2204{
2205 struct net_device *netdev = to_net_dev(dev);
2206 struct netfront_info *info = netdev_priv(netdev);
2688fcb7 2207 unsigned int num_queues = netdev->real_num_tx_queues;
0d160211 2208
2688fcb7
AB
2209 if (num_queues)
2210 return sprintf(buf, "%u\n", info->queues[0].rx_max_target);
2211 else
2212 return sprintf(buf, "%u\n", RX_MAX_TARGET);
0d160211
JF
2213}
2214
2215static ssize_t store_rxbuf_max(struct device *dev,
2216 struct device_attribute *attr,
2217 const char *buf, size_t len)
2218{
2219 struct net_device *netdev = to_net_dev(dev);
2220 struct netfront_info *np = netdev_priv(netdev);
2688fcb7 2221 unsigned int num_queues = netdev->real_num_tx_queues;
0d160211
JF
2222 char *endp;
2223 unsigned long target;
2688fcb7
AB
2224 unsigned int i = 0;
2225 struct netfront_queue *queue = NULL;
0d160211
JF
2226
2227 if (!capable(CAP_NET_ADMIN))
2228 return -EPERM;
2229
2230 target = simple_strtoul(buf, &endp, 0);
2231 if (endp == buf)
2232 return -EBADMSG;
2233
2234 if (target < RX_MIN_TARGET)
2235 target = RX_MIN_TARGET;
2236 if (target > RX_MAX_TARGET)
2237 target = RX_MAX_TARGET;
2238
2688fcb7
AB
2239 for (i = 0; i < num_queues; ++i) {
2240 queue = &np->queues[i];
2241 spin_lock_bh(&queue->rx_lock);
2242 if (target < queue->rx_min_target)
2243 queue->rx_min_target = target;
2244 queue->rx_max_target = target;
2245 if (target < queue->rx_target)
2246 queue->rx_target = target;
0d160211 2247
2688fcb7 2248 xennet_alloc_rx_buffers(queue);
0d160211 2249
2688fcb7
AB
2250 spin_unlock_bh(&queue->rx_lock);
2251 }
0d160211
JF
2252 return len;
2253}
2254
2255static ssize_t show_rxbuf_cur(struct device *dev,
2256 struct device_attribute *attr, char *buf)
2257{
2258 struct net_device *netdev = to_net_dev(dev);
2259 struct netfront_info *info = netdev_priv(netdev);
2688fcb7 2260 unsigned int num_queues = netdev->real_num_tx_queues;
0d160211 2261
2688fcb7
AB
2262 if (num_queues)
2263 return sprintf(buf, "%u\n", info->queues[0].rx_target);
2264 else
2265 return sprintf(buf, "0\n");
0d160211
JF
2266}
2267
2268static struct device_attribute xennet_attrs[] = {
2269 __ATTR(rxbuf_min, S_IRUGO|S_IWUSR, show_rxbuf_min, store_rxbuf_min),
2270 __ATTR(rxbuf_max, S_IRUGO|S_IWUSR, show_rxbuf_max, store_rxbuf_max),
2271 __ATTR(rxbuf_cur, S_IRUGO, show_rxbuf_cur, NULL),
2272};
2273
2274static int xennet_sysfs_addif(struct net_device *netdev)
2275{
2276 int i;
2277 int err;
2278
2279 for (i = 0; i < ARRAY_SIZE(xennet_attrs); i++) {
2280 err = device_create_file(&netdev->dev,
2281 &xennet_attrs[i]);
2282 if (err)
2283 goto fail;
2284 }
2285 return 0;
2286
2287 fail:
2288 while (--i >= 0)
2289 device_remove_file(&netdev->dev, &xennet_attrs[i]);
2290 return err;
2291}
2292
2293static void xennet_sysfs_delif(struct net_device *netdev)
2294{
2295 int i;
2296
2297 for (i = 0; i < ARRAY_SIZE(xennet_attrs); i++)
2298 device_remove_file(&netdev->dev, &xennet_attrs[i]);
2299}
2300
2301#endif /* CONFIG_SYSFS */
2302
8e0e46bb 2303static int xennet_remove(struct xenbus_device *dev)
0d160211 2304{
1b713e00 2305 struct netfront_info *info = dev_get_drvdata(&dev->dev);
2688fcb7
AB
2306 unsigned int num_queues = info->netdev->real_num_tx_queues;
2307 struct netfront_queue *queue = NULL;
2308 unsigned int i = 0;
0d160211
JF
2309
2310 dev_dbg(&dev->dev, "%s\n", dev->nodename);
2311
0d160211
JF
2312 xennet_disconnect_backend(info);
2313
0d160211
JF
2314 xennet_sysfs_delif(info->netdev);
2315
6bc96d04
IC
2316 unregister_netdev(info->netdev);
2317
2688fcb7
AB
2318 for (i = 0; i < num_queues; ++i) {
2319 queue = &info->queues[i];
2320 del_timer_sync(&queue->rx_refill_timer);
2321 }
2322
2323 if (num_queues) {
2324 kfree(info->queues);
2325 info->queues = NULL;
2326 }
6bc96d04 2327
e00f85be 2328 free_percpu(info->stats);
2329
0d160211
JF
2330 free_netdev(info->netdev);
2331
2332 return 0;
2333}
2334
95afae48
DV
2335static const struct xenbus_device_id netfront_ids[] = {
2336 { "vif" },
2337 { "" }
2338};
2339
2340static struct xenbus_driver netfront_driver = {
2341 .ids = netfront_ids,
0d160211 2342 .probe = netfront_probe,
8e0e46bb 2343 .remove = xennet_remove,
0d160211 2344 .resume = netfront_resume,
f502bf2b 2345 .otherend_changed = netback_changed,
95afae48 2346};
0d160211
JF
2347
2348static int __init netif_init(void)
2349{
6e833587 2350 if (!xen_domain())
0d160211
JF
2351 return -ENODEV;
2352
51c71a3b 2353 if (!xen_has_pv_nic_devices())
b9136d20
IM
2354 return -ENODEV;
2355
383eda32 2356 pr_info("Initialising Xen virtual ethernet driver\n");
0d160211 2357
50ee6061
AB
2358 /* Allow as many queues as there are CPUs, by default */
2359 xennet_max_queues = num_online_cpus();
2360
ffb78a26 2361 return xenbus_register_frontend(&netfront_driver);
0d160211
JF
2362}
2363module_init(netif_init);
2364
2365
2366static void __exit netif_exit(void)
2367{
ffb78a26 2368 xenbus_unregister_driver(&netfront_driver);
0d160211
JF
2369}
2370module_exit(netif_exit);
2371
2372MODULE_DESCRIPTION("Xen virtual network device frontend");
2373MODULE_LICENSE("GPL");
d2f0c52b 2374MODULE_ALIAS("xen:vif");
4f93f09b 2375MODULE_ALIAS("xennet");