xen-netback: make feature-rx-notify mandatory
[cascardo/linux.git] / drivers / net / xen-netback / interface.c
1 /*
2  * Network-device interface management.
3  *
4  * Copyright (c) 2004-2005, Keir Fraser
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License version 2
8  * as published by the Free Software Foundation; or, when distributed
9  * separately from the Linux kernel or incorporated into other
10  * software packages, subject to the following license:
11  *
12  * Permission is hereby granted, free of charge, to any person obtaining a copy
13  * of this source file (the "Software"), to deal in the Software without
14  * restriction, including without limitation the rights to use, copy, modify,
15  * merge, publish, distribute, sublicense, and/or sell copies of the Software,
16  * and to permit persons to whom the Software is furnished to do so, subject to
17  * the following conditions:
18  *
19  * The above copyright notice and this permission notice shall be included in
20  * all copies or substantial portions of the Software.
21  *
22  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
27  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
28  * IN THE SOFTWARE.
29  */
30
31 #include "common.h"
32
33 #include <linux/kthread.h>
34 #include <linux/ethtool.h>
35 #include <linux/rtnetlink.h>
36 #include <linux/if_vlan.h>
37 #include <linux/vmalloc.h>
38
39 #include <xen/events.h>
40 #include <asm/xen/hypercall.h>
41 #include <xen/balloon.h>
42
43 #define XENVIF_QUEUE_LENGTH 32
44 #define XENVIF_NAPI_WEIGHT  64
45
46 /* This function is used to set SKBTX_DEV_ZEROCOPY as well as
47  * increasing the inflight counter. We need to increase the inflight
48  * counter because core driver calls into xenvif_zerocopy_callback
49  * which calls xenvif_skb_zerocopy_complete.
50  */
51 void xenvif_skb_zerocopy_prepare(struct xenvif_queue *queue,
52                                  struct sk_buff *skb)
53 {
54         skb_shinfo(skb)->tx_flags |= SKBTX_DEV_ZEROCOPY;
55         atomic_inc(&queue->inflight_packets);
56 }
57
58 void xenvif_skb_zerocopy_complete(struct xenvif_queue *queue)
59 {
60         atomic_dec(&queue->inflight_packets);
61 }
62
63 int xenvif_schedulable(struct xenvif *vif)
64 {
65         return netif_running(vif->dev) &&
66                 test_bit(VIF_STATUS_CONNECTED, &vif->status);
67 }
68
69 static irqreturn_t xenvif_tx_interrupt(int irq, void *dev_id)
70 {
71         struct xenvif_queue *queue = dev_id;
72
73         if (RING_HAS_UNCONSUMED_REQUESTS(&queue->tx))
74                 napi_schedule(&queue->napi);
75
76         return IRQ_HANDLED;
77 }
78
79 int xenvif_poll(struct napi_struct *napi, int budget)
80 {
81         struct xenvif_queue *queue =
82                 container_of(napi, struct xenvif_queue, napi);
83         int work_done;
84
85         /* This vif is rogue, we pretend we've there is nothing to do
86          * for this vif to deschedule it from NAPI. But this interface
87          * will be turned off in thread context later.
88          */
89         if (unlikely(queue->vif->disabled)) {
90                 napi_complete(napi);
91                 return 0;
92         }
93
94         work_done = xenvif_tx_action(queue, budget);
95
96         if (work_done < budget) {
97                 napi_complete(napi);
98                 xenvif_napi_schedule_or_enable_events(queue);
99         }
100
101         return work_done;
102 }
103
104 static irqreturn_t xenvif_rx_interrupt(int irq, void *dev_id)
105 {
106         struct xenvif_queue *queue = dev_id;
107         struct netdev_queue *net_queue =
108                 netdev_get_tx_queue(queue->vif->dev, queue->id);
109
110         /* QUEUE_STATUS_RX_PURGE_EVENT is only set if either QDisc was off OR
111          * the carrier went down and this queue was previously blocked
112          */
113         if (unlikely(netif_tx_queue_stopped(net_queue) ||
114                      (!netif_carrier_ok(queue->vif->dev) &&
115                       test_bit(QUEUE_STATUS_RX_STALLED, &queue->status))))
116                 set_bit(QUEUE_STATUS_RX_PURGE_EVENT, &queue->status);
117         xenvif_kick_thread(queue);
118
119         return IRQ_HANDLED;
120 }
121
122 irqreturn_t xenvif_interrupt(int irq, void *dev_id)
123 {
124         xenvif_tx_interrupt(irq, dev_id);
125         xenvif_rx_interrupt(irq, dev_id);
126
127         return IRQ_HANDLED;
128 }
129
130 int xenvif_queue_stopped(struct xenvif_queue *queue)
131 {
132         struct net_device *dev = queue->vif->dev;
133         unsigned int id = queue->id;
134         return netif_tx_queue_stopped(netdev_get_tx_queue(dev, id));
135 }
136
137 void xenvif_wake_queue(struct xenvif_queue *queue)
138 {
139         struct net_device *dev = queue->vif->dev;
140         unsigned int id = queue->id;
141         netif_tx_wake_queue(netdev_get_tx_queue(dev, id));
142 }
143
144 /* Callback to wake the queue's thread and turn the carrier off on timeout */
145 static void xenvif_rx_stalled(unsigned long data)
146 {
147         struct xenvif_queue *queue = (struct xenvif_queue *)data;
148
149         if (xenvif_queue_stopped(queue)) {
150                 set_bit(QUEUE_STATUS_RX_PURGE_EVENT, &queue->status);
151                 xenvif_kick_thread(queue);
152         }
153 }
154
155 static int xenvif_start_xmit(struct sk_buff *skb, struct net_device *dev)
156 {
157         struct xenvif *vif = netdev_priv(dev);
158         struct xenvif_queue *queue = NULL;
159         unsigned int num_queues = vif->num_queues;
160         u16 index;
161         int min_slots_needed;
162
163         BUG_ON(skb->dev != dev);
164
165         /* Drop the packet if queues are not set up */
166         if (num_queues < 1)
167                 goto drop;
168
169         /* Obtain the queue to be used to transmit this packet */
170         index = skb_get_queue_mapping(skb);
171         if (index >= num_queues) {
172                 pr_warn_ratelimited("Invalid queue %hu for packet on interface %s\n.",
173                                     index, vif->dev->name);
174                 index %= num_queues;
175         }
176         queue = &vif->queues[index];
177
178         /* Drop the packet if queue is not ready */
179         if (queue->task == NULL ||
180             queue->dealloc_task == NULL ||
181             !xenvif_schedulable(vif))
182                 goto drop;
183
184         /* At best we'll need one slot for the header and one for each
185          * frag.
186          */
187         min_slots_needed = 1 + skb_shinfo(skb)->nr_frags;
188
189         /* If the skb is GSO then we'll also need an extra slot for the
190          * metadata.
191          */
192         if (skb_is_gso(skb))
193                 min_slots_needed++;
194
195         /* If the skb can't possibly fit in the remaining slots
196          * then turn off the queue to give the ring a chance to
197          * drain.
198          */
199         if (!xenvif_rx_ring_slots_available(queue, min_slots_needed)) {
200                 queue->rx_stalled.function = xenvif_rx_stalled;
201                 queue->rx_stalled.data = (unsigned long)queue;
202                 netif_tx_stop_queue(netdev_get_tx_queue(dev, queue->id));
203                 mod_timer(&queue->rx_stalled,
204                           jiffies + rx_drain_timeout_jiffies);
205         }
206
207         skb_queue_tail(&queue->rx_queue, skb);
208         xenvif_kick_thread(queue);
209
210         return NETDEV_TX_OK;
211
212  drop:
213         vif->dev->stats.tx_dropped++;
214         dev_kfree_skb(skb);
215         return NETDEV_TX_OK;
216 }
217
218 static struct net_device_stats *xenvif_get_stats(struct net_device *dev)
219 {
220         struct xenvif *vif = netdev_priv(dev);
221         struct xenvif_queue *queue = NULL;
222         unsigned int num_queues = vif->num_queues;
223         unsigned long rx_bytes = 0;
224         unsigned long rx_packets = 0;
225         unsigned long tx_bytes = 0;
226         unsigned long tx_packets = 0;
227         unsigned int index;
228
229         if (vif->queues == NULL)
230                 goto out;
231
232         /* Aggregate tx and rx stats from each queue */
233         for (index = 0; index < num_queues; ++index) {
234                 queue = &vif->queues[index];
235                 rx_bytes += queue->stats.rx_bytes;
236                 rx_packets += queue->stats.rx_packets;
237                 tx_bytes += queue->stats.tx_bytes;
238                 tx_packets += queue->stats.tx_packets;
239         }
240
241 out:
242         vif->dev->stats.rx_bytes = rx_bytes;
243         vif->dev->stats.rx_packets = rx_packets;
244         vif->dev->stats.tx_bytes = tx_bytes;
245         vif->dev->stats.tx_packets = tx_packets;
246
247         return &vif->dev->stats;
248 }
249
250 static void xenvif_up(struct xenvif *vif)
251 {
252         struct xenvif_queue *queue = NULL;
253         unsigned int num_queues = vif->num_queues;
254         unsigned int queue_index;
255
256         for (queue_index = 0; queue_index < num_queues; ++queue_index) {
257                 queue = &vif->queues[queue_index];
258                 napi_enable(&queue->napi);
259                 enable_irq(queue->tx_irq);
260                 if (queue->tx_irq != queue->rx_irq)
261                         enable_irq(queue->rx_irq);
262                 xenvif_napi_schedule_or_enable_events(queue);
263         }
264 }
265
266 static void xenvif_down(struct xenvif *vif)
267 {
268         struct xenvif_queue *queue = NULL;
269         unsigned int num_queues = vif->num_queues;
270         unsigned int queue_index;
271
272         for (queue_index = 0; queue_index < num_queues; ++queue_index) {
273                 queue = &vif->queues[queue_index];
274                 napi_disable(&queue->napi);
275                 disable_irq(queue->tx_irq);
276                 if (queue->tx_irq != queue->rx_irq)
277                         disable_irq(queue->rx_irq);
278                 del_timer_sync(&queue->credit_timeout);
279         }
280 }
281
282 static int xenvif_open(struct net_device *dev)
283 {
284         struct xenvif *vif = netdev_priv(dev);
285         if (test_bit(VIF_STATUS_CONNECTED, &vif->status))
286                 xenvif_up(vif);
287         netif_tx_start_all_queues(dev);
288         return 0;
289 }
290
291 static int xenvif_close(struct net_device *dev)
292 {
293         struct xenvif *vif = netdev_priv(dev);
294         if (test_bit(VIF_STATUS_CONNECTED, &vif->status))
295                 xenvif_down(vif);
296         netif_tx_stop_all_queues(dev);
297         return 0;
298 }
299
300 static int xenvif_change_mtu(struct net_device *dev, int mtu)
301 {
302         struct xenvif *vif = netdev_priv(dev);
303         int max = vif->can_sg ? 65535 - VLAN_ETH_HLEN : ETH_DATA_LEN;
304
305         if (mtu > max)
306                 return -EINVAL;
307         dev->mtu = mtu;
308         return 0;
309 }
310
311 static netdev_features_t xenvif_fix_features(struct net_device *dev,
312         netdev_features_t features)
313 {
314         struct xenvif *vif = netdev_priv(dev);
315
316         if (!vif->can_sg)
317                 features &= ~NETIF_F_SG;
318         if (~(vif->gso_mask | vif->gso_prefix_mask) & GSO_BIT(TCPV4))
319                 features &= ~NETIF_F_TSO;
320         if (~(vif->gso_mask | vif->gso_prefix_mask) & GSO_BIT(TCPV6))
321                 features &= ~NETIF_F_TSO6;
322         if (!vif->ip_csum)
323                 features &= ~NETIF_F_IP_CSUM;
324         if (!vif->ipv6_csum)
325                 features &= ~NETIF_F_IPV6_CSUM;
326
327         return features;
328 }
329
330 static const struct xenvif_stat {
331         char name[ETH_GSTRING_LEN];
332         u16 offset;
333 } xenvif_stats[] = {
334         {
335                 "rx_gso_checksum_fixup",
336                 offsetof(struct xenvif_stats, rx_gso_checksum_fixup)
337         },
338         /* If (sent != success + fail), there are probably packets never
339          * freed up properly!
340          */
341         {
342                 "tx_zerocopy_sent",
343                 offsetof(struct xenvif_stats, tx_zerocopy_sent),
344         },
345         {
346                 "tx_zerocopy_success",
347                 offsetof(struct xenvif_stats, tx_zerocopy_success),
348         },
349         {
350                 "tx_zerocopy_fail",
351                 offsetof(struct xenvif_stats, tx_zerocopy_fail)
352         },
353         /* Number of packets exceeding MAX_SKB_FRAG slots. You should use
354          * a guest with the same MAX_SKB_FRAG
355          */
356         {
357                 "tx_frag_overflow",
358                 offsetof(struct xenvif_stats, tx_frag_overflow)
359         },
360 };
361
362 static int xenvif_get_sset_count(struct net_device *dev, int string_set)
363 {
364         switch (string_set) {
365         case ETH_SS_STATS:
366                 return ARRAY_SIZE(xenvif_stats);
367         default:
368                 return -EINVAL;
369         }
370 }
371
372 static void xenvif_get_ethtool_stats(struct net_device *dev,
373                                      struct ethtool_stats *stats, u64 * data)
374 {
375         struct xenvif *vif = netdev_priv(dev);
376         unsigned int num_queues = vif->num_queues;
377         int i;
378         unsigned int queue_index;
379         struct xenvif_stats *vif_stats;
380
381         for (i = 0; i < ARRAY_SIZE(xenvif_stats); i++) {
382                 unsigned long accum = 0;
383                 for (queue_index = 0; queue_index < num_queues; ++queue_index) {
384                         vif_stats = &vif->queues[queue_index].stats;
385                         accum += *(unsigned long *)(vif_stats + xenvif_stats[i].offset);
386                 }
387                 data[i] = accum;
388         }
389 }
390
391 static void xenvif_get_strings(struct net_device *dev, u32 stringset, u8 * data)
392 {
393         int i;
394
395         switch (stringset) {
396         case ETH_SS_STATS:
397                 for (i = 0; i < ARRAY_SIZE(xenvif_stats); i++)
398                         memcpy(data + i * ETH_GSTRING_LEN,
399                                xenvif_stats[i].name, ETH_GSTRING_LEN);
400                 break;
401         }
402 }
403
404 static const struct ethtool_ops xenvif_ethtool_ops = {
405         .get_link       = ethtool_op_get_link,
406
407         .get_sset_count = xenvif_get_sset_count,
408         .get_ethtool_stats = xenvif_get_ethtool_stats,
409         .get_strings = xenvif_get_strings,
410 };
411
412 static const struct net_device_ops xenvif_netdev_ops = {
413         .ndo_start_xmit = xenvif_start_xmit,
414         .ndo_get_stats  = xenvif_get_stats,
415         .ndo_open       = xenvif_open,
416         .ndo_stop       = xenvif_close,
417         .ndo_change_mtu = xenvif_change_mtu,
418         .ndo_fix_features = xenvif_fix_features,
419         .ndo_set_mac_address = eth_mac_addr,
420         .ndo_validate_addr   = eth_validate_addr,
421 };
422
423 struct xenvif *xenvif_alloc(struct device *parent, domid_t domid,
424                             unsigned int handle)
425 {
426         int err;
427         struct net_device *dev;
428         struct xenvif *vif;
429         char name[IFNAMSIZ] = {};
430
431         snprintf(name, IFNAMSIZ - 1, "vif%u.%u", domid, handle);
432         /* Allocate a netdev with the max. supported number of queues.
433          * When the guest selects the desired number, it will be updated
434          * via netif_set_real_num_*_queues().
435          */
436         dev = alloc_netdev_mq(sizeof(struct xenvif), name, NET_NAME_UNKNOWN,
437                               ether_setup, xenvif_max_queues);
438         if (dev == NULL) {
439                 pr_warn("Could not allocate netdev for %s\n", name);
440                 return ERR_PTR(-ENOMEM);
441         }
442
443         SET_NETDEV_DEV(dev, parent);
444
445         vif = netdev_priv(dev);
446
447         vif->domid  = domid;
448         vif->handle = handle;
449         vif->can_sg = 1;
450         vif->ip_csum = 1;
451         vif->dev = dev;
452         vif->disabled = false;
453
454         /* Start out with no queues. */
455         vif->queues = NULL;
456         vif->num_queues = 0;
457
458         dev->netdev_ops = &xenvif_netdev_ops;
459         dev->hw_features = NETIF_F_SG |
460                 NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
461                 NETIF_F_TSO | NETIF_F_TSO6;
462         dev->features = dev->hw_features | NETIF_F_RXCSUM;
463         dev->ethtool_ops = &xenvif_ethtool_ops;
464
465         dev->tx_queue_len = XENVIF_QUEUE_LENGTH;
466
467         /*
468          * Initialise a dummy MAC address. We choose the numerically
469          * largest non-broadcast address to prevent the address getting
470          * stolen by an Ethernet bridge for STP purposes.
471          * (FE:FF:FF:FF:FF:FF)
472          */
473         memset(dev->dev_addr, 0xFF, ETH_ALEN);
474         dev->dev_addr[0] &= ~0x01;
475
476         netif_carrier_off(dev);
477
478         err = register_netdev(dev);
479         if (err) {
480                 netdev_warn(dev, "Could not register device: err=%d\n", err);
481                 free_netdev(dev);
482                 return ERR_PTR(err);
483         }
484
485         netdev_dbg(dev, "Successfully created xenvif\n");
486
487         __module_get(THIS_MODULE);
488
489         return vif;
490 }
491
492 int xenvif_init_queue(struct xenvif_queue *queue)
493 {
494         int err, i;
495
496         queue->credit_bytes = queue->remaining_credit = ~0UL;
497         queue->credit_usec  = 0UL;
498         init_timer(&queue->credit_timeout);
499         queue->credit_window_start = get_jiffies_64();
500
501         skb_queue_head_init(&queue->rx_queue);
502         skb_queue_head_init(&queue->tx_queue);
503
504         queue->pending_cons = 0;
505         queue->pending_prod = MAX_PENDING_REQS;
506         for (i = 0; i < MAX_PENDING_REQS; ++i)
507                 queue->pending_ring[i] = i;
508
509         spin_lock_init(&queue->callback_lock);
510         spin_lock_init(&queue->response_lock);
511
512         /* If ballooning is disabled, this will consume real memory, so you
513          * better enable it. The long term solution would be to use just a
514          * bunch of valid page descriptors, without dependency on ballooning
515          */
516         err = alloc_xenballooned_pages(MAX_PENDING_REQS,
517                                        queue->mmap_pages,
518                                        false);
519         if (err) {
520                 netdev_err(queue->vif->dev, "Could not reserve mmap_pages\n");
521                 return -ENOMEM;
522         }
523
524         for (i = 0; i < MAX_PENDING_REQS; i++) {
525                 queue->pending_tx_info[i].callback_struct = (struct ubuf_info)
526                         { .callback = xenvif_zerocopy_callback,
527                           .ctx = NULL,
528                           .desc = i };
529                 queue->grant_tx_handle[i] = NETBACK_INVALID_HANDLE;
530         }
531
532         init_timer(&queue->rx_stalled);
533
534         return 0;
535 }
536
537 void xenvif_carrier_on(struct xenvif *vif)
538 {
539         rtnl_lock();
540         if (!vif->can_sg && vif->dev->mtu > ETH_DATA_LEN)
541                 dev_set_mtu(vif->dev, ETH_DATA_LEN);
542         netdev_update_features(vif->dev);
543         set_bit(VIF_STATUS_CONNECTED, &vif->status);
544         netif_carrier_on(vif->dev);
545         if (netif_running(vif->dev))
546                 xenvif_up(vif);
547         rtnl_unlock();
548 }
549
550 int xenvif_connect(struct xenvif_queue *queue, unsigned long tx_ring_ref,
551                    unsigned long rx_ring_ref, unsigned int tx_evtchn,
552                    unsigned int rx_evtchn)
553 {
554         struct task_struct *task;
555         int err = -ENOMEM;
556
557         BUG_ON(queue->tx_irq);
558         BUG_ON(queue->task);
559         BUG_ON(queue->dealloc_task);
560
561         err = xenvif_map_frontend_rings(queue, tx_ring_ref, rx_ring_ref);
562         if (err < 0)
563                 goto err;
564
565         init_waitqueue_head(&queue->wq);
566         init_waitqueue_head(&queue->dealloc_wq);
567         atomic_set(&queue->inflight_packets, 0);
568
569         netif_napi_add(queue->vif->dev, &queue->napi, xenvif_poll,
570                         XENVIF_NAPI_WEIGHT);
571
572         if (tx_evtchn == rx_evtchn) {
573                 /* feature-split-event-channels == 0 */
574                 err = bind_interdomain_evtchn_to_irqhandler(
575                         queue->vif->domid, tx_evtchn, xenvif_interrupt, 0,
576                         queue->name, queue);
577                 if (err < 0)
578                         goto err_unmap;
579                 queue->tx_irq = queue->rx_irq = err;
580                 disable_irq(queue->tx_irq);
581         } else {
582                 /* feature-split-event-channels == 1 */
583                 snprintf(queue->tx_irq_name, sizeof(queue->tx_irq_name),
584                          "%s-tx", queue->name);
585                 err = bind_interdomain_evtchn_to_irqhandler(
586                         queue->vif->domid, tx_evtchn, xenvif_tx_interrupt, 0,
587                         queue->tx_irq_name, queue);
588                 if (err < 0)
589                         goto err_unmap;
590                 queue->tx_irq = err;
591                 disable_irq(queue->tx_irq);
592
593                 snprintf(queue->rx_irq_name, sizeof(queue->rx_irq_name),
594                          "%s-rx", queue->name);
595                 err = bind_interdomain_evtchn_to_irqhandler(
596                         queue->vif->domid, rx_evtchn, xenvif_rx_interrupt, 0,
597                         queue->rx_irq_name, queue);
598                 if (err < 0)
599                         goto err_tx_unbind;
600                 queue->rx_irq = err;
601                 disable_irq(queue->rx_irq);
602         }
603
604         task = kthread_create(xenvif_kthread_guest_rx,
605                               (void *)queue, "%s-guest-rx", queue->name);
606         if (IS_ERR(task)) {
607                 pr_warn("Could not allocate kthread for %s\n", queue->name);
608                 err = PTR_ERR(task);
609                 goto err_rx_unbind;
610         }
611         queue->task = task;
612
613         task = kthread_create(xenvif_dealloc_kthread,
614                               (void *)queue, "%s-dealloc", queue->name);
615         if (IS_ERR(task)) {
616                 pr_warn("Could not allocate kthread for %s\n", queue->name);
617                 err = PTR_ERR(task);
618                 goto err_rx_unbind;
619         }
620         queue->dealloc_task = task;
621
622         wake_up_process(queue->task);
623         wake_up_process(queue->dealloc_task);
624
625         return 0;
626
627 err_rx_unbind:
628         unbind_from_irqhandler(queue->rx_irq, queue);
629         queue->rx_irq = 0;
630 err_tx_unbind:
631         unbind_from_irqhandler(queue->tx_irq, queue);
632         queue->tx_irq = 0;
633 err_unmap:
634         xenvif_unmap_frontend_rings(queue);
635 err:
636         module_put(THIS_MODULE);
637         return err;
638 }
639
640 void xenvif_carrier_off(struct xenvif *vif)
641 {
642         struct net_device *dev = vif->dev;
643
644         rtnl_lock();
645         if (test_and_clear_bit(VIF_STATUS_CONNECTED, &vif->status)) {
646                 netif_carrier_off(dev); /* discard queued packets */
647                 if (netif_running(dev))
648                         xenvif_down(vif);
649         }
650         rtnl_unlock();
651 }
652
653 void xenvif_disconnect(struct xenvif *vif)
654 {
655         struct xenvif_queue *queue = NULL;
656         unsigned int num_queues = vif->num_queues;
657         unsigned int queue_index;
658
659         xenvif_carrier_off(vif);
660
661         for (queue_index = 0; queue_index < num_queues; ++queue_index) {
662                 queue = &vif->queues[queue_index];
663
664                 netif_napi_del(&queue->napi);
665
666                 if (queue->task) {
667                         del_timer_sync(&queue->rx_stalled);
668                         kthread_stop(queue->task);
669                         queue->task = NULL;
670                 }
671
672                 if (queue->dealloc_task) {
673                         kthread_stop(queue->dealloc_task);
674                         queue->dealloc_task = NULL;
675                 }
676
677                 if (queue->tx_irq) {
678                         if (queue->tx_irq == queue->rx_irq)
679                                 unbind_from_irqhandler(queue->tx_irq, queue);
680                         else {
681                                 unbind_from_irqhandler(queue->tx_irq, queue);
682                                 unbind_from_irqhandler(queue->rx_irq, queue);
683                         }
684                         queue->tx_irq = 0;
685                 }
686
687                 xenvif_unmap_frontend_rings(queue);
688         }
689 }
690
691 /* Reverse the relevant parts of xenvif_init_queue().
692  * Used for queue teardown from xenvif_free(), and on the
693  * error handling paths in xenbus.c:connect().
694  */
695 void xenvif_deinit_queue(struct xenvif_queue *queue)
696 {
697         free_xenballooned_pages(MAX_PENDING_REQS, queue->mmap_pages);
698 }
699
700 void xenvif_free(struct xenvif *vif)
701 {
702         struct xenvif_queue *queue = NULL;
703         unsigned int num_queues = vif->num_queues;
704         unsigned int queue_index;
705
706         unregister_netdev(vif->dev);
707
708         for (queue_index = 0; queue_index < num_queues; ++queue_index) {
709                 queue = &vif->queues[queue_index];
710                 xenvif_deinit_queue(queue);
711         }
712
713         vfree(vif->queues);
714         vif->queues = NULL;
715         vif->num_queues = 0;
716
717         free_netdev(vif->dev);
718
719         module_put(THIS_MODULE);
720 }