blob: 34ca4e58a43dfa54ac346518a1978662793b2e2a [file] [log] [blame]
Ian Campbellf942dc22011-03-15 00:06:18 +00001/*
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
Wei Liub3f980b2013-08-26 12:59:38 +010033#include <linux/kthread.h>
Ian Campbellf942dc22011-03-15 00:06:18 +000034#include <linux/ethtool.h>
35#include <linux/rtnetlink.h>
36#include <linux/if_vlan.h>
37
38#include <xen/events.h>
39#include <asm/xen/hypercall.h>
40
41#define XENVIF_QUEUE_LENGTH 32
Wei Liub3f980b2013-08-26 12:59:38 +010042#define XENVIF_NAPI_WEIGHT 64
Ian Campbellf942dc22011-03-15 00:06:18 +000043
44int xenvif_schedulable(struct xenvif *vif)
45{
46 return netif_running(vif->dev) && netif_carrier_ok(vif->dev);
47}
48
49static int xenvif_rx_schedulable(struct xenvif *vif)
50{
Wei Liu73764192013-08-26 12:59:39 +010051 return xenvif_schedulable(vif) && !xenvif_rx_ring_full(vif);
Ian Campbellf942dc22011-03-15 00:06:18 +000052}
53
Wei Liue1f00a692013-05-22 06:34:45 +000054static irqreturn_t xenvif_tx_interrupt(int irq, void *dev_id)
Ian Campbellf942dc22011-03-15 00:06:18 +000055{
56 struct xenvif *vif = dev_id;
57
Wei Liub3f980b2013-08-26 12:59:38 +010058 if (RING_HAS_UNCONSUMED_REQUESTS(&vif->tx))
59 napi_schedule(&vif->napi);
Ian Campbellf942dc22011-03-15 00:06:18 +000060
Wei Liue1f00a692013-05-22 06:34:45 +000061 return IRQ_HANDLED;
62}
63
Wei Liub3f980b2013-08-26 12:59:38 +010064static int xenvif_poll(struct napi_struct *napi, int budget)
65{
66 struct xenvif *vif = container_of(napi, struct xenvif, napi);
67 int work_done;
68
Wei Liu73764192013-08-26 12:59:39 +010069 work_done = xenvif_tx_action(vif, budget);
Wei Liub3f980b2013-08-26 12:59:38 +010070
71 if (work_done < budget) {
72 int more_to_do = 0;
73 unsigned long flags;
74
75 /* It is necessary to disable IRQ before calling
76 * RING_HAS_UNCONSUMED_REQUESTS. Otherwise we might
77 * lose event from the frontend.
78 *
79 * Consider:
80 * RING_HAS_UNCONSUMED_REQUESTS
81 * <frontend generates event to trigger napi_schedule>
82 * __napi_complete
83 *
84 * This handler is still in scheduled state so the
85 * event has no effect at all. After __napi_complete
86 * this handler is descheduled and cannot get
87 * scheduled again. We lose event in this case and the ring
88 * will be completely stalled.
89 */
90
91 local_irq_save(flags);
92
93 RING_FINAL_CHECK_FOR_REQUESTS(&vif->tx, more_to_do);
94 if (!more_to_do)
95 __napi_complete(napi);
96
97 local_irq_restore(flags);
98 }
99
100 return work_done;
101}
102
Wei Liue1f00a692013-05-22 06:34:45 +0000103static irqreturn_t xenvif_rx_interrupt(int irq, void *dev_id)
104{
105 struct xenvif *vif = dev_id;
106
Ian Campbellf942dc22011-03-15 00:06:18 +0000107 if (xenvif_rx_schedulable(vif))
108 netif_wake_queue(vif->dev);
109
110 return IRQ_HANDLED;
111}
112
Wei Liue1f00a692013-05-22 06:34:45 +0000113static irqreturn_t xenvif_interrupt(int irq, void *dev_id)
114{
115 xenvif_tx_interrupt(irq, dev_id);
116 xenvif_rx_interrupt(irq, dev_id);
117
118 return IRQ_HANDLED;
119}
120
Ian Campbellf942dc22011-03-15 00:06:18 +0000121static int xenvif_start_xmit(struct sk_buff *skb, struct net_device *dev)
122{
123 struct xenvif *vif = netdev_priv(dev);
124
125 BUG_ON(skb->dev != dev);
126
Wei Liub3f980b2013-08-26 12:59:38 +0100127 /* Drop the packet if vif is not ready */
128 if (vif->task == NULL)
Ian Campbellf942dc22011-03-15 00:06:18 +0000129 goto drop;
130
131 /* Drop the packet if the target domain has no receive buffers. */
132 if (!xenvif_rx_schedulable(vif))
133 goto drop;
134
135 /* Reserve ring slots for the worst-case number of fragments. */
Wei Liu73764192013-08-26 12:59:39 +0100136 vif->rx_req_cons_peek += xenvif_count_skb_slots(vif, skb);
Ian Campbellf942dc22011-03-15 00:06:18 +0000137
Wei Liu73764192013-08-26 12:59:39 +0100138 if (vif->can_queue && xenvif_must_stop_queue(vif))
Ian Campbellf942dc22011-03-15 00:06:18 +0000139 netif_stop_queue(dev);
140
Wei Liu73764192013-08-26 12:59:39 +0100141 xenvif_queue_tx_skb(vif, skb);
Ian Campbellf942dc22011-03-15 00:06:18 +0000142
143 return NETDEV_TX_OK;
144
145 drop:
146 vif->dev->stats.tx_dropped++;
147 dev_kfree_skb(skb);
148 return NETDEV_TX_OK;
149}
150
Ian Campbellf942dc22011-03-15 00:06:18 +0000151void xenvif_notify_tx_completion(struct xenvif *vif)
152{
153 if (netif_queue_stopped(vif->dev) && xenvif_rx_schedulable(vif))
154 netif_wake_queue(vif->dev);
155}
156
157static struct net_device_stats *xenvif_get_stats(struct net_device *dev)
158{
159 struct xenvif *vif = netdev_priv(dev);
160 return &vif->dev->stats;
161}
162
163static void xenvif_up(struct xenvif *vif)
164{
Wei Liub3f980b2013-08-26 12:59:38 +0100165 napi_enable(&vif->napi);
Wei Liue1f00a692013-05-22 06:34:45 +0000166 enable_irq(vif->tx_irq);
167 if (vif->tx_irq != vif->rx_irq)
168 enable_irq(vif->rx_irq);
Wei Liu73764192013-08-26 12:59:39 +0100169 xenvif_check_rx_xenvif(vif);
Ian Campbellf942dc22011-03-15 00:06:18 +0000170}
171
172static void xenvif_down(struct xenvif *vif)
173{
Wei Liub3f980b2013-08-26 12:59:38 +0100174 napi_disable(&vif->napi);
Wei Liue1f00a692013-05-22 06:34:45 +0000175 disable_irq(vif->tx_irq);
176 if (vif->tx_irq != vif->rx_irq)
177 disable_irq(vif->rx_irq);
David Vrabel3e55f8b2013-02-14 03:18:58 +0000178 del_timer_sync(&vif->credit_timeout);
Ian Campbellf942dc22011-03-15 00:06:18 +0000179}
180
181static int xenvif_open(struct net_device *dev)
182{
183 struct xenvif *vif = netdev_priv(dev);
184 if (netif_carrier_ok(dev))
185 xenvif_up(vif);
186 netif_start_queue(dev);
187 return 0;
188}
189
190static int xenvif_close(struct net_device *dev)
191{
192 struct xenvif *vif = netdev_priv(dev);
193 if (netif_carrier_ok(dev))
194 xenvif_down(vif);
195 netif_stop_queue(dev);
196 return 0;
197}
198
199static int xenvif_change_mtu(struct net_device *dev, int mtu)
200{
201 struct xenvif *vif = netdev_priv(dev);
202 int max = vif->can_sg ? 65535 - VLAN_ETH_HLEN : ETH_DATA_LEN;
203
204 if (mtu > max)
205 return -EINVAL;
206 dev->mtu = mtu;
207 return 0;
208}
209
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000210static netdev_features_t xenvif_fix_features(struct net_device *dev,
211 netdev_features_t features)
Ian Campbellf942dc22011-03-15 00:06:18 +0000212{
213 struct xenvif *vif = netdev_priv(dev);
Ian Campbellf942dc22011-03-15 00:06:18 +0000214
Michał Mirosław47103042011-04-19 03:35:06 +0000215 if (!vif->can_sg)
216 features &= ~NETIF_F_SG;
Paul Durrant82cada22013-10-16 17:50:32 +0100217 if (~(vif->gso_mask | vif->gso_prefix_mask) & GSO_BIT(TCPV4))
Michał Mirosław47103042011-04-19 03:35:06 +0000218 features &= ~NETIF_F_TSO;
Paul Durrant82cada22013-10-16 17:50:32 +0100219 if (~(vif->gso_mask | vif->gso_prefix_mask) & GSO_BIT(TCPV6))
220 features &= ~NETIF_F_TSO6;
Paul Durrant146c8a72013-10-16 17:50:28 +0100221 if (!vif->ip_csum)
Michał Mirosław47103042011-04-19 03:35:06 +0000222 features &= ~NETIF_F_IP_CSUM;
Paul Durrant146c8a72013-10-16 17:50:28 +0100223 if (!vif->ipv6_csum)
224 features &= ~NETIF_F_IPV6_CSUM;
Ian Campbellf942dc22011-03-15 00:06:18 +0000225
Michał Mirosław47103042011-04-19 03:35:06 +0000226 return features;
Ian Campbellf942dc22011-03-15 00:06:18 +0000227}
228
229static const struct xenvif_stat {
230 char name[ETH_GSTRING_LEN];
231 u16 offset;
232} xenvif_stats[] = {
233 {
234 "rx_gso_checksum_fixup",
235 offsetof(struct xenvif, rx_gso_checksum_fixup)
236 },
237};
238
239static int xenvif_get_sset_count(struct net_device *dev, int string_set)
240{
241 switch (string_set) {
242 case ETH_SS_STATS:
243 return ARRAY_SIZE(xenvif_stats);
244 default:
245 return -EINVAL;
246 }
247}
248
249static void xenvif_get_ethtool_stats(struct net_device *dev,
250 struct ethtool_stats *stats, u64 * data)
251{
252 void *vif = netdev_priv(dev);
253 int i;
254
255 for (i = 0; i < ARRAY_SIZE(xenvif_stats); i++)
256 data[i] = *(unsigned long *)(vif + xenvif_stats[i].offset);
257}
258
259static void xenvif_get_strings(struct net_device *dev, u32 stringset, u8 * data)
260{
261 int i;
262
263 switch (stringset) {
264 case ETH_SS_STATS:
265 for (i = 0; i < ARRAY_SIZE(xenvif_stats); i++)
266 memcpy(data + i * ETH_GSTRING_LEN,
267 xenvif_stats[i].name, ETH_GSTRING_LEN);
268 break;
269 }
270}
271
stephen hemminger813abbb2012-01-04 11:56:58 +0000272static const struct ethtool_ops xenvif_ethtool_ops = {
Ian Campbellf942dc22011-03-15 00:06:18 +0000273 .get_link = ethtool_op_get_link,
274
275 .get_sset_count = xenvif_get_sset_count,
276 .get_ethtool_stats = xenvif_get_ethtool_stats,
277 .get_strings = xenvif_get_strings,
278};
279
stephen hemminger813abbb2012-01-04 11:56:58 +0000280static const struct net_device_ops xenvif_netdev_ops = {
Ian Campbellf942dc22011-03-15 00:06:18 +0000281 .ndo_start_xmit = xenvif_start_xmit,
282 .ndo_get_stats = xenvif_get_stats,
283 .ndo_open = xenvif_open,
284 .ndo_stop = xenvif_close,
285 .ndo_change_mtu = xenvif_change_mtu,
Michał Mirosław47103042011-04-19 03:35:06 +0000286 .ndo_fix_features = xenvif_fix_features,
Matt Wilson4a633a62013-01-22 08:08:25 +0000287 .ndo_set_mac_address = eth_mac_addr,
288 .ndo_validate_addr = eth_validate_addr,
Ian Campbellf942dc22011-03-15 00:06:18 +0000289};
290
291struct xenvif *xenvif_alloc(struct device *parent, domid_t domid,
292 unsigned int handle)
293{
294 int err;
295 struct net_device *dev;
296 struct xenvif *vif;
297 char name[IFNAMSIZ] = {};
Wei Liub3f980b2013-08-26 12:59:38 +0100298 int i;
Ian Campbellf942dc22011-03-15 00:06:18 +0000299
300 snprintf(name, IFNAMSIZ - 1, "vif%u.%u", domid, handle);
301 dev = alloc_netdev(sizeof(struct xenvif), name, ether_setup);
302 if (dev == NULL) {
Wei Liub3f980b2013-08-26 12:59:38 +0100303 pr_warn("Could not allocate netdev for %s\n", name);
Ian Campbellf942dc22011-03-15 00:06:18 +0000304 return ERR_PTR(-ENOMEM);
305 }
306
307 SET_NETDEV_DEV(dev, parent);
308
309 vif = netdev_priv(dev);
Paul Durrantac3d5ac2013-12-23 09:27:17 +0000310
311 vif->grant_copy_op = vmalloc(sizeof(struct gnttab_copy) *
312 MAX_GRANT_COPY_OPS);
313 if (vif->grant_copy_op == NULL) {
314 pr_warn("Could not allocate grant copy space for %s\n", name);
315 free_netdev(dev);
316 return ERR_PTR(-ENOMEM);
317 }
318
Ian Campbellf942dc22011-03-15 00:06:18 +0000319 vif->domid = domid;
320 vif->handle = handle;
Ian Campbellf942dc22011-03-15 00:06:18 +0000321 vif->can_sg = 1;
Paul Durrant146c8a72013-10-16 17:50:28 +0100322 vif->ip_csum = 1;
Ian Campbellf942dc22011-03-15 00:06:18 +0000323 vif->dev = dev;
Ian Campbellf942dc22011-03-15 00:06:18 +0000324
325 vif->credit_bytes = vif->remaining_credit = ~0UL;
326 vif->credit_usec = 0UL;
327 init_timer(&vif->credit_timeout);
Wei Liu059dfa62013-10-28 12:07:57 +0000328 vif->credit_window_start = get_jiffies_64();
Ian Campbellf942dc22011-03-15 00:06:18 +0000329
330 dev->netdev_ops = &xenvif_netdev_ops;
Paul Durrant146c8a72013-10-16 17:50:28 +0100331 dev->hw_features = NETIF_F_SG |
332 NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
Paul Durrant82cada22013-10-16 17:50:32 +0100333 NETIF_F_TSO | NETIF_F_TSO6;
Paul Durrant7365bcf2013-10-16 17:50:30 +0100334 dev->features = dev->hw_features | NETIF_F_RXCSUM;
Ian Campbellf942dc22011-03-15 00:06:18 +0000335 SET_ETHTOOL_OPS(dev, &xenvif_ethtool_ops);
336
337 dev->tx_queue_len = XENVIF_QUEUE_LENGTH;
338
Wei Liub3f980b2013-08-26 12:59:38 +0100339 skb_queue_head_init(&vif->rx_queue);
340 skb_queue_head_init(&vif->tx_queue);
341
342 vif->pending_cons = 0;
343 vif->pending_prod = MAX_PENDING_REQS;
344 for (i = 0; i < MAX_PENDING_REQS; i++)
345 vif->pending_ring[i] = i;
346 for (i = 0; i < MAX_PENDING_REQS; i++)
347 vif->mmap_pages[i] = NULL;
348
Ian Campbellf942dc22011-03-15 00:06:18 +0000349 /*
350 * Initialise a dummy MAC address. We choose the numerically
351 * largest non-broadcast address to prevent the address getting
352 * stolen by an Ethernet bridge for STP purposes.
353 * (FE:FF:FF:FF:FF:FF)
354 */
355 memset(dev->dev_addr, 0xFF, ETH_ALEN);
356 dev->dev_addr[0] &= ~0x01;
357
Wei Liub3f980b2013-08-26 12:59:38 +0100358 netif_napi_add(dev, &vif->napi, xenvif_poll, XENVIF_NAPI_WEIGHT);
359
Ian Campbellf942dc22011-03-15 00:06:18 +0000360 netif_carrier_off(dev);
361
362 err = register_netdev(dev);
363 if (err) {
364 netdev_warn(dev, "Could not register device: err=%d\n", err);
365 free_netdev(dev);
366 return ERR_PTR(err);
367 }
368
369 netdev_dbg(dev, "Successfully created xenvif\n");
Paul Durrant279f4382013-09-17 17:46:08 +0100370
371 __module_get(THIS_MODULE);
372
Ian Campbellf942dc22011-03-15 00:06:18 +0000373 return vif;
374}
375
376int xenvif_connect(struct xenvif *vif, unsigned long tx_ring_ref,
Wei Liue1f00a692013-05-22 06:34:45 +0000377 unsigned long rx_ring_ref, unsigned int tx_evtchn,
378 unsigned int rx_evtchn)
Ian Campbellf942dc22011-03-15 00:06:18 +0000379{
Paul Durrant67fa3662013-12-03 14:06:25 +0000380 struct task_struct *task;
Ian Campbellf942dc22011-03-15 00:06:18 +0000381 int err = -ENOMEM;
382
Paul Durrant67fa3662013-12-03 14:06:25 +0000383 BUG_ON(vif->tx_irq);
384 BUG_ON(vif->task);
Ian Campbellf942dc22011-03-15 00:06:18 +0000385
Wei Liu73764192013-08-26 12:59:39 +0100386 err = xenvif_map_frontend_rings(vif, tx_ring_ref, rx_ring_ref);
Ian Campbellf942dc22011-03-15 00:06:18 +0000387 if (err < 0)
388 goto err;
389
Wei Liue1f00a692013-05-22 06:34:45 +0000390 if (tx_evtchn == rx_evtchn) {
391 /* feature-split-event-channels == 0 */
392 err = bind_interdomain_evtchn_to_irqhandler(
393 vif->domid, tx_evtchn, xenvif_interrupt, 0,
394 vif->dev->name, vif);
395 if (err < 0)
396 goto err_unmap;
397 vif->tx_irq = vif->rx_irq = err;
398 disable_irq(vif->tx_irq);
399 } else {
400 /* feature-split-event-channels == 1 */
401 snprintf(vif->tx_irq_name, sizeof(vif->tx_irq_name),
402 "%s-tx", vif->dev->name);
403 err = bind_interdomain_evtchn_to_irqhandler(
404 vif->domid, tx_evtchn, xenvif_tx_interrupt, 0,
405 vif->tx_irq_name, vif);
406 if (err < 0)
407 goto err_unmap;
408 vif->tx_irq = err;
409 disable_irq(vif->tx_irq);
410
411 snprintf(vif->rx_irq_name, sizeof(vif->rx_irq_name),
412 "%s-rx", vif->dev->name);
413 err = bind_interdomain_evtchn_to_irqhandler(
414 vif->domid, rx_evtchn, xenvif_rx_interrupt, 0,
415 vif->rx_irq_name, vif);
416 if (err < 0)
417 goto err_tx_unbind;
418 vif->rx_irq = err;
419 disable_irq(vif->rx_irq);
420 }
Ian Campbellf942dc22011-03-15 00:06:18 +0000421
Wei Liub3f980b2013-08-26 12:59:38 +0100422 init_waitqueue_head(&vif->wq);
Paul Durrant67fa3662013-12-03 14:06:25 +0000423 task = kthread_create(xenvif_kthread,
424 (void *)vif, "%s", vif->dev->name);
425 if (IS_ERR(task)) {
Wei Liub3f980b2013-08-26 12:59:38 +0100426 pr_warn("Could not allocate kthread for %s\n", vif->dev->name);
Paul Durrant67fa3662013-12-03 14:06:25 +0000427 err = PTR_ERR(task);
Wei Liub3f980b2013-08-26 12:59:38 +0100428 goto err_rx_unbind;
429 }
Ian Campbellf942dc22011-03-15 00:06:18 +0000430
Paul Durrant67fa3662013-12-03 14:06:25 +0000431 vif->task = task;
432
Ian Campbellf942dc22011-03-15 00:06:18 +0000433 rtnl_lock();
Michał Mirosław47103042011-04-19 03:35:06 +0000434 if (!vif->can_sg && vif->dev->mtu > ETH_DATA_LEN)
435 dev_set_mtu(vif->dev, ETH_DATA_LEN);
436 netdev_update_features(vif->dev);
437 netif_carrier_on(vif->dev);
David Vrabeld0e5d832011-09-30 06:37:51 +0000438 if (netif_running(vif->dev))
439 xenvif_up(vif);
Ian Campbellf942dc22011-03-15 00:06:18 +0000440 rtnl_unlock();
441
Wei Liub3f980b2013-08-26 12:59:38 +0100442 wake_up_process(vif->task);
443
Ian Campbellf942dc22011-03-15 00:06:18 +0000444 return 0;
Wei Liub3f980b2013-08-26 12:59:38 +0100445
446err_rx_unbind:
447 unbind_from_irqhandler(vif->rx_irq, vif);
448 vif->rx_irq = 0;
Wei Liue1f00a692013-05-22 06:34:45 +0000449err_tx_unbind:
450 unbind_from_irqhandler(vif->tx_irq, vif);
451 vif->tx_irq = 0;
Ian Campbellf942dc22011-03-15 00:06:18 +0000452err_unmap:
Wei Liu73764192013-08-26 12:59:39 +0100453 xenvif_unmap_frontend_rings(vif);
Ian Campbellf942dc22011-03-15 00:06:18 +0000454err:
Wei Liub103f352013-05-16 23:26:11 +0000455 module_put(THIS_MODULE);
Ian Campbellf942dc22011-03-15 00:06:18 +0000456 return err;
457}
458
Ian Campbell488562862013-02-06 23:41:35 +0000459void xenvif_carrier_off(struct xenvif *vif)
Ian Campbellf942dc22011-03-15 00:06:18 +0000460{
461 struct net_device *dev = vif->dev;
Ian Campbell488562862013-02-06 23:41:35 +0000462
463 rtnl_lock();
464 netif_carrier_off(dev); /* discard queued packets */
465 if (netif_running(dev))
466 xenvif_down(vif);
467 rtnl_unlock();
Ian Campbell488562862013-02-06 23:41:35 +0000468}
469
470void xenvif_disconnect(struct xenvif *vif)
471{
472 if (netif_carrier_ok(vif->dev))
473 xenvif_carrier_off(vif);
Ian Campbellf942dc22011-03-15 00:06:18 +0000474
Paul Durrant67fa3662013-12-03 14:06:25 +0000475 if (vif->task) {
David Vrabeldb739ef2013-11-21 15:26:09 +0000476 kthread_stop(vif->task);
Paul Durrant67fa3662013-12-03 14:06:25 +0000477 vif->task = NULL;
478 }
David Vrabeldb739ef2013-11-21 15:26:09 +0000479
Wei Liue1f00a692013-05-22 06:34:45 +0000480 if (vif->tx_irq) {
481 if (vif->tx_irq == vif->rx_irq)
482 unbind_from_irqhandler(vif->tx_irq, vif);
483 else {
484 unbind_from_irqhandler(vif->tx_irq, vif);
485 unbind_from_irqhandler(vif->rx_irq, vif);
486 }
Paul Durrant279f4382013-09-17 17:46:08 +0100487 vif->tx_irq = 0;
Wei Liub103f352013-05-16 23:26:11 +0000488 }
Ian Campbellf942dc22011-03-15 00:06:18 +0000489
Paul Durrant279f4382013-09-17 17:46:08 +0100490 xenvif_unmap_frontend_rings(vif);
491}
492
493void xenvif_free(struct xenvif *vif)
494{
Wei Liub3f980b2013-08-26 12:59:38 +0100495 netif_napi_del(&vif->napi);
496
Ian Campbellf942dc22011-03-15 00:06:18 +0000497 unregister_netdev(vif->dev);
498
Paul Durrantac3d5ac2013-12-23 09:27:17 +0000499 vfree(vif->grant_copy_op);
Ian Campbellf942dc22011-03-15 00:06:18 +0000500 free_netdev(vif->dev);
Wei Liub103f352013-05-16 23:26:11 +0000501
Paul Durrant279f4382013-09-17 17:46:08 +0100502 module_put(THIS_MODULE);
Ian Campbellf942dc22011-03-15 00:06:18 +0000503}