2 * Virtual network driver for conversing with remote driver backends.
4 * Copyright (c) 2002-2005, K A Fraser
5 * Copyright (c) 2005, XenSource Ltd
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:
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:
20 * The above copyright notice and this permission notice shall be included in
21 * all copies or substantial portions of the Software.
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
32 #include <linux/module.h>
33 #include <linux/kernel.h>
34 #include <linux/netdevice.h>
35 #include <linux/etherdevice.h>
36 #include <linux/skbuff.h>
37 #include <linux/ethtool.h>
38 #include <linux/if_ether.h>
39 #include <linux/tcp.h>
40 #include <linux/udp.h>
41 #include <linux/moduleparam.h>
45 #include <xen/xenbus.h>
46 #include <xen/events.h>
48 #include <xen/grant_table.h>
50 #include <xen/interface/io/netif.h>
51 #include <xen/interface/memory.h>
52 #include <xen/interface/grant_table.h>
54 static struct ethtool_ops xennet_ethtool_ops;
61 #define NETFRONT_SKB_CB(skb) ((struct netfront_cb *)((skb)->cb))
63 #define RX_COPY_THRESHOLD 256
65 #define GRANT_INVALID_REF 0
67 #define NET_TX_RING_SIZE __RING_SIZE((struct xen_netif_tx_sring *)0, PAGE_SIZE)
68 #define NET_RX_RING_SIZE __RING_SIZE((struct xen_netif_rx_sring *)0, PAGE_SIZE)
69 #define TX_MAX_TARGET min_t(int, NET_RX_RING_SIZE, 256)
71 struct netfront_info {
72 struct list_head list;
73 struct net_device *netdev;
75 struct napi_struct napi;
78 struct xenbus_device *xbdev;
81 struct xen_netif_tx_front_ring tx;
85 * {tx,rx}_skbs store outstanding skbuffs. Free tx_skb entries
86 * are linked from tx_skb_freelist through skb_entry.link.
88 * NB. Freelist index entries are always going to be less than
89 * PAGE_OFFSET, whereas pointers to skbs will always be equal or
90 * greater than PAGE_OFFSET: we use this property to distinguish
96 } tx_skbs[NET_TX_RING_SIZE];
97 grant_ref_t gref_tx_head;
98 grant_ref_t grant_tx_ref[NET_TX_RING_SIZE];
99 unsigned tx_skb_freelist;
101 spinlock_t rx_lock ____cacheline_aligned_in_smp;
102 struct xen_netif_rx_front_ring rx;
105 /* Receive-ring batched refills. */
106 #define RX_MIN_TARGET 8
107 #define RX_DFL_MIN_TARGET 64
108 #define RX_MAX_TARGET min_t(int, NET_RX_RING_SIZE, 256)
109 unsigned rx_min_target, rx_max_target, rx_target;
110 struct sk_buff_head rx_batch;
112 struct timer_list rx_refill_timer;
114 struct sk_buff *rx_skbs[NET_RX_RING_SIZE];
115 grant_ref_t gref_rx_head;
116 grant_ref_t grant_rx_ref[NET_RX_RING_SIZE];
118 unsigned long rx_pfn_array[NET_RX_RING_SIZE];
119 struct multicall_entry rx_mcl[NET_RX_RING_SIZE+1];
120 struct mmu_update rx_mmu[NET_RX_RING_SIZE];
123 struct netfront_rx_info {
124 struct xen_netif_rx_response rx;
125 struct xen_netif_extra_info extras[XEN_NETIF_EXTRA_TYPE_MAX - 1];
129 * Access macros for acquiring freeing slots in tx_skbs[].
132 static void add_id_to_freelist(unsigned *head, union skb_entry *list,
135 list[id].link = *head;
139 static unsigned short get_id_from_freelist(unsigned *head,
140 union skb_entry *list)
142 unsigned int id = *head;
143 *head = list[id].link;
147 static int xennet_rxidx(RING_IDX idx)
149 return idx & (NET_RX_RING_SIZE - 1);
152 static struct sk_buff *xennet_get_rx_skb(struct netfront_info *np,
155 int i = xennet_rxidx(ri);
156 struct sk_buff *skb = np->rx_skbs[i];
157 np->rx_skbs[i] = NULL;
161 static grant_ref_t xennet_get_rx_ref(struct netfront_info *np,
164 int i = xennet_rxidx(ri);
165 grant_ref_t ref = np->grant_rx_ref[i];
166 np->grant_rx_ref[i] = GRANT_INVALID_REF;
171 static int xennet_sysfs_addif(struct net_device *netdev);
172 static void xennet_sysfs_delif(struct net_device *netdev);
173 #else /* !CONFIG_SYSFS */
174 #define xennet_sysfs_addif(dev) (0)
175 #define xennet_sysfs_delif(dev) do { } while (0)
178 static int xennet_can_sg(struct net_device *dev)
180 return dev->features & NETIF_F_SG;
184 static void rx_refill_timeout(unsigned long data)
186 struct net_device *dev = (struct net_device *)data;
187 struct netfront_info *np = netdev_priv(dev);
188 netif_rx_schedule(dev, &np->napi);
191 static int netfront_tx_slot_available(struct netfront_info *np)
193 return ((np->tx.req_prod_pvt - np->tx.rsp_cons) <
194 (TX_MAX_TARGET - MAX_SKB_FRAGS - 2));
197 static void xennet_maybe_wake_tx(struct net_device *dev)
199 struct netfront_info *np = netdev_priv(dev);
201 if (unlikely(netif_queue_stopped(dev)) &&
202 netfront_tx_slot_available(np) &&
203 likely(netif_running(dev)))
204 netif_wake_queue(dev);
207 static void xennet_alloc_rx_buffers(struct net_device *dev)
210 struct netfront_info *np = netdev_priv(dev);
213 int i, batch_target, notify;
214 RING_IDX req_prod = np->rx.req_prod_pvt;
218 struct xen_netif_rx_request *req;
220 if (unlikely(!netif_carrier_ok(dev)))
224 * Allocate skbuffs greedily, even though we batch updates to the
225 * receive ring. This creates a less bursty demand on the memory
226 * allocator, so should reduce the chance of failed allocation requests
227 * both for ourself and for other kernel subsystems.
229 batch_target = np->rx_target - (req_prod - np->rx.rsp_cons);
230 for (i = skb_queue_len(&np->rx_batch); i < batch_target; i++) {
231 skb = __netdev_alloc_skb(dev, RX_COPY_THRESHOLD,
232 GFP_ATOMIC | __GFP_NOWARN);
236 page = alloc_page(GFP_ATOMIC | __GFP_NOWARN);
240 /* Any skbuffs queued for refill? Force them out. */
243 /* Could not allocate any skbuffs. Try again later. */
244 mod_timer(&np->rx_refill_timer,
249 skb_shinfo(skb)->frags[0].page = page;
250 skb_shinfo(skb)->nr_frags = 1;
251 __skb_queue_tail(&np->rx_batch, skb);
254 /* Is the batch large enough to be worthwhile? */
255 if (i < (np->rx_target/2)) {
256 if (req_prod > np->rx.sring->req_prod)
261 /* Adjust our fill target if we risked running out of buffers. */
262 if (((req_prod - np->rx.sring->rsp_prod) < (np->rx_target / 4)) &&
263 ((np->rx_target *= 2) > np->rx_max_target))
264 np->rx_target = np->rx_max_target;
268 skb = __skb_dequeue(&np->rx_batch);
274 id = xennet_rxidx(req_prod + i);
276 BUG_ON(np->rx_skbs[id]);
277 np->rx_skbs[id] = skb;
279 ref = gnttab_claim_grant_reference(&np->gref_rx_head);
280 BUG_ON((signed short)ref < 0);
281 np->grant_rx_ref[id] = ref;
283 pfn = page_to_pfn(skb_shinfo(skb)->frags[0].page);
284 vaddr = page_address(skb_shinfo(skb)->frags[0].page);
286 req = RING_GET_REQUEST(&np->rx, req_prod + i);
287 gnttab_grant_foreign_access_ref(ref,
288 np->xbdev->otherend_id,
296 wmb(); /* barrier so backend seens requests */
298 /* Above is a suitable barrier to ensure backend will see requests. */
299 np->rx.req_prod_pvt = req_prod + i;
301 RING_PUSH_REQUESTS_AND_CHECK_NOTIFY(&np->rx, notify);
303 notify_remote_via_irq(np->netdev->irq);
306 static int xennet_open(struct net_device *dev)
308 struct netfront_info *np = netdev_priv(dev);
310 napi_enable(&np->napi);
312 spin_lock_bh(&np->rx_lock);
313 if (netif_carrier_ok(dev)) {
314 xennet_alloc_rx_buffers(dev);
315 np->rx.sring->rsp_event = np->rx.rsp_cons + 1;
316 if (RING_HAS_UNCONSUMED_RESPONSES(&np->rx))
317 netif_rx_schedule(dev, &np->napi);
319 spin_unlock_bh(&np->rx_lock);
321 xennet_maybe_wake_tx(dev);
326 static void xennet_tx_buf_gc(struct net_device *dev)
330 struct netfront_info *np = netdev_priv(dev);
333 BUG_ON(!netif_carrier_ok(dev));
336 prod = np->tx.sring->rsp_prod;
337 rmb(); /* Ensure we see responses up to 'rp'. */
339 for (cons = np->tx.rsp_cons; cons != prod; cons++) {
340 struct xen_netif_tx_response *txrsp;
342 txrsp = RING_GET_RESPONSE(&np->tx, cons);
343 if (txrsp->status == NETIF_RSP_NULL)
347 skb = np->tx_skbs[id].skb;
348 if (unlikely(gnttab_query_foreign_access(
349 np->grant_tx_ref[id]) != 0)) {
350 printk(KERN_ALERT "xennet_tx_buf_gc: warning "
351 "-- grant still in use by backend "
355 gnttab_end_foreign_access_ref(
356 np->grant_tx_ref[id], GNTMAP_readonly);
357 gnttab_release_grant_reference(
358 &np->gref_tx_head, np->grant_tx_ref[id]);
359 np->grant_tx_ref[id] = GRANT_INVALID_REF;
360 add_id_to_freelist(&np->tx_skb_freelist, np->tx_skbs, id);
361 dev_kfree_skb_irq(skb);
364 np->tx.rsp_cons = prod;
367 * Set a new event, then check for race with update of tx_cons.
368 * Note that it is essential to schedule a callback, no matter
369 * how few buffers are pending. Even if there is space in the
370 * transmit ring, higher layers may be blocked because too much
371 * data is outstanding: in such cases notification from Xen is
372 * likely to be the only kick that we'll get.
374 np->tx.sring->rsp_event =
375 prod + ((np->tx.sring->req_prod - prod) >> 1) + 1;
376 mb(); /* update shared area */
377 } while ((cons == prod) && (prod != np->tx.sring->rsp_prod));
379 xennet_maybe_wake_tx(dev);
382 static void xennet_make_frags(struct sk_buff *skb, struct net_device *dev,
383 struct xen_netif_tx_request *tx)
385 struct netfront_info *np = netdev_priv(dev);
386 char *data = skb->data;
388 RING_IDX prod = np->tx.req_prod_pvt;
389 int frags = skb_shinfo(skb)->nr_frags;
390 unsigned int offset = offset_in_page(data);
391 unsigned int len = skb_headlen(skb);
396 /* While the header overlaps a page boundary (including being
397 larger than a page), split it it into page-sized chunks. */
398 while (len > PAGE_SIZE - offset) {
399 tx->size = PAGE_SIZE - offset;
400 tx->flags |= NETTXF_more_data;
405 id = get_id_from_freelist(&np->tx_skb_freelist, np->tx_skbs);
406 np->tx_skbs[id].skb = skb_get(skb);
407 tx = RING_GET_REQUEST(&np->tx, prod++);
409 ref = gnttab_claim_grant_reference(&np->gref_tx_head);
410 BUG_ON((signed short)ref < 0);
412 mfn = virt_to_mfn(data);
413 gnttab_grant_foreign_access_ref(ref, np->xbdev->otherend_id,
414 mfn, GNTMAP_readonly);
416 tx->gref = np->grant_tx_ref[id] = ref;
422 /* Grant backend access to each skb fragment page. */
423 for (i = 0; i < frags; i++) {
424 skb_frag_t *frag = skb_shinfo(skb)->frags + i;
426 tx->flags |= NETTXF_more_data;
428 id = get_id_from_freelist(&np->tx_skb_freelist, np->tx_skbs);
429 np->tx_skbs[id].skb = skb_get(skb);
430 tx = RING_GET_REQUEST(&np->tx, prod++);
432 ref = gnttab_claim_grant_reference(&np->gref_tx_head);
433 BUG_ON((signed short)ref < 0);
435 mfn = pfn_to_mfn(page_to_pfn(frag->page));
436 gnttab_grant_foreign_access_ref(ref, np->xbdev->otherend_id,
437 mfn, GNTMAP_readonly);
439 tx->gref = np->grant_tx_ref[id] = ref;
440 tx->offset = frag->page_offset;
441 tx->size = frag->size;
445 np->tx.req_prod_pvt = prod;
448 static int xennet_start_xmit(struct sk_buff *skb, struct net_device *dev)
451 struct netfront_info *np = netdev_priv(dev);
452 struct xen_netif_tx_request *tx;
453 struct xen_netif_extra_info *extra;
454 char *data = skb->data;
459 int frags = skb_shinfo(skb)->nr_frags;
460 unsigned int offset = offset_in_page(data);
461 unsigned int len = skb_headlen(skb);
463 frags += (offset + len + PAGE_SIZE - 1) / PAGE_SIZE;
464 if (unlikely(frags > MAX_SKB_FRAGS + 1)) {
465 printk(KERN_ALERT "xennet: skb rides the rocket: %d frags\n",
471 spin_lock_irq(&np->tx_lock);
473 if (unlikely(!netif_carrier_ok(dev) ||
474 (frags > 1 && !xennet_can_sg(dev)) ||
475 netif_needs_gso(dev, skb))) {
476 spin_unlock_irq(&np->tx_lock);
480 i = np->tx.req_prod_pvt;
482 id = get_id_from_freelist(&np->tx_skb_freelist, np->tx_skbs);
483 np->tx_skbs[id].skb = skb;
485 tx = RING_GET_REQUEST(&np->tx, i);
488 ref = gnttab_claim_grant_reference(&np->gref_tx_head);
489 BUG_ON((signed short)ref < 0);
490 mfn = virt_to_mfn(data);
491 gnttab_grant_foreign_access_ref(
492 ref, np->xbdev->otherend_id, mfn, GNTMAP_readonly);
493 tx->gref = np->grant_tx_ref[id] = ref;
499 if (skb->ip_summed == CHECKSUM_PARTIAL)
501 tx->flags |= NETTXF_csum_blank | NETTXF_data_validated;
502 else if (skb->ip_summed == CHECKSUM_UNNECESSARY)
503 /* remote but checksummed. */
504 tx->flags |= NETTXF_data_validated;
506 if (skb_shinfo(skb)->gso_size) {
507 struct xen_netif_extra_info *gso;
509 gso = (struct xen_netif_extra_info *)
510 RING_GET_REQUEST(&np->tx, ++i);
513 extra->flags |= XEN_NETIF_EXTRA_FLAG_MORE;
515 tx->flags |= NETTXF_extra_info;
517 gso->u.gso.size = skb_shinfo(skb)->gso_size;
518 gso->u.gso.type = XEN_NETIF_GSO_TYPE_TCPV4;
520 gso->u.gso.features = 0;
522 gso->type = XEN_NETIF_EXTRA_TYPE_GSO;
527 np->tx.req_prod_pvt = i + 1;
529 xennet_make_frags(skb, dev, tx);
532 RING_PUSH_REQUESTS_AND_CHECK_NOTIFY(&np->tx, notify);
534 notify_remote_via_irq(np->netdev->irq);
536 dev->stats.tx_bytes += skb->len;
537 dev->stats.tx_packets++;
539 /* Note: It is not safe to access skb after xennet_tx_buf_gc()! */
540 xennet_tx_buf_gc(dev);
542 if (!netfront_tx_slot_available(np))
543 netif_stop_queue(dev);
545 spin_unlock_irq(&np->tx_lock);
550 dev->stats.tx_dropped++;
555 static int xennet_close(struct net_device *dev)
557 struct netfront_info *np = netdev_priv(dev);
558 netif_stop_queue(np->netdev);
559 napi_disable(&np->napi);
563 static void xennet_move_rx_slot(struct netfront_info *np, struct sk_buff *skb,
566 int new = xennet_rxidx(np->rx.req_prod_pvt);
568 BUG_ON(np->rx_skbs[new]);
569 np->rx_skbs[new] = skb;
570 np->grant_rx_ref[new] = ref;
571 RING_GET_REQUEST(&np->rx, np->rx.req_prod_pvt)->id = new;
572 RING_GET_REQUEST(&np->rx, np->rx.req_prod_pvt)->gref = ref;
573 np->rx.req_prod_pvt++;
576 static int xennet_get_extras(struct netfront_info *np,
577 struct xen_netif_extra_info *extras,
581 struct xen_netif_extra_info *extra;
582 struct device *dev = &np->netdev->dev;
583 RING_IDX cons = np->rx.rsp_cons;
590 if (unlikely(cons + 1 == rp)) {
592 dev_warn(dev, "Missing extra info\n");
597 extra = (struct xen_netif_extra_info *)
598 RING_GET_RESPONSE(&np->rx, ++cons);
600 if (unlikely(!extra->type ||
601 extra->type >= XEN_NETIF_EXTRA_TYPE_MAX)) {
603 dev_warn(dev, "Invalid extra type: %d\n",
607 memcpy(&extras[extra->type - 1], extra,
611 skb = xennet_get_rx_skb(np, cons);
612 ref = xennet_get_rx_ref(np, cons);
613 xennet_move_rx_slot(np, skb, ref);
614 } while (extra->flags & XEN_NETIF_EXTRA_FLAG_MORE);
616 np->rx.rsp_cons = cons;
620 static int xennet_get_responses(struct netfront_info *np,
621 struct netfront_rx_info *rinfo, RING_IDX rp,
622 struct sk_buff_head *list)
624 struct xen_netif_rx_response *rx = &rinfo->rx;
625 struct xen_netif_extra_info *extras = rinfo->extras;
626 struct device *dev = &np->netdev->dev;
627 RING_IDX cons = np->rx.rsp_cons;
628 struct sk_buff *skb = xennet_get_rx_skb(np, cons);
629 grant_ref_t ref = xennet_get_rx_ref(np, cons);
630 int max = MAX_SKB_FRAGS + (rx->status <= RX_COPY_THRESHOLD);
635 if (rx->flags & NETRXF_extra_info) {
636 err = xennet_get_extras(np, extras, rp);
637 cons = np->rx.rsp_cons;
641 if (unlikely(rx->status < 0 ||
642 rx->offset + rx->status > PAGE_SIZE)) {
644 dev_warn(dev, "rx->offset: %x, size: %u\n",
645 rx->offset, rx->status);
646 xennet_move_rx_slot(np, skb, ref);
652 * This definitely indicates a bug, either in this driver or in
653 * the backend driver. In future this should flag the bad
654 * situation to the system controller to reboot the backed.
656 if (ref == GRANT_INVALID_REF) {
658 dev_warn(dev, "Bad rx response id %d.\n",
664 ret = gnttab_end_foreign_access_ref(ref, 0);
667 gnttab_release_grant_reference(&np->gref_rx_head, ref);
669 __skb_queue_tail(list, skb);
672 if (!(rx->flags & NETRXF_more_data))
675 if (cons + frags == rp) {
677 dev_warn(dev, "Need more frags\n");
682 rx = RING_GET_RESPONSE(&np->rx, cons + frags);
683 skb = xennet_get_rx_skb(np, cons + frags);
684 ref = xennet_get_rx_ref(np, cons + frags);
688 if (unlikely(frags > max)) {
690 dev_warn(dev, "Too many frags\n");
695 np->rx.rsp_cons = cons + frags;
700 static int xennet_set_skb_gso(struct sk_buff *skb,
701 struct xen_netif_extra_info *gso)
703 if (!gso->u.gso.size) {
705 printk(KERN_WARNING "GSO size must not be zero.\n");
709 /* Currently only TCPv4 S.O. is supported. */
710 if (gso->u.gso.type != XEN_NETIF_GSO_TYPE_TCPV4) {
712 printk(KERN_WARNING "Bad GSO type %d.\n", gso->u.gso.type);
716 skb_shinfo(skb)->gso_size = gso->u.gso.size;
717 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
719 /* Header must be checked, and gso_segs computed. */
720 skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
721 skb_shinfo(skb)->gso_segs = 0;
726 static RING_IDX xennet_fill_frags(struct netfront_info *np,
728 struct sk_buff_head *list)
730 struct skb_shared_info *shinfo = skb_shinfo(skb);
731 int nr_frags = shinfo->nr_frags;
732 RING_IDX cons = np->rx.rsp_cons;
733 skb_frag_t *frag = shinfo->frags + nr_frags;
734 struct sk_buff *nskb;
736 while ((nskb = __skb_dequeue(list))) {
737 struct xen_netif_rx_response *rx =
738 RING_GET_RESPONSE(&np->rx, ++cons);
740 frag->page = skb_shinfo(nskb)->frags[0].page;
741 frag->page_offset = rx->offset;
742 frag->size = rx->status;
744 skb->data_len += rx->status;
746 skb_shinfo(nskb)->nr_frags = 0;
753 shinfo->nr_frags = nr_frags;
757 static int skb_checksum_setup(struct sk_buff *skb)
763 if (skb->protocol != htons(ETH_P_IP))
766 iph = (void *)skb->data;
767 th = skb->data + 4 * iph->ihl;
768 if (th >= skb_tail_pointer(skb))
771 skb->csum_start = th - skb->head;
772 switch (iph->protocol) {
774 skb->csum_offset = offsetof(struct tcphdr, check);
777 skb->csum_offset = offsetof(struct udphdr, check);
781 printk(KERN_ERR "Attempting to checksum a non-"
782 "TCP/UDP packet, dropping a protocol"
783 " %d packet", iph->protocol);
787 if ((th + skb->csum_offset + 2) > skb_tail_pointer(skb))
796 static int handle_incoming_queue(struct net_device *dev,
797 struct sk_buff_head *rxq)
799 int packets_dropped = 0;
802 while ((skb = __skb_dequeue(rxq)) != NULL) {
803 struct page *page = NETFRONT_SKB_CB(skb)->page;
804 void *vaddr = page_address(page);
805 unsigned offset = NETFRONT_SKB_CB(skb)->offset;
807 memcpy(skb->data, vaddr + offset,
810 if (page != skb_shinfo(skb)->frags[0].page)
813 /* Ethernet work: Delayed to here as it peeks the header. */
814 skb->protocol = eth_type_trans(skb, dev);
816 if (skb->ip_summed == CHECKSUM_PARTIAL) {
817 if (skb_checksum_setup(skb)) {
820 dev->stats.rx_errors++;
825 dev->stats.rx_packets++;
826 dev->stats.rx_bytes += skb->len;
829 netif_receive_skb(skb);
830 dev->last_rx = jiffies;
833 return packets_dropped;
836 static int xennet_poll(struct napi_struct *napi, int budget)
838 struct netfront_info *np = container_of(napi, struct netfront_info, napi);
839 struct net_device *dev = np->netdev;
841 struct netfront_rx_info rinfo;
842 struct xen_netif_rx_response *rx = &rinfo.rx;
843 struct xen_netif_extra_info *extras = rinfo.extras;
846 struct sk_buff_head rxq;
847 struct sk_buff_head errq;
848 struct sk_buff_head tmpq;
853 spin_lock(&np->rx_lock);
855 if (unlikely(!netif_carrier_ok(dev))) {
856 spin_unlock(&np->rx_lock);
860 skb_queue_head_init(&rxq);
861 skb_queue_head_init(&errq);
862 skb_queue_head_init(&tmpq);
864 rp = np->rx.sring->rsp_prod;
865 rmb(); /* Ensure we see queued responses up to 'rp'. */
869 while ((i != rp) && (work_done < budget)) {
870 memcpy(rx, RING_GET_RESPONSE(&np->rx, i), sizeof(*rx));
871 memset(extras, 0, sizeof(rinfo.extras));
873 err = xennet_get_responses(np, &rinfo, rp, &tmpq);
877 while ((skb = __skb_dequeue(&tmpq)))
878 __skb_queue_tail(&errq, skb);
879 dev->stats.rx_errors++;
884 skb = __skb_dequeue(&tmpq);
886 if (extras[XEN_NETIF_EXTRA_TYPE_GSO - 1].type) {
887 struct xen_netif_extra_info *gso;
888 gso = &extras[XEN_NETIF_EXTRA_TYPE_GSO - 1];
890 if (unlikely(xennet_set_skb_gso(skb, gso))) {
891 __skb_queue_head(&tmpq, skb);
892 np->rx.rsp_cons += skb_queue_len(&tmpq);
897 NETFRONT_SKB_CB(skb)->page = skb_shinfo(skb)->frags[0].page;
898 NETFRONT_SKB_CB(skb)->offset = rx->offset;
901 if (len > RX_COPY_THRESHOLD)
902 len = RX_COPY_THRESHOLD;
905 if (rx->status > len) {
906 skb_shinfo(skb)->frags[0].page_offset =
908 skb_shinfo(skb)->frags[0].size = rx->status - len;
909 skb->data_len = rx->status - len;
911 skb_shinfo(skb)->frags[0].page = NULL;
912 skb_shinfo(skb)->nr_frags = 0;
915 i = xennet_fill_frags(np, skb, &tmpq);
918 * Truesize approximates the size of true data plus
919 * any supervisor overheads. Adding hypervisor
920 * overheads has been shown to significantly reduce
921 * achievable bandwidth with the default receive
922 * buffer size. It is therefore not wise to account
925 * After alloc_skb(RX_COPY_THRESHOLD), truesize is set
926 * to RX_COPY_THRESHOLD + the supervisor
927 * overheads. Here, we add the size of the data pulled
928 * in xennet_fill_frags().
930 * We also adjust for any unused space in the main
931 * data area by subtracting (RX_COPY_THRESHOLD -
932 * len). This is especially important with drivers
933 * which split incoming packets into header and data,
934 * using only 66 bytes of the main data area (see the
935 * e1000 driver for example.) On such systems,
936 * without this last adjustement, our achievable
937 * receive throughout using the standard receive
938 * buffer size was cut by 25%(!!!).
940 skb->truesize += skb->data_len - (RX_COPY_THRESHOLD - len);
941 skb->len += skb->data_len;
943 if (rx->flags & NETRXF_csum_blank)
944 skb->ip_summed = CHECKSUM_PARTIAL;
945 else if (rx->flags & NETRXF_data_validated)
946 skb->ip_summed = CHECKSUM_UNNECESSARY;
948 __skb_queue_tail(&rxq, skb);
950 np->rx.rsp_cons = ++i;
954 while ((skb = __skb_dequeue(&errq)))
957 work_done -= handle_incoming_queue(dev, &rxq);
959 /* If we get a callback with very few responses, reduce fill target. */
960 /* NB. Note exponential increase, linear decrease. */
961 if (((np->rx.req_prod_pvt - np->rx.sring->rsp_prod) >
962 ((3*np->rx_target) / 4)) &&
963 (--np->rx_target < np->rx_min_target))
964 np->rx_target = np->rx_min_target;
966 xennet_alloc_rx_buffers(dev);
968 if (work_done < budget) {
971 local_irq_save(flags);
973 RING_FINAL_CHECK_FOR_RESPONSES(&np->rx, more_to_do);
975 __netif_rx_complete(dev, napi);
977 local_irq_restore(flags);
980 spin_unlock(&np->rx_lock);
985 static int xennet_change_mtu(struct net_device *dev, int mtu)
987 int max = xennet_can_sg(dev) ? 65535 - ETH_HLEN : ETH_DATA_LEN;
995 static void xennet_release_tx_bufs(struct netfront_info *np)
1000 for (i = 0; i < NET_TX_RING_SIZE; i++) {
1001 /* Skip over entries which are actually freelist references */
1002 if ((unsigned long)np->tx_skbs[i].skb < PAGE_OFFSET)
1005 skb = np->tx_skbs[i].skb;
1006 gnttab_end_foreign_access_ref(np->grant_tx_ref[i],
1008 gnttab_release_grant_reference(&np->gref_tx_head,
1009 np->grant_tx_ref[i]);
1010 np->grant_tx_ref[i] = GRANT_INVALID_REF;
1011 add_id_to_freelist(&np->tx_skb_freelist, np->tx_skbs, i);
1012 dev_kfree_skb_irq(skb);
1016 static void xennet_release_rx_bufs(struct netfront_info *np)
1018 struct mmu_update *mmu = np->rx_mmu;
1019 struct multicall_entry *mcl = np->rx_mcl;
1020 struct sk_buff_head free_list;
1021 struct sk_buff *skb;
1023 int xfer = 0, noxfer = 0, unused = 0;
1026 dev_warn(&np->netdev->dev, "%s: fix me for copying receiver.\n",
1030 skb_queue_head_init(&free_list);
1032 spin_lock_bh(&np->rx_lock);
1034 for (id = 0; id < NET_RX_RING_SIZE; id++) {
1035 ref = np->grant_rx_ref[id];
1036 if (ref == GRANT_INVALID_REF) {
1041 skb = np->rx_skbs[id];
1042 mfn = gnttab_end_foreign_transfer_ref(ref);
1043 gnttab_release_grant_reference(&np->gref_rx_head, ref);
1044 np->grant_rx_ref[id] = GRANT_INVALID_REF;
1047 skb_shinfo(skb)->nr_frags = 0;
1053 if (!xen_feature(XENFEAT_auto_translated_physmap)) {
1054 /* Remap the page. */
1055 struct page *page = skb_shinfo(skb)->frags[0].page;
1056 unsigned long pfn = page_to_pfn(page);
1057 void *vaddr = page_address(page);
1059 MULTI_update_va_mapping(mcl, (unsigned long)vaddr,
1060 mfn_pte(mfn, PAGE_KERNEL),
1063 mmu->ptr = ((u64)mfn << PAGE_SHIFT)
1064 | MMU_MACHPHYS_UPDATE;
1068 set_phys_to_machine(pfn, mfn);
1070 __skb_queue_tail(&free_list, skb);
1074 dev_info(&np->netdev->dev, "%s: %d xfer, %d noxfer, %d unused\n",
1075 __func__, xfer, noxfer, unused);
1078 if (!xen_feature(XENFEAT_auto_translated_physmap)) {
1079 /* Do all the remapping work and M2P updates. */
1080 MULTI_mmu_update(mcl, np->rx_mmu, mmu - np->rx_mmu,
1083 HYPERVISOR_multicall(np->rx_mcl, mcl - np->rx_mcl);
1087 while ((skb = __skb_dequeue(&free_list)) != NULL)
1090 spin_unlock_bh(&np->rx_lock);
1093 static void xennet_uninit(struct net_device *dev)
1095 struct netfront_info *np = netdev_priv(dev);
1096 xennet_release_tx_bufs(np);
1097 xennet_release_rx_bufs(np);
1098 gnttab_free_grant_references(np->gref_tx_head);
1099 gnttab_free_grant_references(np->gref_rx_head);
1102 static struct net_device * __devinit xennet_create_dev(struct xenbus_device *dev)
1105 struct net_device *netdev;
1106 struct netfront_info *np;
1108 netdev = alloc_etherdev(sizeof(struct netfront_info));
1110 printk(KERN_WARNING "%s> alloc_etherdev failed.\n",
1112 return ERR_PTR(-ENOMEM);
1115 np = netdev_priv(netdev);
1118 spin_lock_init(&np->tx_lock);
1119 spin_lock_init(&np->rx_lock);
1121 skb_queue_head_init(&np->rx_batch);
1122 np->rx_target = RX_DFL_MIN_TARGET;
1123 np->rx_min_target = RX_DFL_MIN_TARGET;
1124 np->rx_max_target = RX_MAX_TARGET;
1126 init_timer(&np->rx_refill_timer);
1127 np->rx_refill_timer.data = (unsigned long)netdev;
1128 np->rx_refill_timer.function = rx_refill_timeout;
1130 /* Initialise tx_skbs as a free chain containing every entry. */
1131 np->tx_skb_freelist = 0;
1132 for (i = 0; i < NET_TX_RING_SIZE; i++) {
1133 np->tx_skbs[i].link = i+1;
1134 np->grant_tx_ref[i] = GRANT_INVALID_REF;
1137 /* Clear out rx_skbs */
1138 for (i = 0; i < NET_RX_RING_SIZE; i++) {
1139 np->rx_skbs[i] = NULL;
1140 np->grant_rx_ref[i] = GRANT_INVALID_REF;
1143 /* A grant for every tx ring slot */
1144 if (gnttab_alloc_grant_references(TX_MAX_TARGET,
1145 &np->gref_tx_head) < 0) {
1146 printk(KERN_ALERT "#### netfront can't alloc tx grant refs\n");
1150 /* A grant for every rx ring slot */
1151 if (gnttab_alloc_grant_references(RX_MAX_TARGET,
1152 &np->gref_rx_head) < 0) {
1153 printk(KERN_ALERT "#### netfront can't alloc rx grant refs\n");
1158 netdev->open = xennet_open;
1159 netdev->hard_start_xmit = xennet_start_xmit;
1160 netdev->stop = xennet_close;
1161 netif_napi_add(netdev, &np->napi, xennet_poll, 64);
1162 netdev->uninit = xennet_uninit;
1163 netdev->change_mtu = xennet_change_mtu;
1164 netdev->features = NETIF_F_IP_CSUM;
1166 SET_ETHTOOL_OPS(netdev, &xennet_ethtool_ops);
1167 SET_NETDEV_DEV(netdev, &dev->dev);
1169 np->netdev = netdev;
1171 netif_carrier_off(netdev);
1176 gnttab_free_grant_references(np->gref_tx_head);
1178 free_netdev(netdev);
1179 return ERR_PTR(err);
1183 * Entry point to this code when a new device is created. Allocate the basic
1184 * structures and the ring buffers for communication with the backend, and
1185 * inform the backend of the appropriate details for those.
1187 static int __devinit netfront_probe(struct xenbus_device *dev,
1188 const struct xenbus_device_id *id)
1191 struct net_device *netdev;
1192 struct netfront_info *info;
1194 netdev = xennet_create_dev(dev);
1195 if (IS_ERR(netdev)) {
1196 err = PTR_ERR(netdev);
1197 xenbus_dev_fatal(dev, err, "creating netdev");
1201 info = netdev_priv(netdev);
1202 dev->dev.driver_data = info;
1204 err = register_netdev(info->netdev);
1206 printk(KERN_WARNING "%s: register_netdev err=%d\n",
1211 err = xennet_sysfs_addif(info->netdev);
1213 unregister_netdev(info->netdev);
1214 printk(KERN_WARNING "%s: add sysfs failed err=%d\n",
1222 free_netdev(netdev);
1223 dev->dev.driver_data = NULL;
1227 static void xennet_end_access(int ref, void *page)
1229 /* This frees the page as a side-effect */
1230 if (ref != GRANT_INVALID_REF)
1231 gnttab_end_foreign_access(ref, 0, (unsigned long)page);
1234 static void xennet_disconnect_backend(struct netfront_info *info)
1236 /* Stop old i/f to prevent errors whilst we rebuild the state. */
1237 spin_lock_bh(&info->rx_lock);
1238 spin_lock_irq(&info->tx_lock);
1239 netif_carrier_off(info->netdev);
1240 spin_unlock_irq(&info->tx_lock);
1241 spin_unlock_bh(&info->rx_lock);
1243 if (info->netdev->irq)
1244 unbind_from_irqhandler(info->netdev->irq, info->netdev);
1245 info->evtchn = info->netdev->irq = 0;
1247 /* End access and free the pages */
1248 xennet_end_access(info->tx_ring_ref, info->tx.sring);
1249 xennet_end_access(info->rx_ring_ref, info->rx.sring);
1251 info->tx_ring_ref = GRANT_INVALID_REF;
1252 info->rx_ring_ref = GRANT_INVALID_REF;
1253 info->tx.sring = NULL;
1254 info->rx.sring = NULL;
1258 * We are reconnecting to the backend, due to a suspend/resume, or a backend
1259 * driver restart. We tear down our netif structure and recreate it, but
1260 * leave the device-layer structures intact so that this is transparent to the
1261 * rest of the kernel.
1263 static int netfront_resume(struct xenbus_device *dev)
1265 struct netfront_info *info = dev->dev.driver_data;
1267 dev_dbg(&dev->dev, "%s\n", dev->nodename);
1269 xennet_disconnect_backend(info);
1273 static int xen_net_read_mac(struct xenbus_device *dev, u8 mac[])
1275 char *s, *e, *macstr;
1278 macstr = s = xenbus_read(XBT_NIL, dev->nodename, "mac", NULL);
1280 return PTR_ERR(macstr);
1282 for (i = 0; i < ETH_ALEN; i++) {
1283 mac[i] = simple_strtoul(s, &e, 16);
1284 if ((s == e) || (*e != ((i == ETH_ALEN-1) ? '\0' : ':'))) {
1295 static irqreturn_t xennet_interrupt(int irq, void *dev_id)
1297 struct net_device *dev = dev_id;
1298 struct netfront_info *np = netdev_priv(dev);
1299 unsigned long flags;
1301 spin_lock_irqsave(&np->tx_lock, flags);
1303 if (likely(netif_carrier_ok(dev))) {
1304 xennet_tx_buf_gc(dev);
1305 /* Under tx_lock: protects access to rx shared-ring indexes. */
1306 if (RING_HAS_UNCONSUMED_RESPONSES(&np->rx))
1307 netif_rx_schedule(dev, &np->napi);
1310 spin_unlock_irqrestore(&np->tx_lock, flags);
1315 static int setup_netfront(struct xenbus_device *dev, struct netfront_info *info)
1317 struct xen_netif_tx_sring *txs;
1318 struct xen_netif_rx_sring *rxs;
1320 struct net_device *netdev = info->netdev;
1322 info->tx_ring_ref = GRANT_INVALID_REF;
1323 info->rx_ring_ref = GRANT_INVALID_REF;
1324 info->rx.sring = NULL;
1325 info->tx.sring = NULL;
1328 err = xen_net_read_mac(dev, netdev->dev_addr);
1330 xenbus_dev_fatal(dev, err, "parsing %s/mac", dev->nodename);
1334 txs = (struct xen_netif_tx_sring *)get_zeroed_page(GFP_KERNEL);
1337 xenbus_dev_fatal(dev, err, "allocating tx ring page");
1340 SHARED_RING_INIT(txs);
1341 FRONT_RING_INIT(&info->tx, txs, PAGE_SIZE);
1343 err = xenbus_grant_ring(dev, virt_to_mfn(txs));
1345 free_page((unsigned long)txs);
1349 info->tx_ring_ref = err;
1350 rxs = (struct xen_netif_rx_sring *)get_zeroed_page(GFP_KERNEL);
1353 xenbus_dev_fatal(dev, err, "allocating rx ring page");
1356 SHARED_RING_INIT(rxs);
1357 FRONT_RING_INIT(&info->rx, rxs, PAGE_SIZE);
1359 err = xenbus_grant_ring(dev, virt_to_mfn(rxs));
1361 free_page((unsigned long)rxs);
1364 info->rx_ring_ref = err;
1366 err = xenbus_alloc_evtchn(dev, &info->evtchn);
1370 err = bind_evtchn_to_irqhandler(info->evtchn, xennet_interrupt,
1371 IRQF_SAMPLE_RANDOM, netdev->name,
1382 /* Common code used when first setting up, and when resuming. */
1383 static int talk_to_backend(struct xenbus_device *dev,
1384 struct netfront_info *info)
1386 const char *message;
1387 struct xenbus_transaction xbt;
1390 /* Create shared ring, alloc event channel. */
1391 err = setup_netfront(dev, info);
1396 err = xenbus_transaction_start(&xbt);
1398 xenbus_dev_fatal(dev, err, "starting transaction");
1402 err = xenbus_printf(xbt, dev->nodename, "tx-ring-ref", "%u",
1405 message = "writing tx ring-ref";
1406 goto abort_transaction;
1408 err = xenbus_printf(xbt, dev->nodename, "rx-ring-ref", "%u",
1411 message = "writing rx ring-ref";
1412 goto abort_transaction;
1414 err = xenbus_printf(xbt, dev->nodename,
1415 "event-channel", "%u", info->evtchn);
1417 message = "writing event-channel";
1418 goto abort_transaction;
1421 err = xenbus_printf(xbt, dev->nodename, "request-rx-copy", "%u",
1424 message = "writing request-rx-copy";
1425 goto abort_transaction;
1428 err = xenbus_printf(xbt, dev->nodename, "feature-rx-notify", "%d", 1);
1430 message = "writing feature-rx-notify";
1431 goto abort_transaction;
1434 err = xenbus_printf(xbt, dev->nodename, "feature-sg", "%d", 1);
1436 message = "writing feature-sg";
1437 goto abort_transaction;
1440 err = xenbus_printf(xbt, dev->nodename, "feature-gso-tcpv4", "%d", 1);
1442 message = "writing feature-gso-tcpv4";
1443 goto abort_transaction;
1446 err = xenbus_transaction_end(xbt, 0);
1450 xenbus_dev_fatal(dev, err, "completing transaction");
1457 xenbus_transaction_end(xbt, 1);
1458 xenbus_dev_fatal(dev, err, "%s", message);
1460 xennet_disconnect_backend(info);
1465 static int xennet_set_sg(struct net_device *dev, u32 data)
1468 struct netfront_info *np = netdev_priv(dev);
1471 if (xenbus_scanf(XBT_NIL, np->xbdev->otherend, "feature-sg",
1476 } else if (dev->mtu > ETH_DATA_LEN)
1477 dev->mtu = ETH_DATA_LEN;
1479 return ethtool_op_set_sg(dev, data);
1482 static int xennet_set_tso(struct net_device *dev, u32 data)
1485 struct netfront_info *np = netdev_priv(dev);
1488 if (xenbus_scanf(XBT_NIL, np->xbdev->otherend,
1489 "feature-gso-tcpv4", "%d", &val) < 0)
1495 return ethtool_op_set_tso(dev, data);
1498 static void xennet_set_features(struct net_device *dev)
1500 /* Turn off all GSO bits except ROBUST. */
1501 dev->features &= (1 << NETIF_F_GSO_SHIFT) - 1;
1502 dev->features |= NETIF_F_GSO_ROBUST;
1503 xennet_set_sg(dev, 0);
1505 /* We need checksum offload to enable scatter/gather and TSO. */
1506 if (!(dev->features & NETIF_F_IP_CSUM))
1509 if (!xennet_set_sg(dev, 1))
1510 xennet_set_tso(dev, 1);
1513 static int xennet_connect(struct net_device *dev)
1515 struct netfront_info *np = netdev_priv(dev);
1516 int i, requeue_idx, err;
1517 struct sk_buff *skb;
1519 struct xen_netif_rx_request *req;
1520 unsigned int feature_rx_copy;
1522 err = xenbus_scanf(XBT_NIL, np->xbdev->otherend,
1523 "feature-rx-copy", "%u", &feature_rx_copy);
1525 feature_rx_copy = 0;
1527 if (!feature_rx_copy) {
1529 "backend does not support copying receive path\n");
1533 err = talk_to_backend(np->xbdev, np);
1537 xennet_set_features(dev);
1539 spin_lock_bh(&np->rx_lock);
1540 spin_lock_irq(&np->tx_lock);
1542 /* Step 1: Discard all pending TX packet fragments. */
1543 xennet_release_tx_bufs(np);
1545 /* Step 2: Rebuild the RX buffer freelist and the RX ring itself. */
1546 for (requeue_idx = 0, i = 0; i < NET_RX_RING_SIZE; i++) {
1547 if (!np->rx_skbs[i])
1550 skb = np->rx_skbs[requeue_idx] = xennet_get_rx_skb(np, i);
1551 ref = np->grant_rx_ref[requeue_idx] = xennet_get_rx_ref(np, i);
1552 req = RING_GET_REQUEST(&np->rx, requeue_idx);
1554 gnttab_grant_foreign_access_ref(
1555 ref, np->xbdev->otherend_id,
1556 pfn_to_mfn(page_to_pfn(skb_shinfo(skb)->
1560 req->id = requeue_idx;
1565 np->rx.req_prod_pvt = requeue_idx;
1568 * Step 3: All public and private state should now be sane. Get
1569 * ready to start sending and receiving packets and give the driver
1570 * domain a kick because we've probably just requeued some
1573 netif_carrier_on(np->netdev);
1574 notify_remote_via_irq(np->netdev->irq);
1575 xennet_tx_buf_gc(dev);
1576 xennet_alloc_rx_buffers(dev);
1578 spin_unlock_irq(&np->tx_lock);
1579 spin_unlock_bh(&np->rx_lock);
1585 * Callback received when the backend's state changes.
1587 static void backend_changed(struct xenbus_device *dev,
1588 enum xenbus_state backend_state)
1590 struct netfront_info *np = dev->dev.driver_data;
1591 struct net_device *netdev = np->netdev;
1593 dev_dbg(&dev->dev, "%s\n", xenbus_strstate(backend_state));
1595 switch (backend_state) {
1596 case XenbusStateInitialising:
1597 case XenbusStateInitialised:
1598 case XenbusStateConnected:
1599 case XenbusStateUnknown:
1600 case XenbusStateClosed:
1603 case XenbusStateInitWait:
1604 if (dev->state != XenbusStateInitialising)
1606 if (xennet_connect(netdev) != 0)
1608 xenbus_switch_state(dev, XenbusStateConnected);
1611 case XenbusStateClosing:
1612 xenbus_frontend_closed(dev);
1617 static struct ethtool_ops xennet_ethtool_ops =
1619 .set_tx_csum = ethtool_op_set_tx_csum,
1620 .set_sg = xennet_set_sg,
1621 .set_tso = xennet_set_tso,
1622 .get_link = ethtool_op_get_link,
1626 static ssize_t show_rxbuf_min(struct device *dev,
1627 struct device_attribute *attr, char *buf)
1629 struct net_device *netdev = to_net_dev(dev);
1630 struct netfront_info *info = netdev_priv(netdev);
1632 return sprintf(buf, "%u\n", info->rx_min_target);
1635 static ssize_t store_rxbuf_min(struct device *dev,
1636 struct device_attribute *attr,
1637 const char *buf, size_t len)
1639 struct net_device *netdev = to_net_dev(dev);
1640 struct netfront_info *np = netdev_priv(netdev);
1642 unsigned long target;
1644 if (!capable(CAP_NET_ADMIN))
1647 target = simple_strtoul(buf, &endp, 0);
1651 if (target < RX_MIN_TARGET)
1652 target = RX_MIN_TARGET;
1653 if (target > RX_MAX_TARGET)
1654 target = RX_MAX_TARGET;
1656 spin_lock_bh(&np->rx_lock);
1657 if (target > np->rx_max_target)
1658 np->rx_max_target = target;
1659 np->rx_min_target = target;
1660 if (target > np->rx_target)
1661 np->rx_target = target;
1663 xennet_alloc_rx_buffers(netdev);
1665 spin_unlock_bh(&np->rx_lock);
1669 static ssize_t show_rxbuf_max(struct device *dev,
1670 struct device_attribute *attr, char *buf)
1672 struct net_device *netdev = to_net_dev(dev);
1673 struct netfront_info *info = netdev_priv(netdev);
1675 return sprintf(buf, "%u\n", info->rx_max_target);
1678 static ssize_t store_rxbuf_max(struct device *dev,
1679 struct device_attribute *attr,
1680 const char *buf, size_t len)
1682 struct net_device *netdev = to_net_dev(dev);
1683 struct netfront_info *np = netdev_priv(netdev);
1685 unsigned long target;
1687 if (!capable(CAP_NET_ADMIN))
1690 target = simple_strtoul(buf, &endp, 0);
1694 if (target < RX_MIN_TARGET)
1695 target = RX_MIN_TARGET;
1696 if (target > RX_MAX_TARGET)
1697 target = RX_MAX_TARGET;
1699 spin_lock_bh(&np->rx_lock);
1700 if (target < np->rx_min_target)
1701 np->rx_min_target = target;
1702 np->rx_max_target = target;
1703 if (target < np->rx_target)
1704 np->rx_target = target;
1706 xennet_alloc_rx_buffers(netdev);
1708 spin_unlock_bh(&np->rx_lock);
1712 static ssize_t show_rxbuf_cur(struct device *dev,
1713 struct device_attribute *attr, char *buf)
1715 struct net_device *netdev = to_net_dev(dev);
1716 struct netfront_info *info = netdev_priv(netdev);
1718 return sprintf(buf, "%u\n", info->rx_target);
1721 static struct device_attribute xennet_attrs[] = {
1722 __ATTR(rxbuf_min, S_IRUGO|S_IWUSR, show_rxbuf_min, store_rxbuf_min),
1723 __ATTR(rxbuf_max, S_IRUGO|S_IWUSR, show_rxbuf_max, store_rxbuf_max),
1724 __ATTR(rxbuf_cur, S_IRUGO, show_rxbuf_cur, NULL),
1727 static int xennet_sysfs_addif(struct net_device *netdev)
1732 for (i = 0; i < ARRAY_SIZE(xennet_attrs); i++) {
1733 err = device_create_file(&netdev->dev,
1742 device_remove_file(&netdev->dev, &xennet_attrs[i]);
1746 static void xennet_sysfs_delif(struct net_device *netdev)
1750 for (i = 0; i < ARRAY_SIZE(xennet_attrs); i++)
1751 device_remove_file(&netdev->dev, &xennet_attrs[i]);
1754 #endif /* CONFIG_SYSFS */
1756 static struct xenbus_device_id netfront_ids[] = {
1762 static int __devexit xennet_remove(struct xenbus_device *dev)
1764 struct netfront_info *info = dev->dev.driver_data;
1766 dev_dbg(&dev->dev, "%s\n", dev->nodename);
1768 unregister_netdev(info->netdev);
1770 xennet_disconnect_backend(info);
1772 del_timer_sync(&info->rx_refill_timer);
1774 xennet_sysfs_delif(info->netdev);
1776 free_netdev(info->netdev);
1781 static struct xenbus_driver netfront = {
1783 .owner = THIS_MODULE,
1784 .ids = netfront_ids,
1785 .probe = netfront_probe,
1786 .remove = __devexit_p(xennet_remove),
1787 .resume = netfront_resume,
1788 .otherend_changed = backend_changed,
1791 static int __init netif_init(void)
1793 if (!is_running_on_xen())
1796 if (is_initial_xendomain())
1799 printk(KERN_INFO "Initialising Xen virtual ethernet driver.\n");
1801 return xenbus_register_frontend(&netfront);
1803 module_init(netif_init);
1806 static void __exit netif_exit(void)
1808 if (is_initial_xendomain())
1811 return xenbus_unregister_driver(&netfront);
1813 module_exit(netif_exit);
1815 MODULE_DESCRIPTION("Xen virtual network device frontend");
1816 MODULE_LICENSE("GPL");