aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/xen-netfront.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/xen-netfront.c')
-rw-r--r--drivers/net/xen-netfront.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/drivers/net/xen-netfront.c b/drivers/net/xen-netfront.c
index b50fedcef8ac..630fb8664768 100644
--- a/drivers/net/xen-netfront.c
+++ b/drivers/net/xen-netfront.c
@@ -135,7 +135,7 @@ static void skb_entry_set_link(union skb_entry *list, unsigned short id)
135static int skb_entry_is_link(const union skb_entry *list) 135static int skb_entry_is_link(const union skb_entry *list)
136{ 136{
137 BUILD_BUG_ON(sizeof(list->skb) != sizeof(list->link)); 137 BUILD_BUG_ON(sizeof(list->skb) != sizeof(list->link));
138 return ((unsigned long)list->skb < PAGE_OFFSET); 138 return (unsigned long)list->skb < PAGE_OFFSET;
139} 139}
140 140
141/* 141/*
@@ -203,8 +203,8 @@ static void rx_refill_timeout(unsigned long data)
203 203
204static int netfront_tx_slot_available(struct netfront_info *np) 204static int netfront_tx_slot_available(struct netfront_info *np)
205{ 205{
206 return ((np->tx.req_prod_pvt - np->tx.rsp_cons) < 206 return (np->tx.req_prod_pvt - np->tx.rsp_cons) <
207 (TX_MAX_TARGET - MAX_SKB_FRAGS - 2)); 207 (TX_MAX_TARGET - MAX_SKB_FRAGS - 2);
208} 208}
209 209
210static void xennet_maybe_wake_tx(struct net_device *dev) 210static void xennet_maybe_wake_tx(struct net_device *dev)
@@ -1395,7 +1395,7 @@ static int setup_netfront(struct xenbus_device *dev, struct netfront_info *info)
1395} 1395}
1396 1396
1397/* Common code used when first setting up, and when resuming. */ 1397/* Common code used when first setting up, and when resuming. */
1398static int talk_to_backend(struct xenbus_device *dev, 1398static int talk_to_netback(struct xenbus_device *dev,
1399 struct netfront_info *info) 1399 struct netfront_info *info)
1400{ 1400{
1401 const char *message; 1401 const char *message;
@@ -1545,7 +1545,7 @@ static int xennet_connect(struct net_device *dev)
1545 return -ENODEV; 1545 return -ENODEV;
1546 } 1546 }
1547 1547
1548 err = talk_to_backend(np->xbdev, np); 1548 err = talk_to_netback(np->xbdev, np);
1549 if (err) 1549 if (err)
1550 return err; 1550 return err;
1551 1551
@@ -1599,7 +1599,7 @@ static int xennet_connect(struct net_device *dev)
1599/** 1599/**
1600 * Callback received when the backend's state changes. 1600 * Callback received when the backend's state changes.
1601 */ 1601 */
1602static void backend_changed(struct xenbus_device *dev, 1602static void netback_changed(struct xenbus_device *dev,
1603 enum xenbus_state backend_state) 1603 enum xenbus_state backend_state)
1604{ 1604{
1605 struct netfront_info *np = dev_get_drvdata(&dev->dev); 1605 struct netfront_info *np = dev_get_drvdata(&dev->dev);
@@ -1801,7 +1801,7 @@ static struct xenbus_driver netfront_driver = {
1801 .probe = netfront_probe, 1801 .probe = netfront_probe,
1802 .remove = __devexit_p(xennet_remove), 1802 .remove = __devexit_p(xennet_remove),
1803 .resume = netfront_resume, 1803 .resume = netfront_resume,
1804 .otherend_changed = backend_changed, 1804 .otherend_changed = netback_changed,
1805}; 1805};
1806 1806
1807static int __init netif_init(void) 1807static int __init netif_init(void)