diff options
31 files changed, 678 insertions, 59 deletions
diff --git a/drivers/net/8139too.c b/drivers/net/8139too.c index a03d291de854..f0d23de32967 100644 --- a/drivers/net/8139too.c +++ b/drivers/net/8139too.c | |||
| @@ -1944,7 +1944,7 @@ static int rtl8139_rx(struct net_device *dev, struct rtl8139_private *tp, | |||
| 1944 | netif_dbg(tp, rx_status, dev, "%s() status %04x, size %04x, cur %04x\n", | 1944 | netif_dbg(tp, rx_status, dev, "%s() status %04x, size %04x, cur %04x\n", |
| 1945 | __func__, rx_status, rx_size, cur_rx); | 1945 | __func__, rx_status, rx_size, cur_rx); |
| 1946 | #if RTL8139_DEBUG > 2 | 1946 | #if RTL8139_DEBUG > 2 |
| 1947 | print_dump_hex(KERN_DEBUG, "Frame contents: ", | 1947 | print_hex_dump(KERN_DEBUG, "Frame contents: ", |
| 1948 | DUMP_PREFIX_OFFSET, 16, 1, | 1948 | DUMP_PREFIX_OFFSET, 16, 1, |
| 1949 | &rx_ring[ring_offset], 70, true); | 1949 | &rx_ring[ring_offset], 70, true); |
| 1950 | #endif | 1950 | #endif |
diff --git a/drivers/net/Makefile b/drivers/net/Makefile index a583b50d9de8..12b280afdd51 100644 --- a/drivers/net/Makefile +++ b/drivers/net/Makefile | |||
| @@ -273,6 +273,7 @@ obj-$(CONFIG_USB_RTL8150) += usb/ | |||
| 273 | obj-$(CONFIG_USB_HSO) += usb/ | 273 | obj-$(CONFIG_USB_HSO) += usb/ |
| 274 | obj-$(CONFIG_USB_USBNET) += usb/ | 274 | obj-$(CONFIG_USB_USBNET) += usb/ |
| 275 | obj-$(CONFIG_USB_ZD1201) += usb/ | 275 | obj-$(CONFIG_USB_ZD1201) += usb/ |
| 276 | obj-$(CONFIG_USB_IPHETH) += usb/ | ||
| 276 | 277 | ||
| 277 | obj-y += wireless/ | 278 | obj-y += wireless/ |
| 278 | obj-$(CONFIG_NET_TULIP) += tulip/ | 279 | obj-$(CONFIG_NET_TULIP) += tulip/ |
diff --git a/drivers/net/can/usb/ems_usb.c b/drivers/net/can/usb/ems_usb.c index 33451092b8e8..d800b598ae3d 100644 --- a/drivers/net/can/usb/ems_usb.c +++ b/drivers/net/can/usb/ems_usb.c | |||
| @@ -1006,7 +1006,7 @@ static int ems_usb_probe(struct usb_interface *intf, | |||
| 1006 | 1006 | ||
| 1007 | netdev = alloc_candev(sizeof(struct ems_usb), MAX_TX_URBS); | 1007 | netdev = alloc_candev(sizeof(struct ems_usb), MAX_TX_URBS); |
| 1008 | if (!netdev) { | 1008 | if (!netdev) { |
| 1009 | dev_err(netdev->dev.parent, "Couldn't alloc candev\n"); | 1009 | dev_err(&intf->dev, "ems_usb: Couldn't alloc candev\n"); |
| 1010 | return -ENOMEM; | 1010 | return -ENOMEM; |
| 1011 | } | 1011 | } |
| 1012 | 1012 | ||
| @@ -1036,20 +1036,20 @@ static int ems_usb_probe(struct usb_interface *intf, | |||
| 1036 | 1036 | ||
| 1037 | dev->intr_urb = usb_alloc_urb(0, GFP_KERNEL); | 1037 | dev->intr_urb = usb_alloc_urb(0, GFP_KERNEL); |
| 1038 | if (!dev->intr_urb) { | 1038 | if (!dev->intr_urb) { |
| 1039 | dev_err(netdev->dev.parent, "Couldn't alloc intr URB\n"); | 1039 | dev_err(&intf->dev, "Couldn't alloc intr URB\n"); |
| 1040 | goto cleanup_candev; | 1040 | goto cleanup_candev; |
| 1041 | } | 1041 | } |
| 1042 | 1042 | ||
| 1043 | dev->intr_in_buffer = kzalloc(INTR_IN_BUFFER_SIZE, GFP_KERNEL); | 1043 | dev->intr_in_buffer = kzalloc(INTR_IN_BUFFER_SIZE, GFP_KERNEL); |
| 1044 | if (!dev->intr_in_buffer) { | 1044 | if (!dev->intr_in_buffer) { |
| 1045 | dev_err(netdev->dev.parent, "Couldn't alloc Intr buffer\n"); | 1045 | dev_err(&intf->dev, "Couldn't alloc Intr buffer\n"); |
| 1046 | goto cleanup_intr_urb; | 1046 | goto cleanup_intr_urb; |
| 1047 | } | 1047 | } |
| 1048 | 1048 | ||
| 1049 | dev->tx_msg_buffer = kzalloc(CPC_HEADER_SIZE + | 1049 | dev->tx_msg_buffer = kzalloc(CPC_HEADER_SIZE + |
| 1050 | sizeof(struct ems_cpc_msg), GFP_KERNEL); | 1050 | sizeof(struct ems_cpc_msg), GFP_KERNEL); |
| 1051 | if (!dev->tx_msg_buffer) { | 1051 | if (!dev->tx_msg_buffer) { |
| 1052 | dev_err(netdev->dev.parent, "Couldn't alloc Tx buffer\n"); | 1052 | dev_err(&intf->dev, "Couldn't alloc Tx buffer\n"); |
| 1053 | goto cleanup_intr_in_buffer; | 1053 | goto cleanup_intr_in_buffer; |
| 1054 | } | 1054 | } |
| 1055 | 1055 | ||
diff --git a/drivers/net/cxgb3/ael1002.c b/drivers/net/cxgb3/ael1002.c index 5248f9e0b2f4..35cd36729155 100644 --- a/drivers/net/cxgb3/ael1002.c +++ b/drivers/net/cxgb3/ael1002.c | |||
| @@ -934,7 +934,7 @@ static struct cphy_ops xaui_direct_ops = { | |||
| 934 | int t3_xaui_direct_phy_prep(struct cphy *phy, struct adapter *adapter, | 934 | int t3_xaui_direct_phy_prep(struct cphy *phy, struct adapter *adapter, |
| 935 | int phy_addr, const struct mdio_ops *mdio_ops) | 935 | int phy_addr, const struct mdio_ops *mdio_ops) |
| 936 | { | 936 | { |
| 937 | cphy_init(phy, adapter, MDIO_PRTAD_NONE, &xaui_direct_ops, mdio_ops, | 937 | cphy_init(phy, adapter, phy_addr, &xaui_direct_ops, mdio_ops, |
| 938 | SUPPORTED_10000baseT_Full | SUPPORTED_AUI | SUPPORTED_TP, | 938 | SUPPORTED_10000baseT_Full | SUPPORTED_AUI | SUPPORTED_TP, |
| 939 | "10GBASE-CX4"); | 939 | "10GBASE-CX4"); |
| 940 | return 0; | 940 | return 0; |
diff --git a/drivers/net/fsl_pq_mdio.c b/drivers/net/fsl_pq_mdio.c index d5160edf2fcf..3acac5f930c8 100644 --- a/drivers/net/fsl_pq_mdio.c +++ b/drivers/net/fsl_pq_mdio.c | |||
| @@ -205,8 +205,6 @@ static int fsl_pq_mdio_find_free(struct mii_bus *new_bus) | |||
| 205 | static u32 __iomem *get_gfar_tbipa(struct fsl_pq_mdio __iomem *regs, struct device_node *np) | 205 | static u32 __iomem *get_gfar_tbipa(struct fsl_pq_mdio __iomem *regs, struct device_node *np) |
| 206 | { | 206 | { |
| 207 | struct gfar __iomem *enet_regs; | 207 | struct gfar __iomem *enet_regs; |
| 208 | u32 __iomem *ioremap_tbipa; | ||
| 209 | u64 addr, size; | ||
| 210 | 208 | ||
| 211 | /* | 209 | /* |
| 212 | * This is mildly evil, but so is our hardware for doing this. | 210 | * This is mildly evil, but so is our hardware for doing this. |
| @@ -220,9 +218,7 @@ static u32 __iomem *get_gfar_tbipa(struct fsl_pq_mdio __iomem *regs, struct devi | |||
| 220 | return &enet_regs->tbipa; | 218 | return &enet_regs->tbipa; |
| 221 | } else if (of_device_is_compatible(np, "fsl,etsec2-mdio") || | 219 | } else if (of_device_is_compatible(np, "fsl,etsec2-mdio") || |
| 222 | of_device_is_compatible(np, "fsl,etsec2-tbi")) { | 220 | of_device_is_compatible(np, "fsl,etsec2-tbi")) { |
| 223 | addr = of_translate_address(np, of_get_address(np, 1, &size, NULL)); | 221 | return of_iomap(np, 1); |
| 224 | ioremap_tbipa = ioremap(addr, size); | ||
| 225 | return ioremap_tbipa; | ||
| 226 | } else | 222 | } else |
| 227 | return NULL; | 223 | return NULL; |
| 228 | } | 224 | } |
| @@ -279,6 +275,7 @@ static int fsl_pq_mdio_probe(struct of_device *ofdev, | |||
| 279 | u32 __iomem *tbipa; | 275 | u32 __iomem *tbipa; |
| 280 | struct mii_bus *new_bus; | 276 | struct mii_bus *new_bus; |
| 281 | int tbiaddr = -1; | 277 | int tbiaddr = -1; |
| 278 | const u32 *addrp; | ||
| 282 | u64 addr = 0, size = 0; | 279 | u64 addr = 0, size = 0; |
| 283 | int err = 0; | 280 | int err = 0; |
| 284 | 281 | ||
| @@ -297,8 +294,19 @@ static int fsl_pq_mdio_probe(struct of_device *ofdev, | |||
| 297 | new_bus->priv = priv; | 294 | new_bus->priv = priv; |
| 298 | fsl_pq_mdio_bus_name(new_bus->id, np); | 295 | fsl_pq_mdio_bus_name(new_bus->id, np); |
| 299 | 296 | ||
| 297 | addrp = of_get_address(np, 0, &size, NULL); | ||
| 298 | if (!addrp) { | ||
| 299 | err = -EINVAL; | ||
| 300 | goto err_free_bus; | ||
| 301 | } | ||
| 302 | |||
| 300 | /* Set the PHY base address */ | 303 | /* Set the PHY base address */ |
| 301 | addr = of_translate_address(np, of_get_address(np, 0, &size, NULL)); | 304 | addr = of_translate_address(np, addrp); |
| 305 | if (addr == OF_BAD_ADDR) { | ||
| 306 | err = -EINVAL; | ||
| 307 | goto err_free_bus; | ||
| 308 | } | ||
| 309 | |||
| 302 | map = ioremap(addr, size); | 310 | map = ioremap(addr, size); |
| 303 | if (!map) { | 311 | if (!map) { |
| 304 | err = -ENOMEM; | 312 | err = -ENOMEM; |
diff --git a/drivers/net/gianfar.c b/drivers/net/gianfar.c index 080d1cea5b26..df49af382159 100644 --- a/drivers/net/gianfar.c +++ b/drivers/net/gianfar.c | |||
| @@ -549,12 +549,8 @@ static int gfar_parse_group(struct device_node *np, | |||
| 549 | struct gfar_private *priv, const char *model) | 549 | struct gfar_private *priv, const char *model) |
| 550 | { | 550 | { |
| 551 | u32 *queue_mask; | 551 | u32 *queue_mask; |
| 552 | u64 addr, size; | ||
| 553 | |||
| 554 | addr = of_translate_address(np, | ||
| 555 | of_get_address(np, 0, &size, NULL)); | ||
| 556 | priv->gfargrp[priv->num_grps].regs = ioremap(addr, size); | ||
| 557 | 552 | ||
| 553 | priv->gfargrp[priv->num_grps].regs = of_iomap(np, 0); | ||
| 558 | if (!priv->gfargrp[priv->num_grps].regs) | 554 | if (!priv->gfargrp[priv->num_grps].regs) |
| 559 | return -ENOMEM; | 555 | return -ENOMEM; |
| 560 | 556 | ||
diff --git a/drivers/net/ks8851.c b/drivers/net/ks8851.c index 13cc1ca261d9..9e9f9b349766 100644 --- a/drivers/net/ks8851.c +++ b/drivers/net/ks8851.c | |||
| @@ -722,12 +722,14 @@ static void ks8851_tx_work(struct work_struct *work) | |||
| 722 | txb = skb_dequeue(&ks->txq); | 722 | txb = skb_dequeue(&ks->txq); |
| 723 | last = skb_queue_empty(&ks->txq); | 723 | last = skb_queue_empty(&ks->txq); |
| 724 | 724 | ||
| 725 | ks8851_wrreg16(ks, KS_RXQCR, ks->rc_rxqcr | RXQCR_SDA); | 725 | if (txb != NULL) { |
| 726 | ks8851_wrpkt(ks, txb, last); | 726 | ks8851_wrreg16(ks, KS_RXQCR, ks->rc_rxqcr | RXQCR_SDA); |
| 727 | ks8851_wrreg16(ks, KS_RXQCR, ks->rc_rxqcr); | 727 | ks8851_wrpkt(ks, txb, last); |
| 728 | ks8851_wrreg16(ks, KS_TXQCR, TXQCR_METFE); | 728 | ks8851_wrreg16(ks, KS_RXQCR, ks->rc_rxqcr); |
| 729 | ks8851_wrreg16(ks, KS_TXQCR, TXQCR_METFE); | ||
| 729 | 730 | ||
| 730 | ks8851_done_tx(ks, txb); | 731 | ks8851_done_tx(ks, txb); |
| 732 | } | ||
| 731 | } | 733 | } |
| 732 | 734 | ||
| 733 | mutex_unlock(&ks->lock); | 735 | mutex_unlock(&ks->lock); |
diff --git a/drivers/net/pcmcia/3c574_cs.c b/drivers/net/pcmcia/3c574_cs.c index 3d1d3a7b7ed3..757f87bb1db3 100644 --- a/drivers/net/pcmcia/3c574_cs.c +++ b/drivers/net/pcmcia/3c574_cs.c | |||
| @@ -781,8 +781,13 @@ static netdev_tx_t el3_start_xmit(struct sk_buff *skb, | |||
| 781 | inw(ioaddr + EL3_STATUS)); | 781 | inw(ioaddr + EL3_STATUS)); |
| 782 | 782 | ||
| 783 | spin_lock_irqsave(&lp->window_lock, flags); | 783 | spin_lock_irqsave(&lp->window_lock, flags); |
| 784 | |||
| 785 | dev->stats.tx_bytes += skb->len; | ||
| 786 | |||
| 787 | /* Put out the doubleword header... */ | ||
| 784 | outw(skb->len, ioaddr + TX_FIFO); | 788 | outw(skb->len, ioaddr + TX_FIFO); |
| 785 | outw(0, ioaddr + TX_FIFO); | 789 | outw(0, ioaddr + TX_FIFO); |
| 790 | /* ... and the packet rounded to a doubleword. */ | ||
| 786 | outsl(ioaddr + TX_FIFO, skb->data, (skb->len+3)>>2); | 791 | outsl(ioaddr + TX_FIFO, skb->data, (skb->len+3)>>2); |
| 787 | 792 | ||
| 788 | dev->trans_start = jiffies; | 793 | dev->trans_start = jiffies; |
| @@ -1021,8 +1026,6 @@ static void update_stats(struct net_device *dev) | |||
| 1021 | /* BadSSD */ inb(ioaddr + 12); | 1026 | /* BadSSD */ inb(ioaddr + 12); |
| 1022 | up = inb(ioaddr + 13); | 1027 | up = inb(ioaddr + 13); |
| 1023 | 1028 | ||
| 1024 | dev->stats.tx_bytes += tx + ((up & 0xf0) << 12); | ||
| 1025 | |||
| 1026 | EL3WINDOW(1); | 1029 | EL3WINDOW(1); |
| 1027 | } | 1030 | } |
| 1028 | 1031 | ||
diff --git a/drivers/net/usb/Kconfig b/drivers/net/usb/Kconfig index ba56ce4382d9..63be4caec70e 100644 --- a/drivers/net/usb/Kconfig +++ b/drivers/net/usb/Kconfig | |||
| @@ -385,4 +385,16 @@ config USB_CDC_PHONET | |||
| 385 | cellular modem, as found on most Nokia handsets with the | 385 | cellular modem, as found on most Nokia handsets with the |
| 386 | "PC suite" USB profile. | 386 | "PC suite" USB profile. |
| 387 | 387 | ||
| 388 | config USB_IPHETH | ||
| 389 | tristate "Apple iPhone USB Ethernet driver" | ||
| 390 | default n | ||
| 391 | ---help--- | ||
| 392 | Module used to share Internet connection (tethering) from your | ||
| 393 | iPhone (Original, 3G and 3GS) to your system. | ||
| 394 | Note that you need userspace libraries and programs that are needed | ||
| 395 | to pair your device with your system and that understand the iPhone | ||
| 396 | protocol. | ||
| 397 | |||
| 398 | For more information: http://giagio.com/wiki/moin.cgi/iPhoneEthernetDriver | ||
| 399 | |||
| 388 | endmenu | 400 | endmenu |
diff --git a/drivers/net/usb/Makefile b/drivers/net/usb/Makefile index 82ea62955b56..edb09c0ddf8e 100644 --- a/drivers/net/usb/Makefile +++ b/drivers/net/usb/Makefile | |||
| @@ -23,4 +23,5 @@ obj-$(CONFIG_USB_NET_MCS7830) += mcs7830.o | |||
| 23 | obj-$(CONFIG_USB_USBNET) += usbnet.o | 23 | obj-$(CONFIG_USB_USBNET) += usbnet.o |
| 24 | obj-$(CONFIG_USB_NET_INT51X1) += int51x1.o | 24 | obj-$(CONFIG_USB_NET_INT51X1) += int51x1.o |
| 25 | obj-$(CONFIG_USB_CDC_PHONET) += cdc-phonet.o | 25 | obj-$(CONFIG_USB_CDC_PHONET) += cdc-phonet.o |
| 26 | obj-$(CONFIG_USB_IPHETH) += ipheth.o | ||
| 26 | 27 | ||
diff --git a/drivers/net/usb/ipheth.c b/drivers/net/usb/ipheth.c new file mode 100644 index 000000000000..fd1033130a81 --- /dev/null +++ b/drivers/net/usb/ipheth.c | |||
| @@ -0,0 +1,568 @@ | |||
| 1 | /* | ||
| 2 | * ipheth.c - Apple iPhone USB Ethernet driver | ||
| 3 | * | ||
| 4 | * Copyright (c) 2009 Diego Giagio <diego@giagio.com> | ||
| 5 | * All rights reserved. | ||
| 6 | * | ||
| 7 | * Redistribution and use in source and binary forms, with or without | ||
| 8 | * modification, are permitted provided that the following conditions | ||
| 9 | * are met: | ||
| 10 | * 1. Redistributions of source code must retain the above copyright | ||
| 11 | * notice, this list of conditions and the following disclaimer. | ||
| 12 | * 2. Redistributions in binary form must reproduce the above copyright | ||
| 13 | * notice, this list of conditions and the following disclaimer in the | ||
| 14 | * documentation and/or other materials provided with the distribution. | ||
| 15 | * 3. Neither the name of GIAGIO.COM nor the names of its contributors | ||
| 16 | * may be used to endorse or promote products derived from this software | ||
| 17 | * without specific prior written permission. | ||
| 18 | * | ||
| 19 | * Alternatively, provided that this notice is retained in full, this | ||
| 20 | * software may be distributed under the terms of the GNU General | ||
| 21 | * Public License ("GPL") version 2, in which case the provisions of the | ||
| 22 | * GPL apply INSTEAD OF those given above. | ||
| 23 | * | ||
| 24 | * The provided data structures and external interfaces from this code | ||
| 25 | * are not restricted to be used by modules with a GPL compatible license. | ||
| 26 | * | ||
| 27 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
| 28 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
| 29 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||
| 30 | * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||
| 31 | * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
| 32 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||
| 33 | * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
| 34 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
| 35 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
| 36 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
| 37 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH | ||
| 38 | * DAMAGE. | ||
| 39 | * | ||
| 40 | * | ||
| 41 | * Attention: iPhone device must be paired, otherwise it won't respond to our | ||
| 42 | * driver. For more info: http://giagio.com/wiki/moin.cgi/iPhoneEthernetDriver | ||
| 43 | * | ||
| 44 | */ | ||
| 45 | |||
| 46 | #include <linux/kernel.h> | ||
| 47 | #include <linux/errno.h> | ||
| 48 | #include <linux/init.h> | ||
| 49 | #include <linux/slab.h> | ||
| 50 | #include <linux/module.h> | ||
| 51 | #include <linux/netdevice.h> | ||
| 52 | #include <linux/etherdevice.h> | ||
| 53 | #include <linux/ethtool.h> | ||
| 54 | #include <linux/usb.h> | ||
| 55 | #include <linux/workqueue.h> | ||
| 56 | |||
| 57 | #define USB_VENDOR_APPLE 0x05ac | ||
| 58 | #define USB_PRODUCT_IPHONE 0x1290 | ||
| 59 | #define USB_PRODUCT_IPHONE_3G 0x1292 | ||
| 60 | #define USB_PRODUCT_IPHONE_3GS 0x1294 | ||
| 61 | |||
| 62 | #define IPHETH_USBINTF_CLASS 255 | ||
| 63 | #define IPHETH_USBINTF_SUBCLASS 253 | ||
| 64 | #define IPHETH_USBINTF_PROTO 1 | ||
| 65 | |||
| 66 | #define IPHETH_BUF_SIZE 1516 | ||
| 67 | #define IPHETH_TX_TIMEOUT (5 * HZ) | ||
| 68 | |||
| 69 | #define IPHETH_INTFNUM 2 | ||
| 70 | #define IPHETH_ALT_INTFNUM 1 | ||
| 71 | |||
| 72 | #define IPHETH_CTRL_ENDP 0x00 | ||
| 73 | #define IPHETH_CTRL_BUF_SIZE 0x40 | ||
| 74 | #define IPHETH_CTRL_TIMEOUT (5 * HZ) | ||
| 75 | |||
| 76 | #define IPHETH_CMD_GET_MACADDR 0x00 | ||
| 77 | #define IPHETH_CMD_CARRIER_CHECK 0x45 | ||
| 78 | |||
| 79 | #define IPHETH_CARRIER_CHECK_TIMEOUT round_jiffies_relative(1 * HZ) | ||
| 80 | #define IPHETH_CARRIER_ON 0x04 | ||
| 81 | |||
| 82 | static struct usb_device_id ipheth_table[] = { | ||
| 83 | { USB_DEVICE_AND_INTERFACE_INFO( | ||
| 84 | USB_VENDOR_APPLE, USB_PRODUCT_IPHONE, | ||
| 85 | IPHETH_USBINTF_CLASS, IPHETH_USBINTF_SUBCLASS, | ||
| 86 | IPHETH_USBINTF_PROTO) }, | ||
| 87 | { USB_DEVICE_AND_INTERFACE_INFO( | ||
| 88 | USB_VENDOR_APPLE, USB_PRODUCT_IPHONE_3G, | ||
| 89 | IPHETH_USBINTF_CLASS, IPHETH_USBINTF_SUBCLASS, | ||
| 90 | IPHETH_USBINTF_PROTO) }, | ||
| 91 | { USB_DEVICE_AND_INTERFACE_INFO( | ||
| 92 | USB_VENDOR_APPLE, USB_PRODUCT_IPHONE_3GS, | ||
| 93 | IPHETH_USBINTF_CLASS, IPHETH_USBINTF_SUBCLASS, | ||
| 94 | IPHETH_USBINTF_PROTO) }, | ||
| 95 | { } | ||
| 96 | }; | ||
| 97 | MODULE_DEVICE_TABLE(usb, ipheth_table); | ||
| 98 | |||
| 99 | struct ipheth_device { | ||
| 100 | struct usb_device *udev; | ||
| 101 | struct usb_interface *intf; | ||
| 102 | struct net_device *net; | ||
| 103 | struct sk_buff *tx_skb; | ||
| 104 | struct urb *tx_urb; | ||
| 105 | struct urb *rx_urb; | ||
| 106 | unsigned char *tx_buf; | ||
| 107 | unsigned char *rx_buf; | ||
| 108 | unsigned char *ctrl_buf; | ||
| 109 | u8 bulk_in; | ||
| 110 | u8 bulk_out; | ||
| 111 | struct delayed_work carrier_work; | ||
| 112 | }; | ||
| 113 | |||
| 114 | static int ipheth_rx_submit(struct ipheth_device *dev, gfp_t mem_flags); | ||
| 115 | |||
| 116 | static int ipheth_alloc_urbs(struct ipheth_device *iphone) | ||
| 117 | { | ||
| 118 | struct urb *tx_urb = NULL; | ||
| 119 | struct urb *rx_urb = NULL; | ||
| 120 | u8 *tx_buf = NULL; | ||
| 121 | u8 *rx_buf = NULL; | ||
| 122 | |||
| 123 | tx_urb = usb_alloc_urb(0, GFP_KERNEL); | ||
| 124 | if (tx_urb == NULL) | ||
| 125 | goto error; | ||
| 126 | |||
| 127 | rx_urb = usb_alloc_urb(0, GFP_KERNEL); | ||
| 128 | if (rx_urb == NULL) | ||
| 129 | goto error; | ||
| 130 | |||
| 131 | tx_buf = usb_buffer_alloc(iphone->udev, | ||
| 132 | IPHETH_BUF_SIZE, | ||
| 133 | GFP_KERNEL, | ||
| 134 | &tx_urb->transfer_dma); | ||
| 135 | if (tx_buf == NULL) | ||
| 136 | goto error; | ||
| 137 | |||
| 138 | rx_buf = usb_buffer_alloc(iphone->udev, | ||
| 139 | IPHETH_BUF_SIZE, | ||
| 140 | GFP_KERNEL, | ||
| 141 | &rx_urb->transfer_dma); | ||
| 142 | if (rx_buf == NULL) | ||
| 143 | goto error; | ||
| 144 | |||
| 145 | |||
| 146 | iphone->tx_urb = tx_urb; | ||
| 147 | iphone->rx_urb = rx_urb; | ||
| 148 | iphone->tx_buf = tx_buf; | ||
| 149 | iphone->rx_buf = rx_buf; | ||
| 150 | return 0; | ||
| 151 | |||
| 152 | error: | ||
| 153 | usb_buffer_free(iphone->udev, IPHETH_BUF_SIZE, rx_buf, | ||
| 154 | rx_urb->transfer_dma); | ||
| 155 | usb_buffer_free(iphone->udev, IPHETH_BUF_SIZE, tx_buf, | ||
| 156 | tx_urb->transfer_dma); | ||
| 157 | usb_free_urb(rx_urb); | ||
| 158 | usb_free_urb(tx_urb); | ||
| 159 | return -ENOMEM; | ||
| 160 | } | ||
| 161 | |||
| 162 | static void ipheth_free_urbs(struct ipheth_device *iphone) | ||
| 163 | { | ||
| 164 | usb_buffer_free(iphone->udev, IPHETH_BUF_SIZE, iphone->rx_buf, | ||
| 165 | iphone->rx_urb->transfer_dma); | ||
| 166 | usb_buffer_free(iphone->udev, IPHETH_BUF_SIZE, iphone->tx_buf, | ||
| 167 | iphone->tx_urb->transfer_dma); | ||
| 168 | usb_free_urb(iphone->rx_urb); | ||
| 169 | usb_free_urb(iphone->tx_urb); | ||
| 170 | } | ||
| 171 | |||
| 172 | static void ipheth_kill_urbs(struct ipheth_device *dev) | ||
| 173 | { | ||
| 174 | usb_kill_urb(dev->tx_urb); | ||
| 175 | usb_kill_urb(dev->rx_urb); | ||
| 176 | } | ||
| 177 | |||
| 178 | static void ipheth_rcvbulk_callback(struct urb *urb) | ||
| 179 | { | ||
| 180 | struct ipheth_device *dev; | ||
| 181 | struct sk_buff *skb; | ||
| 182 | int status; | ||
| 183 | char *buf; | ||
| 184 | int len; | ||
| 185 | |||
| 186 | dev = urb->context; | ||
| 187 | if (dev == NULL) | ||
| 188 | return; | ||
| 189 | |||
| 190 | status = urb->status; | ||
| 191 | switch (status) { | ||
| 192 | case -ENOENT: | ||
| 193 | case -ECONNRESET: | ||
| 194 | case -ESHUTDOWN: | ||
| 195 | return; | ||
| 196 | case 0: | ||
| 197 | break; | ||
| 198 | default: | ||
| 199 | err("%s: urb status: %d", __func__, urb->status); | ||
| 200 | return; | ||
| 201 | } | ||
| 202 | |||
| 203 | len = urb->actual_length; | ||
| 204 | buf = urb->transfer_buffer; | ||
| 205 | |||
| 206 | skb = dev_alloc_skb(NET_IP_ALIGN + len); | ||
| 207 | if (!skb) { | ||
| 208 | err("%s: dev_alloc_skb: -ENOMEM", __func__); | ||
| 209 | dev->net->stats.rx_dropped++; | ||
| 210 | return; | ||
| 211 | } | ||
| 212 | |||
| 213 | skb_reserve(skb, NET_IP_ALIGN); | ||
| 214 | memcpy(skb_put(skb, len), buf + NET_IP_ALIGN, len - NET_IP_ALIGN); | ||
| 215 | skb->dev = dev->net; | ||
| 216 | skb->protocol = eth_type_trans(skb, dev->net); | ||
| 217 | |||
| 218 | dev->net->stats.rx_packets++; | ||
| 219 | dev->net->stats.rx_bytes += len; | ||
| 220 | |||
| 221 | netif_rx(skb); | ||
| 222 | ipheth_rx_submit(dev, GFP_ATOMIC); | ||
| 223 | } | ||
| 224 | |||
| 225 | static void ipheth_sndbulk_callback(struct urb *urb) | ||
| 226 | { | ||
| 227 | struct ipheth_device *dev; | ||
| 228 | |||
| 229 | dev = urb->context; | ||
| 230 | if (dev == NULL) | ||
| 231 | return; | ||
| 232 | |||
| 233 | if (urb->status != 0 && | ||
| 234 | urb->status != -ENOENT && | ||
| 235 | urb->status != -ECONNRESET && | ||
| 236 | urb->status != -ESHUTDOWN) | ||
| 237 | err("%s: urb status: %d", __func__, urb->status); | ||
| 238 | |||
| 239 | dev_kfree_skb_irq(dev->tx_skb); | ||
| 240 | netif_wake_queue(dev->net); | ||
| 241 | } | ||
| 242 | |||
| 243 | static int ipheth_carrier_set(struct ipheth_device *dev) | ||
| 244 | { | ||
| 245 | struct usb_device *udev = dev->udev; | ||
| 246 | int retval; | ||
| 247 | |||
| 248 | retval = usb_control_msg(udev, | ||
| 249 | usb_rcvctrlpipe(udev, IPHETH_CTRL_ENDP), | ||
| 250 | IPHETH_CMD_CARRIER_CHECK, /* request */ | ||
| 251 | 0xc0, /* request type */ | ||
| 252 | 0x00, /* value */ | ||
| 253 | 0x02, /* index */ | ||
| 254 | dev->ctrl_buf, IPHETH_CTRL_BUF_SIZE, | ||
| 255 | IPHETH_CTRL_TIMEOUT); | ||
| 256 | if (retval < 0) { | ||
| 257 | err("%s: usb_control_msg: %d", __func__, retval); | ||
| 258 | return retval; | ||
| 259 | } | ||
| 260 | |||
| 261 | if (dev->ctrl_buf[0] == IPHETH_CARRIER_ON) | ||
| 262 | netif_carrier_on(dev->net); | ||
| 263 | else | ||
| 264 | netif_carrier_off(dev->net); | ||
| 265 | |||
| 266 | return 0; | ||
| 267 | } | ||
| 268 | |||
| 269 | static void ipheth_carrier_check_work(struct work_struct *work) | ||
| 270 | { | ||
| 271 | struct ipheth_device *dev = container_of(work, struct ipheth_device, | ||
| 272 | carrier_work.work); | ||
| 273 | |||
| 274 | ipheth_carrier_set(dev); | ||
| 275 | schedule_delayed_work(&dev->carrier_work, IPHETH_CARRIER_CHECK_TIMEOUT); | ||
| 276 | } | ||
| 277 | |||
| 278 | static int ipheth_get_macaddr(struct ipheth_device *dev) | ||
| 279 | { | ||
| 280 | struct usb_device *udev = dev->udev; | ||
| 281 | struct net_device *net = dev->net; | ||
| 282 | int retval; | ||
| 283 | |||
| 284 | retval = usb_control_msg(udev, | ||
| 285 | usb_rcvctrlpipe(udev, IPHETH_CTRL_ENDP), | ||
| 286 | IPHETH_CMD_GET_MACADDR, /* request */ | ||
| 287 | 0xc0, /* request type */ | ||
| 288 | 0x00, /* value */ | ||
| 289 | 0x02, /* index */ | ||
| 290 | dev->ctrl_buf, | ||
| 291 | IPHETH_CTRL_BUF_SIZE, | ||
| 292 | IPHETH_CTRL_TIMEOUT); | ||
| 293 | if (retval < 0) { | ||
| 294 | err("%s: usb_control_msg: %d", __func__, retval); | ||
| 295 | } else if (retval < ETH_ALEN) { | ||
| 296 | err("%s: usb_control_msg: short packet: %d bytes", | ||
| 297 | __func__, retval); | ||
| 298 | retval = -EINVAL; | ||
| 299 | } else { | ||
| 300 | memcpy(net->dev_addr, dev->ctrl_buf, ETH_ALEN); | ||
| 301 | retval = 0; | ||
| 302 | } | ||
| 303 | |||
| 304 | return retval; | ||
| 305 | } | ||
| 306 | |||
| 307 | static int ipheth_rx_submit(struct ipheth_device *dev, gfp_t mem_flags) | ||
| 308 | { | ||
| 309 | struct usb_device *udev = dev->udev; | ||
| 310 | int retval; | ||
| 311 | |||
| 312 | usb_fill_bulk_urb(dev->rx_urb, udev, | ||
| 313 | usb_rcvbulkpipe(udev, dev->bulk_in), | ||
| 314 | dev->rx_buf, IPHETH_BUF_SIZE, | ||
| 315 | ipheth_rcvbulk_callback, | ||
| 316 | dev); | ||
| 317 | dev->rx_urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP; | ||
| 318 | |||
| 319 | retval = usb_submit_urb(dev->rx_urb, mem_flags); | ||
| 320 | if (retval) | ||
| 321 | err("%s: usb_submit_urb: %d", __func__, retval); | ||
| 322 | return retval; | ||
| 323 | } | ||
| 324 | |||
| 325 | static int ipheth_open(struct net_device *net) | ||
| 326 | { | ||
| 327 | struct ipheth_device *dev = netdev_priv(net); | ||
| 328 | struct usb_device *udev = dev->udev; | ||
| 329 | int retval = 0; | ||
| 330 | |||
| 331 | usb_set_interface(udev, IPHETH_INTFNUM, IPHETH_ALT_INTFNUM); | ||
| 332 | |||
| 333 | retval = ipheth_carrier_set(dev); | ||
| 334 | if (retval) | ||
| 335 | return retval; | ||
| 336 | |||
| 337 | retval = ipheth_rx_submit(dev, GFP_KERNEL); | ||
| 338 | if (retval) | ||
| 339 | return retval; | ||
| 340 | |||
| 341 | schedule_delayed_work(&dev->carrier_work, IPHETH_CARRIER_CHECK_TIMEOUT); | ||
| 342 | netif_start_queue(net); | ||
| 343 | return retval; | ||
| 344 | } | ||
| 345 | |||
| 346 | static int ipheth_close(struct net_device *net) | ||
| 347 | { | ||
| 348 | struct ipheth_device *dev = netdev_priv(net); | ||
| 349 | |||
| 350 | cancel_delayed_work_sync(&dev->carrier_work); | ||
| 351 | netif_stop_queue(net); | ||
| 352 | return 0; | ||
| 353 | } | ||
| 354 | |||
| 355 | static int ipheth_tx(struct sk_buff *skb, struct net_device *net) | ||
| 356 | { | ||
| 357 | struct ipheth_device *dev = netdev_priv(net); | ||
| 358 | struct usb_device *udev = dev->udev; | ||
| 359 | int retval; | ||
| 360 | |||
| 361 | /* Paranoid */ | ||
| 362 | if (skb->len > IPHETH_BUF_SIZE) { | ||
| 363 | WARN(1, "%s: skb too large: %d bytes", __func__, skb->len); | ||
| 364 | dev->net->stats.tx_dropped++; | ||
| 365 | dev_kfree_skb_irq(skb); | ||
| 366 | return NETDEV_TX_OK; | ||
| 367 | } | ||
| 368 | |||
| 369 | memcpy(dev->tx_buf, skb->data, skb->len); | ||
| 370 | if (skb->len < IPHETH_BUF_SIZE) | ||
| 371 | memset(dev->tx_buf + skb->len, 0, IPHETH_BUF_SIZE - skb->len); | ||
| 372 | |||
| 373 | usb_fill_bulk_urb(dev->tx_urb, udev, | ||
| 374 | usb_sndbulkpipe(udev, dev->bulk_out), | ||
| 375 | dev->tx_buf, IPHETH_BUF_SIZE, | ||
| 376 | ipheth_sndbulk_callback, | ||
| 377 | dev); | ||
| 378 | dev->tx_urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP; | ||
| 379 | |||
| 380 | retval = usb_submit_urb(dev->tx_urb, GFP_ATOMIC); | ||
| 381 | if (retval) { | ||
| 382 | err("%s: usb_submit_urb: %d", __func__, retval); | ||
| 383 | dev->net->stats.tx_errors++; | ||
| 384 | dev_kfree_skb_irq(skb); | ||
| 385 | } else { | ||
| 386 | dev->tx_skb = skb; | ||
| 387 | |||
| 388 | dev->net->stats.tx_packets++; | ||
| 389 | dev->net->stats.tx_bytes += skb->len; | ||
| 390 | netif_stop_queue(net); | ||
| 391 | } | ||
| 392 | |||
| 393 | return NETDEV_TX_OK; | ||
| 394 | } | ||
| 395 | |||
| 396 | static void ipheth_tx_timeout(struct net_device *net) | ||
| 397 | { | ||
| 398 | struct ipheth_device *dev = netdev_priv(net); | ||
| 399 | |||
| 400 | err("%s: TX timeout", __func__); | ||
| 401 | dev->net->stats.tx_errors++; | ||
| 402 | usb_unlink_urb(dev->tx_urb); | ||
| 403 | } | ||
| 404 | |||
| 405 | static struct net_device_stats *ipheth_stats(struct net_device *net) | ||
| 406 | { | ||
| 407 | struct ipheth_device *dev = netdev_priv(net); | ||
| 408 | return &dev->net->stats; | ||
| 409 | } | ||
| 410 | |||
| 411 | static u32 ipheth_ethtool_op_get_link(struct net_device *net) | ||
| 412 | { | ||
| 413 | struct ipheth_device *dev = netdev_priv(net); | ||
| 414 | return netif_carrier_ok(dev->net); | ||
| 415 | } | ||
| 416 | |||
| 417 | static struct ethtool_ops ops = { | ||
| 418 | .get_link = ipheth_ethtool_op_get_link | ||
| 419 | }; | ||
| 420 | |||
| 421 | static const struct net_device_ops ipheth_netdev_ops = { | ||
| 422 | .ndo_open = &ipheth_open, | ||
| 423 | .ndo_stop = &ipheth_close, | ||
| 424 | .ndo_start_xmit = &ipheth_tx, | ||
| 425 | .ndo_tx_timeout = &ipheth_tx_timeout, | ||
| 426 | .ndo_get_stats = &ipheth_stats, | ||
| 427 | }; | ||
| 428 | |||
| 429 | static struct device_type ipheth_type = { | ||
| 430 | .name = "wwan", | ||
| 431 | }; | ||
| 432 | |||
| 433 | static int ipheth_probe(struct usb_interface *intf, | ||
| 434 | const struct usb_device_id *id) | ||
| 435 | { | ||
| 436 | struct usb_device *udev = interface_to_usbdev(intf); | ||
| 437 | struct usb_host_interface *hintf; | ||
| 438 | struct usb_endpoint_descriptor *endp; | ||
| 439 | struct ipheth_device *dev; | ||
| 440 | struct net_device *netdev; | ||
| 441 | int i; | ||
| 442 | int retval; | ||
| 443 | |||
| 444 | netdev = alloc_etherdev(sizeof(struct ipheth_device)); | ||
| 445 | if (!netdev) | ||
| 446 | return -ENOMEM; | ||
| 447 | |||
| 448 | netdev->netdev_ops = &ipheth_netdev_ops; | ||
| 449 | netdev->watchdog_timeo = IPHETH_TX_TIMEOUT; | ||
| 450 | strcpy(netdev->name, "wwan%d"); | ||
| 451 | |||
| 452 | dev = netdev_priv(netdev); | ||
| 453 | dev->udev = udev; | ||
| 454 | dev->net = netdev; | ||
| 455 | dev->intf = intf; | ||
| 456 | |||
| 457 | /* Set up endpoints */ | ||
| 458 | hintf = usb_altnum_to_altsetting(intf, IPHETH_ALT_INTFNUM); | ||
| 459 | if (hintf == NULL) { | ||
| 460 | retval = -ENODEV; | ||
| 461 | err("Unable to find alternate settings interface"); | ||
| 462 | goto err_endpoints; | ||
| 463 | } | ||
| 464 | |||
| 465 | for (i = 0; i < hintf->desc.bNumEndpoints; i++) { | ||
| 466 | endp = &hintf->endpoint[i].desc; | ||
| 467 | if (usb_endpoint_is_bulk_in(endp)) | ||
| 468 | dev->bulk_in = endp->bEndpointAddress; | ||
| 469 | else if (usb_endpoint_is_bulk_out(endp)) | ||
| 470 | dev->bulk_out = endp->bEndpointAddress; | ||
| 471 | } | ||
| 472 | if (!(dev->bulk_in && dev->bulk_out)) { | ||
| 473 | retval = -ENODEV; | ||
| 474 | err("Unable to find endpoints"); | ||
| 475 | goto err_endpoints; | ||
| 476 | } | ||
| 477 | |||
| 478 | dev->ctrl_buf = kmalloc(IPHETH_CTRL_BUF_SIZE, GFP_KERNEL); | ||
| 479 | if (dev->ctrl_buf == NULL) { | ||
| 480 | retval = -ENOMEM; | ||
| 481 | goto err_alloc_ctrl_buf; | ||
| 482 | } | ||
| 483 | |||
| 484 | retval = ipheth_get_macaddr(dev); | ||
| 485 | if (retval) | ||
| 486 | goto err_get_macaddr; | ||
| 487 | |||
| 488 | INIT_DELAYED_WORK(&dev->carrier_work, ipheth_carrier_check_work); | ||
| 489 | |||
| 490 | retval = ipheth_alloc_urbs(dev); | ||
| 491 | if (retval) { | ||
| 492 | err("error allocating urbs: %d", retval); | ||
| 493 | goto err_alloc_urbs; | ||
| 494 | } | ||
| 495 | |||
| 496 | usb_set_intfdata(intf, dev); | ||
| 497 | |||
| 498 | SET_NETDEV_DEV(netdev, &intf->dev); | ||
| 499 | SET_ETHTOOL_OPS(netdev, &ops); | ||
| 500 | SET_NETDEV_DEVTYPE(netdev, &ipheth_type); | ||
| 501 | |||
| 502 | retval = register_netdev(netdev); | ||
| 503 | if (retval) { | ||
| 504 | err("error registering netdev: %d", retval); | ||
| 505 | retval = -EIO; | ||
| 506 | goto err_register_netdev; | ||
| 507 | } | ||
| 508 | |||
| 509 | dev_info(&intf->dev, "Apple iPhone USB Ethernet device attached\n"); | ||
| 510 | return 0; | ||
| 511 | |||
| 512 | err_register_netdev: | ||
| 513 | ipheth_free_urbs(dev); | ||
| 514 | err_alloc_urbs: | ||
| 515 | err_get_macaddr: | ||
| 516 | err_alloc_ctrl_buf: | ||
| 517 | kfree(dev->ctrl_buf); | ||
| 518 | err_endpoints: | ||
| 519 | free_netdev(netdev); | ||
| 520 | return retval; | ||
| 521 | } | ||
| 522 | |||
| 523 | static void ipheth_disconnect(struct usb_interface *intf) | ||
| 524 | { | ||
| 525 | struct ipheth_device *dev; | ||
| 526 | |||
| 527 | dev = usb_get_intfdata(intf); | ||
| 528 | if (dev != NULL) { | ||
| 529 | unregister_netdev(dev->net); | ||
| 530 | ipheth_kill_urbs(dev); | ||
| 531 | ipheth_free_urbs(dev); | ||
| 532 | kfree(dev->ctrl_buf); | ||
| 533 | free_netdev(dev->net); | ||
| 534 | } | ||
| 535 | usb_set_intfdata(intf, NULL); | ||
| 536 | dev_info(&intf->dev, "Apple iPhone USB Ethernet now disconnected\n"); | ||
| 537 | } | ||
| 538 | |||
| 539 | static struct usb_driver ipheth_driver = { | ||
| 540 | .name = "ipheth", | ||
| 541 | .probe = ipheth_probe, | ||
| 542 | .disconnect = ipheth_disconnect, | ||
| 543 | .id_table = ipheth_table, | ||
| 544 | }; | ||
| 545 | |||
| 546 | static int __init ipheth_init(void) | ||
| 547 | { | ||
| 548 | int retval; | ||
| 549 | |||
| 550 | retval = usb_register(&ipheth_driver); | ||
| 551 | if (retval) { | ||
| 552 | err("usb_register failed: %d", retval); | ||
| 553 | return retval; | ||
| 554 | } | ||
| 555 | return 0; | ||
| 556 | } | ||
| 557 | |||
| 558 | static void __exit ipheth_exit(void) | ||
| 559 | { | ||
| 560 | usb_deregister(&ipheth_driver); | ||
| 561 | } | ||
| 562 | |||
| 563 | module_init(ipheth_init); | ||
| 564 | module_exit(ipheth_exit); | ||
| 565 | |||
| 566 | MODULE_AUTHOR("Diego Giagio <diego@giagio.com>"); | ||
| 567 | MODULE_DESCRIPTION("Apple iPhone USB Ethernet driver"); | ||
| 568 | MODULE_LICENSE("Dual BSD/GPL"); | ||
diff --git a/drivers/net/wireless/iwlwifi/iwl-6000.c b/drivers/net/wireless/iwlwifi/iwl-6000.c index c4844adff92a..92b3e64fc14d 100644 --- a/drivers/net/wireless/iwlwifi/iwl-6000.c +++ b/drivers/net/wireless/iwlwifi/iwl-6000.c | |||
| @@ -259,7 +259,7 @@ static struct iwl_lib_ops iwl6000_lib = { | |||
| 259 | EEPROM_5000_REG_BAND_3_CHANNELS, | 259 | EEPROM_5000_REG_BAND_3_CHANNELS, |
| 260 | EEPROM_5000_REG_BAND_4_CHANNELS, | 260 | EEPROM_5000_REG_BAND_4_CHANNELS, |
| 261 | EEPROM_5000_REG_BAND_5_CHANNELS, | 261 | EEPROM_5000_REG_BAND_5_CHANNELS, |
| 262 | EEPROM_5000_REG_BAND_24_HT40_CHANNELS, | 262 | EEPROM_6000_REG_BAND_24_HT40_CHANNELS, |
| 263 | EEPROM_5000_REG_BAND_52_HT40_CHANNELS | 263 | EEPROM_5000_REG_BAND_52_HT40_CHANNELS |
| 264 | }, | 264 | }, |
| 265 | .verify_signature = iwlcore_eeprom_verify_signature, | 265 | .verify_signature = iwlcore_eeprom_verify_signature, |
| @@ -323,7 +323,7 @@ static struct iwl_lib_ops iwl6050_lib = { | |||
| 323 | EEPROM_5000_REG_BAND_3_CHANNELS, | 323 | EEPROM_5000_REG_BAND_3_CHANNELS, |
| 324 | EEPROM_5000_REG_BAND_4_CHANNELS, | 324 | EEPROM_5000_REG_BAND_4_CHANNELS, |
| 325 | EEPROM_5000_REG_BAND_5_CHANNELS, | 325 | EEPROM_5000_REG_BAND_5_CHANNELS, |
| 326 | EEPROM_5000_REG_BAND_24_HT40_CHANNELS, | 326 | EEPROM_6000_REG_BAND_24_HT40_CHANNELS, |
| 327 | EEPROM_5000_REG_BAND_52_HT40_CHANNELS | 327 | EEPROM_5000_REG_BAND_52_HT40_CHANNELS |
| 328 | }, | 328 | }, |
| 329 | .verify_signature = iwlcore_eeprom_verify_signature, | 329 | .verify_signature = iwlcore_eeprom_verify_signature, |
diff --git a/drivers/net/wireless/iwlwifi/iwl-agn.c b/drivers/net/wireless/iwlwifi/iwl-agn.c index 8b8e3e1cbb44..bdff56583e11 100644 --- a/drivers/net/wireless/iwlwifi/iwl-agn.c +++ b/drivers/net/wireless/iwlwifi/iwl-agn.c | |||
| @@ -3331,6 +3331,7 @@ static void iwl_cancel_deferred_work(struct iwl_priv *priv) | |||
| 3331 | 3331 | ||
| 3332 | cancel_delayed_work_sync(&priv->init_alive_start); | 3332 | cancel_delayed_work_sync(&priv->init_alive_start); |
| 3333 | cancel_delayed_work(&priv->scan_check); | 3333 | cancel_delayed_work(&priv->scan_check); |
| 3334 | cancel_work_sync(&priv->start_internal_scan); | ||
| 3334 | cancel_delayed_work(&priv->alive_start); | 3335 | cancel_delayed_work(&priv->alive_start); |
| 3335 | cancel_work_sync(&priv->beacon_update); | 3336 | cancel_work_sync(&priv->beacon_update); |
| 3336 | del_timer_sync(&priv->statistics_periodic); | 3337 | del_timer_sync(&priv->statistics_periodic); |
diff --git a/drivers/net/wireless/iwlwifi/iwl-core.c b/drivers/net/wireless/iwlwifi/iwl-core.c index 3352f7086632..049b652bcb5e 100644 --- a/drivers/net/wireless/iwlwifi/iwl-core.c +++ b/drivers/net/wireless/iwlwifi/iwl-core.c | |||
| @@ -3358,7 +3358,6 @@ static void iwl_force_rf_reset(struct iwl_priv *priv) | |||
| 3358 | */ | 3358 | */ |
| 3359 | IWL_DEBUG_INFO(priv, "perform radio reset.\n"); | 3359 | IWL_DEBUG_INFO(priv, "perform radio reset.\n"); |
| 3360 | iwl_internal_short_hw_scan(priv); | 3360 | iwl_internal_short_hw_scan(priv); |
| 3361 | return; | ||
| 3362 | } | 3361 | } |
| 3363 | 3362 | ||
| 3364 | 3363 | ||
diff --git a/drivers/net/wireless/iwlwifi/iwl-core.h b/drivers/net/wireless/iwlwifi/iwl-core.h index 732590f5fe30..36940a9ec6b9 100644 --- a/drivers/net/wireless/iwlwifi/iwl-core.h +++ b/drivers/net/wireless/iwlwifi/iwl-core.h | |||
| @@ -506,7 +506,7 @@ void iwl_init_scan_params(struct iwl_priv *priv); | |||
| 506 | int iwl_scan_cancel(struct iwl_priv *priv); | 506 | int iwl_scan_cancel(struct iwl_priv *priv); |
| 507 | int iwl_scan_cancel_timeout(struct iwl_priv *priv, unsigned long ms); | 507 | int iwl_scan_cancel_timeout(struct iwl_priv *priv, unsigned long ms); |
| 508 | int iwl_mac_hw_scan(struct ieee80211_hw *hw, struct cfg80211_scan_request *req); | 508 | int iwl_mac_hw_scan(struct ieee80211_hw *hw, struct cfg80211_scan_request *req); |
| 509 | int iwl_internal_short_hw_scan(struct iwl_priv *priv); | 509 | void iwl_internal_short_hw_scan(struct iwl_priv *priv); |
| 510 | int iwl_force_reset(struct iwl_priv *priv, int mode); | 510 | int iwl_force_reset(struct iwl_priv *priv, int mode); |
| 511 | u16 iwl_fill_probe_req(struct iwl_priv *priv, struct ieee80211_mgmt *frame, | 511 | u16 iwl_fill_probe_req(struct iwl_priv *priv, struct ieee80211_mgmt *frame, |
| 512 | const u8 *ie, int ie_len, int left); | 512 | const u8 *ie, int ie_len, int left); |
diff --git a/drivers/net/wireless/iwlwifi/iwl-dev.h b/drivers/net/wireless/iwlwifi/iwl-dev.h index 6054c5fba0c1..ef1720a852e9 100644 --- a/drivers/net/wireless/iwlwifi/iwl-dev.h +++ b/drivers/net/wireless/iwlwifi/iwl-dev.h | |||
| @@ -1296,6 +1296,7 @@ struct iwl_priv { | |||
| 1296 | struct work_struct tt_work; | 1296 | struct work_struct tt_work; |
| 1297 | struct work_struct ct_enter; | 1297 | struct work_struct ct_enter; |
| 1298 | struct work_struct ct_exit; | 1298 | struct work_struct ct_exit; |
| 1299 | struct work_struct start_internal_scan; | ||
| 1299 | 1300 | ||
| 1300 | struct tasklet_struct irq_tasklet; | 1301 | struct tasklet_struct irq_tasklet; |
| 1301 | 1302 | ||
diff --git a/drivers/net/wireless/iwlwifi/iwl-eeprom.h b/drivers/net/wireless/iwlwifi/iwl-eeprom.h index 4e1ba824dc50..8171c701e4e1 100644 --- a/drivers/net/wireless/iwlwifi/iwl-eeprom.h +++ b/drivers/net/wireless/iwlwifi/iwl-eeprom.h | |||
| @@ -203,6 +203,10 @@ struct iwl_eeprom_enhanced_txpwr { | |||
| 203 | #define EEPROM_5000_REG_BAND_52_HT40_CHANNELS ((0x92)\ | 203 | #define EEPROM_5000_REG_BAND_52_HT40_CHANNELS ((0x92)\ |
| 204 | | INDIRECT_ADDRESS | INDIRECT_REGULATORY) /* 22 bytes */ | 204 | | INDIRECT_ADDRESS | INDIRECT_REGULATORY) /* 22 bytes */ |
| 205 | 205 | ||
| 206 | /* 6000 regulatory - indirect access */ | ||
| 207 | #define EEPROM_6000_REG_BAND_24_HT40_CHANNELS ((0x80)\ | ||
| 208 | | INDIRECT_ADDRESS | INDIRECT_REGULATORY) /* 14 bytes */ | ||
| 209 | |||
| 206 | /* 6000 and up regulatory tx power - indirect access */ | 210 | /* 6000 and up regulatory tx power - indirect access */ |
| 207 | /* max. elements per section */ | 211 | /* max. elements per section */ |
| 208 | #define EEPROM_MAX_TXPOWER_SECTION_ELEMENTS (8) | 212 | #define EEPROM_MAX_TXPOWER_SECTION_ELEMENTS (8) |
diff --git a/drivers/net/wireless/iwlwifi/iwl-scan.c b/drivers/net/wireless/iwlwifi/iwl-scan.c index 9ab0e412bf10..12e455a4b90e 100644 --- a/drivers/net/wireless/iwlwifi/iwl-scan.c +++ b/drivers/net/wireless/iwlwifi/iwl-scan.c | |||
| @@ -470,6 +470,8 @@ EXPORT_SYMBOL(iwl_init_scan_params); | |||
| 470 | 470 | ||
| 471 | static int iwl_scan_initiate(struct iwl_priv *priv) | 471 | static int iwl_scan_initiate(struct iwl_priv *priv) |
| 472 | { | 472 | { |
| 473 | WARN_ON(!mutex_is_locked(&priv->mutex)); | ||
| 474 | |||
| 473 | IWL_DEBUG_INFO(priv, "Starting scan...\n"); | 475 | IWL_DEBUG_INFO(priv, "Starting scan...\n"); |
| 474 | set_bit(STATUS_SCANNING, &priv->status); | 476 | set_bit(STATUS_SCANNING, &priv->status); |
| 475 | priv->is_internal_short_scan = false; | 477 | priv->is_internal_short_scan = false; |
| @@ -547,24 +549,31 @@ EXPORT_SYMBOL(iwl_mac_hw_scan); | |||
| 547 | * internal short scan, this function should only been called while associated. | 549 | * internal short scan, this function should only been called while associated. |
| 548 | * It will reset and tune the radio to prevent possible RF related problem | 550 | * It will reset and tune the radio to prevent possible RF related problem |
| 549 | */ | 551 | */ |
| 550 | int iwl_internal_short_hw_scan(struct iwl_priv *priv) | 552 | void iwl_internal_short_hw_scan(struct iwl_priv *priv) |
| 551 | { | 553 | { |
| 552 | int ret = 0; | 554 | queue_work(priv->workqueue, &priv->start_internal_scan); |
| 555 | } | ||
| 556 | |||
| 557 | static void iwl_bg_start_internal_scan(struct work_struct *work) | ||
| 558 | { | ||
| 559 | struct iwl_priv *priv = | ||
| 560 | container_of(work, struct iwl_priv, start_internal_scan); | ||
| 561 | |||
| 562 | mutex_lock(&priv->mutex); | ||
| 553 | 563 | ||
| 554 | if (!iwl_is_ready_rf(priv)) { | 564 | if (!iwl_is_ready_rf(priv)) { |
| 555 | ret = -EIO; | ||
| 556 | IWL_DEBUG_SCAN(priv, "not ready or exit pending\n"); | 565 | IWL_DEBUG_SCAN(priv, "not ready or exit pending\n"); |
| 557 | goto out; | 566 | goto unlock; |
| 558 | } | 567 | } |
| 568 | |||
| 559 | if (test_bit(STATUS_SCANNING, &priv->status)) { | 569 | if (test_bit(STATUS_SCANNING, &priv->status)) { |
| 560 | IWL_DEBUG_SCAN(priv, "Scan already in progress.\n"); | 570 | IWL_DEBUG_SCAN(priv, "Scan already in progress.\n"); |
| 561 | ret = -EAGAIN; | 571 | goto unlock; |
| 562 | goto out; | ||
| 563 | } | 572 | } |
| 573 | |||
| 564 | if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) { | 574 | if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) { |
| 565 | IWL_DEBUG_SCAN(priv, "Scan request while abort pending\n"); | 575 | IWL_DEBUG_SCAN(priv, "Scan request while abort pending\n"); |
| 566 | ret = -EAGAIN; | 576 | goto unlock; |
| 567 | goto out; | ||
| 568 | } | 577 | } |
| 569 | 578 | ||
| 570 | priv->scan_bands = 0; | 579 | priv->scan_bands = 0; |
| @@ -577,9 +586,8 @@ int iwl_internal_short_hw_scan(struct iwl_priv *priv) | |||
| 577 | set_bit(STATUS_SCANNING, &priv->status); | 586 | set_bit(STATUS_SCANNING, &priv->status); |
| 578 | priv->is_internal_short_scan = true; | 587 | priv->is_internal_short_scan = true; |
| 579 | queue_work(priv->workqueue, &priv->request_scan); | 588 | queue_work(priv->workqueue, &priv->request_scan); |
| 580 | 589 | unlock: | |
| 581 | out: | 590 | mutex_unlock(&priv->mutex); |
| 582 | return ret; | ||
| 583 | } | 591 | } |
| 584 | EXPORT_SYMBOL(iwl_internal_short_hw_scan); | 592 | EXPORT_SYMBOL(iwl_internal_short_hw_scan); |
| 585 | 593 | ||
| @@ -965,6 +973,7 @@ void iwl_setup_scan_deferred_work(struct iwl_priv *priv) | |||
| 965 | INIT_WORK(&priv->scan_completed, iwl_bg_scan_completed); | 973 | INIT_WORK(&priv->scan_completed, iwl_bg_scan_completed); |
| 966 | INIT_WORK(&priv->request_scan, iwl_bg_request_scan); | 974 | INIT_WORK(&priv->request_scan, iwl_bg_request_scan); |
| 967 | INIT_WORK(&priv->abort_scan, iwl_bg_abort_scan); | 975 | INIT_WORK(&priv->abort_scan, iwl_bg_abort_scan); |
| 976 | INIT_WORK(&priv->start_internal_scan, iwl_bg_start_internal_scan); | ||
| 968 | INIT_DELAYED_WORK(&priv->scan_check, iwl_bg_scan_check); | 977 | INIT_DELAYED_WORK(&priv->scan_check, iwl_bg_scan_check); |
| 969 | } | 978 | } |
| 970 | EXPORT_SYMBOL(iwl_setup_scan_deferred_work); | 979 | EXPORT_SYMBOL(iwl_setup_scan_deferred_work); |
diff --git a/net/bridge/br_multicast.c b/net/bridge/br_multicast.c index f29ada827a6a..386c15369d91 100644 --- a/net/bridge/br_multicast.c +++ b/net/bridge/br_multicast.c | |||
| @@ -727,7 +727,7 @@ static int br_multicast_igmp3_report(struct net_bridge *br, | |||
| 727 | group = grec->grec_mca; | 727 | group = grec->grec_mca; |
| 728 | type = grec->grec_type; | 728 | type = grec->grec_type; |
| 729 | 729 | ||
| 730 | len += grec->grec_nsrcs * 4; | 730 | len += ntohs(grec->grec_nsrcs) * 4; |
| 731 | if (!pskb_may_pull(skb, len)) | 731 | if (!pskb_may_pull(skb, len)) |
| 732 | return -EINVAL; | 732 | return -EINVAL; |
| 733 | 733 | ||
diff --git a/net/core/dev.c b/net/core/dev.c index 92584bfef09b..f769098774b7 100644 --- a/net/core/dev.c +++ b/net/core/dev.c | |||
| @@ -1990,7 +1990,7 @@ static struct netdev_queue *dev_pick_tx(struct net_device *dev, | |||
| 1990 | queue_index = skb_tx_hash(dev, skb); | 1990 | queue_index = skb_tx_hash(dev, skb); |
| 1991 | 1991 | ||
| 1992 | if (sk) { | 1992 | if (sk) { |
| 1993 | struct dst_entry *dst = rcu_dereference(sk->sk_dst_cache); | 1993 | struct dst_entry *dst = rcu_dereference_bh(sk->sk_dst_cache); |
| 1994 | 1994 | ||
| 1995 | if (dst && skb_dst(skb) == dst) | 1995 | if (dst && skb_dst(skb) == dst) |
| 1996 | sk_tx_queue_set(sk, queue_index); | 1996 | sk_tx_queue_set(sk, queue_index); |
diff --git a/net/core/rtnetlink.c b/net/core/rtnetlink.c index 4568120d8533..fe776c9ddeca 100644 --- a/net/core/rtnetlink.c +++ b/net/core/rtnetlink.c | |||
| @@ -1270,10 +1270,11 @@ replay: | |||
| 1270 | err = ops->newlink(net, dev, tb, data); | 1270 | err = ops->newlink(net, dev, tb, data); |
| 1271 | else | 1271 | else |
| 1272 | err = register_netdevice(dev); | 1272 | err = register_netdevice(dev); |
| 1273 | if (err < 0 && !IS_ERR(dev)) { | 1273 | |
| 1274 | if (err < 0 && !IS_ERR(dev)) | ||
| 1274 | free_netdev(dev); | 1275 | free_netdev(dev); |
| 1276 | if (err < 0) | ||
| 1275 | goto out; | 1277 | goto out; |
| 1276 | } | ||
| 1277 | 1278 | ||
| 1278 | err = rtnl_configure_link(dev, ifm); | 1279 | err = rtnl_configure_link(dev, ifm); |
| 1279 | if (err < 0) | 1280 | if (err < 0) |
diff --git a/net/ipv4/inet_connection_sock.c b/net/ipv4/inet_connection_sock.c index 8da6429269dd..14825eb09770 100644 --- a/net/ipv4/inet_connection_sock.c +++ b/net/ipv4/inet_connection_sock.c | |||
| @@ -70,13 +70,17 @@ int inet_csk_bind_conflict(const struct sock *sk, | |||
| 70 | (!sk->sk_bound_dev_if || | 70 | (!sk->sk_bound_dev_if || |
| 71 | !sk2->sk_bound_dev_if || | 71 | !sk2->sk_bound_dev_if || |
| 72 | sk->sk_bound_dev_if == sk2->sk_bound_dev_if)) { | 72 | sk->sk_bound_dev_if == sk2->sk_bound_dev_if)) { |
| 73 | const __be32 sk2_rcv_saddr = inet_rcv_saddr(sk2); | ||
| 74 | |||
| 73 | if (!reuse || !sk2->sk_reuse || | 75 | if (!reuse || !sk2->sk_reuse || |
| 74 | sk2->sk_state == TCP_LISTEN) { | 76 | sk2->sk_state == TCP_LISTEN) { |
| 75 | const __be32 sk2_rcv_saddr = inet_rcv_saddr(sk2); | ||
| 76 | if (!sk2_rcv_saddr || !sk_rcv_saddr || | 77 | if (!sk2_rcv_saddr || !sk_rcv_saddr || |
| 77 | sk2_rcv_saddr == sk_rcv_saddr) | 78 | sk2_rcv_saddr == sk_rcv_saddr) |
| 78 | break; | 79 | break; |
| 79 | } | 80 | } else if (reuse && sk2->sk_reuse && |
| 81 | sk2_rcv_saddr && | ||
| 82 | sk2_rcv_saddr == sk_rcv_saddr) | ||
| 83 | break; | ||
| 80 | } | 84 | } |
| 81 | } | 85 | } |
| 82 | return node != NULL; | 86 | return node != NULL; |
| @@ -120,9 +124,11 @@ again: | |||
| 120 | smallest_size = tb->num_owners; | 124 | smallest_size = tb->num_owners; |
| 121 | smallest_rover = rover; | 125 | smallest_rover = rover; |
| 122 | if (atomic_read(&hashinfo->bsockets) > (high - low) + 1) { | 126 | if (atomic_read(&hashinfo->bsockets) > (high - low) + 1) { |
| 123 | spin_unlock(&head->lock); | 127 | if (!inet_csk(sk)->icsk_af_ops->bind_conflict(sk, tb)) { |
| 124 | snum = smallest_rover; | 128 | spin_unlock(&head->lock); |
| 125 | goto have_snum; | 129 | snum = smallest_rover; |
| 130 | goto have_snum; | ||
| 131 | } | ||
| 126 | } | 132 | } |
| 127 | } | 133 | } |
| 128 | goto next; | 134 | goto next; |
diff --git a/net/ipv6/inet6_connection_sock.c b/net/ipv6/inet6_connection_sock.c index 628db24bcf22..b4b7d40a9c95 100644 --- a/net/ipv6/inet6_connection_sock.c +++ b/net/ipv6/inet6_connection_sock.c | |||
| @@ -42,11 +42,16 @@ int inet6_csk_bind_conflict(const struct sock *sk, | |||
| 42 | if (sk != sk2 && | 42 | if (sk != sk2 && |
| 43 | (!sk->sk_bound_dev_if || | 43 | (!sk->sk_bound_dev_if || |
| 44 | !sk2->sk_bound_dev_if || | 44 | !sk2->sk_bound_dev_if || |
| 45 | sk->sk_bound_dev_if == sk2->sk_bound_dev_if) && | 45 | sk->sk_bound_dev_if == sk2->sk_bound_dev_if)) { |
| 46 | (!sk->sk_reuse || !sk2->sk_reuse || | 46 | if ((!sk->sk_reuse || !sk2->sk_reuse || |
| 47 | sk2->sk_state == TCP_LISTEN) && | 47 | sk2->sk_state == TCP_LISTEN) && |
| 48 | ipv6_rcv_saddr_equal(sk, sk2)) | 48 | ipv6_rcv_saddr_equal(sk, sk2)) |
| 49 | break; | 49 | break; |
| 50 | else if (sk->sk_reuse && sk2->sk_reuse && | ||
| 51 | !ipv6_addr_any(inet6_rcv_saddr(sk2)) && | ||
| 52 | ipv6_rcv_saddr_equal(sk, sk2)) | ||
| 53 | break; | ||
| 54 | } | ||
| 50 | } | 55 | } |
| 51 | 56 | ||
| 52 | return node != NULL; | 57 | return node != NULL; |
diff --git a/net/ipv6/ip6_output.c b/net/ipv6/ip6_output.c index 65f9c379df38..75d5ef830097 100644 --- a/net/ipv6/ip6_output.c +++ b/net/ipv6/ip6_output.c | |||
| @@ -629,7 +629,7 @@ static int ip6_fragment(struct sk_buff *skb, int (*output)(struct sk_buff *)) | |||
| 629 | /* We must not fragment if the socket is set to force MTU discovery | 629 | /* We must not fragment if the socket is set to force MTU discovery |
| 630 | * or if the skb it not generated by a local socket. | 630 | * or if the skb it not generated by a local socket. |
| 631 | */ | 631 | */ |
| 632 | if (!skb->local_df) { | 632 | if (!skb->local_df && skb->len > mtu) { |
| 633 | skb->dev = skb_dst(skb)->dev; | 633 | skb->dev = skb_dst(skb)->dev; |
| 634 | icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu); | 634 | icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu); |
| 635 | IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)), | 635 | IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)), |
diff --git a/net/ipv6/route.c b/net/ipv6/route.c index c2438e8cb9d0..05ebd7833043 100644 --- a/net/ipv6/route.c +++ b/net/ipv6/route.c | |||
| @@ -815,7 +815,7 @@ struct dst_entry * ip6_route_output(struct net *net, struct sock *sk, | |||
| 815 | { | 815 | { |
| 816 | int flags = 0; | 816 | int flags = 0; |
| 817 | 817 | ||
| 818 | if (rt6_need_strict(&fl->fl6_dst)) | 818 | if (fl->oif || rt6_need_strict(&fl->fl6_dst)) |
| 819 | flags |= RT6_LOOKUP_F_IFACE; | 819 | flags |= RT6_LOOKUP_F_IFACE; |
| 820 | 820 | ||
| 821 | if (!ipv6_addr_any(&fl->fl6_src)) | 821 | if (!ipv6_addr_any(&fl->fl6_src)) |
diff --git a/net/ipv6/tcp_ipv6.c b/net/ipv6/tcp_ipv6.c index c92ebe8f80d5..075f540ec197 100644 --- a/net/ipv6/tcp_ipv6.c +++ b/net/ipv6/tcp_ipv6.c | |||
| @@ -1015,7 +1015,7 @@ static void tcp_v6_send_response(struct sk_buff *skb, u32 seq, u32 ack, u32 win, | |||
| 1015 | skb_reserve(buff, MAX_HEADER + sizeof(struct ipv6hdr) + tot_len); | 1015 | skb_reserve(buff, MAX_HEADER + sizeof(struct ipv6hdr) + tot_len); |
| 1016 | 1016 | ||
| 1017 | t1 = (struct tcphdr *) skb_push(buff, tot_len); | 1017 | t1 = (struct tcphdr *) skb_push(buff, tot_len); |
| 1018 | skb_reset_transport_header(skb); | 1018 | skb_reset_transport_header(buff); |
| 1019 | 1019 | ||
| 1020 | /* Swap the send and the receive. */ | 1020 | /* Swap the send and the receive. */ |
| 1021 | memset(t1, 0, sizeof(*t1)); | 1021 | memset(t1, 0, sizeof(*t1)); |
diff --git a/net/ipv6/xfrm6_policy.c b/net/ipv6/xfrm6_policy.c index ae181651c75a..00bf7c962b7e 100644 --- a/net/ipv6/xfrm6_policy.c +++ b/net/ipv6/xfrm6_policy.c | |||
| @@ -124,7 +124,7 @@ static int xfrm6_fill_dst(struct xfrm_dst *xdst, struct net_device *dev, | |||
| 124 | xdst->u.dst.dev = dev; | 124 | xdst->u.dst.dev = dev; |
| 125 | dev_hold(dev); | 125 | dev_hold(dev); |
| 126 | 126 | ||
| 127 | xdst->u.rt6.rt6i_idev = in6_dev_get(rt->u.dst.dev); | 127 | xdst->u.rt6.rt6i_idev = in6_dev_get(dev); |
| 128 | if (!xdst->u.rt6.rt6i_idev) | 128 | if (!xdst->u.rt6.rt6i_idev) |
| 129 | return -ENODEV; | 129 | return -ENODEV; |
| 130 | 130 | ||
diff --git a/net/mac80211/agg-tx.c b/net/mac80211/agg-tx.c index 96d25348aa59..87782a4bb541 100644 --- a/net/mac80211/agg-tx.c +++ b/net/mac80211/agg-tx.c | |||
| @@ -184,7 +184,6 @@ static void sta_addba_resp_timer_expired(unsigned long data) | |||
| 184 | HT_AGG_STATE_REQ_STOP_BA_MSK)) != | 184 | HT_AGG_STATE_REQ_STOP_BA_MSK)) != |
| 185 | HT_ADDBA_REQUESTED_MSK) { | 185 | HT_ADDBA_REQUESTED_MSK) { |
| 186 | spin_unlock_bh(&sta->lock); | 186 | spin_unlock_bh(&sta->lock); |
| 187 | *state = HT_AGG_STATE_IDLE; | ||
| 188 | #ifdef CONFIG_MAC80211_HT_DEBUG | 187 | #ifdef CONFIG_MAC80211_HT_DEBUG |
| 189 | printk(KERN_DEBUG "timer expired on tid %d but we are not " | 188 | printk(KERN_DEBUG "timer expired on tid %d but we are not " |
| 190 | "(or no longer) expecting addBA response there", | 189 | "(or no longer) expecting addBA response there", |
diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c index c8cd169fc10e..4aefa6dc3091 100644 --- a/net/mac80211/mlme.c +++ b/net/mac80211/mlme.c | |||
| @@ -168,6 +168,8 @@ static u32 ieee80211_enable_ht(struct ieee80211_sub_if_data *sdata, | |||
| 168 | ht_changed = conf_is_ht(&local->hw.conf) != enable_ht || | 168 | ht_changed = conf_is_ht(&local->hw.conf) != enable_ht || |
| 169 | channel_type != local->hw.conf.channel_type; | 169 | channel_type != local->hw.conf.channel_type; |
| 170 | 170 | ||
| 171 | if (local->tmp_channel) | ||
| 172 | local->tmp_channel_type = channel_type; | ||
| 171 | local->oper_channel_type = channel_type; | 173 | local->oper_channel_type = channel_type; |
| 172 | 174 | ||
| 173 | if (ht_changed) { | 175 | if (ht_changed) { |
diff --git a/net/rds/rdma_transport.c b/net/rds/rdma_transport.c index 9ece910ea394..7b155081b4dc 100644 --- a/net/rds/rdma_transport.c +++ b/net/rds/rdma_transport.c | |||
| @@ -134,7 +134,7 @@ static int __init rds_rdma_listen_init(void) | |||
| 134 | ret = PTR_ERR(cm_id); | 134 | ret = PTR_ERR(cm_id); |
| 135 | printk(KERN_ERR "RDS/RDMA: failed to setup listener, " | 135 | printk(KERN_ERR "RDS/RDMA: failed to setup listener, " |
| 136 | "rdma_create_id() returned %d\n", ret); | 136 | "rdma_create_id() returned %d\n", ret); |
| 137 | goto out; | 137 | return ret; |
| 138 | } | 138 | } |
| 139 | 139 | ||
| 140 | sin.sin_family = AF_INET, | 140 | sin.sin_family = AF_INET, |
diff --git a/net/x25/af_x25.c b/net/x25/af_x25.c index cbddd0cb83f1..36e84e13c6aa 100644 --- a/net/x25/af_x25.c +++ b/net/x25/af_x25.c | |||
| @@ -402,6 +402,7 @@ static void __x25_destroy_socket(struct sock *sk) | |||
| 402 | /* | 402 | /* |
| 403 | * Queue the unaccepted socket for death | 403 | * Queue the unaccepted socket for death |
| 404 | */ | 404 | */ |
| 405 | skb->sk->sk_state = TCP_LISTEN; | ||
| 405 | sock_set_flag(skb->sk, SOCK_DEAD); | 406 | sock_set_flag(skb->sk, SOCK_DEAD); |
| 406 | x25_start_heartbeat(skb->sk); | 407 | x25_start_heartbeat(skb->sk); |
| 407 | x25_sk(skb->sk)->state = X25_STATE_0; | 408 | x25_sk(skb->sk)->state = X25_STATE_0; |
