diff options
60 files changed, 380 insertions, 219 deletions
diff --git a/drivers/net/3c509.c b/drivers/net/3c509.c index 5f25889e27ef..44b28b2d7003 100644 --- a/drivers/net/3c509.c +++ b/drivers/net/3c509.c | |||
| @@ -185,7 +185,7 @@ static int max_interrupt_work = 10; | |||
| 185 | static int nopnp; | 185 | static int nopnp; |
| 186 | #endif | 186 | #endif |
| 187 | 187 | ||
| 188 | static int el3_common_init(struct net_device *dev); | 188 | static int __devinit el3_common_init(struct net_device *dev); |
| 189 | static void el3_common_remove(struct net_device *dev); | 189 | static void el3_common_remove(struct net_device *dev); |
| 190 | static ushort id_read_eeprom(int index); | 190 | static ushort id_read_eeprom(int index); |
| 191 | static ushort read_eeprom(int ioaddr, int index); | 191 | static ushort read_eeprom(int ioaddr, int index); |
| @@ -395,7 +395,7 @@ static struct isa_driver el3_isa_driver = { | |||
| 395 | static int isa_registered; | 395 | static int isa_registered; |
| 396 | 396 | ||
| 397 | #ifdef CONFIG_PNP | 397 | #ifdef CONFIG_PNP |
| 398 | static const struct pnp_device_id el3_pnp_ids[] __devinitconst = { | 398 | static struct pnp_device_id el3_pnp_ids[] = { |
| 399 | { .id = "TCM5090" }, /* 3Com Etherlink III (TP) */ | 399 | { .id = "TCM5090" }, /* 3Com Etherlink III (TP) */ |
| 400 | { .id = "TCM5091" }, /* 3Com Etherlink III */ | 400 | { .id = "TCM5091" }, /* 3Com Etherlink III */ |
| 401 | { .id = "TCM5094" }, /* 3Com Etherlink III (combo) */ | 401 | { .id = "TCM5094" }, /* 3Com Etherlink III (combo) */ |
| @@ -478,7 +478,7 @@ static int pnp_registered; | |||
| 478 | #endif /* CONFIG_PNP */ | 478 | #endif /* CONFIG_PNP */ |
| 479 | 479 | ||
| 480 | #ifdef CONFIG_EISA | 480 | #ifdef CONFIG_EISA |
| 481 | static const struct eisa_device_id el3_eisa_ids[] __devinitconst = { | 481 | static struct eisa_device_id el3_eisa_ids[] = { |
| 482 | { "TCM5090" }, | 482 | { "TCM5090" }, |
| 483 | { "TCM5091" }, | 483 | { "TCM5091" }, |
| 484 | { "TCM5092" }, | 484 | { "TCM5092" }, |
| @@ -508,7 +508,7 @@ static int eisa_registered; | |||
| 508 | #ifdef CONFIG_MCA | 508 | #ifdef CONFIG_MCA |
| 509 | static int el3_mca_probe(struct device *dev); | 509 | static int el3_mca_probe(struct device *dev); |
| 510 | 510 | ||
| 511 | static const short el3_mca_adapter_ids[] __devinitconst = { | 511 | static short el3_mca_adapter_ids[] __initdata = { |
| 512 | 0x627c, | 512 | 0x627c, |
| 513 | 0x627d, | 513 | 0x627d, |
| 514 | 0x62db, | 514 | 0x62db, |
| @@ -517,7 +517,7 @@ static const short el3_mca_adapter_ids[] __devinitconst = { | |||
| 517 | 0x0000 | 517 | 0x0000 |
| 518 | }; | 518 | }; |
| 519 | 519 | ||
| 520 | static const char *const el3_mca_adapter_names[] __devinitconst = { | 520 | static char *el3_mca_adapter_names[] __initdata = { |
| 521 | "3Com 3c529 EtherLink III (10base2)", | 521 | "3Com 3c529 EtherLink III (10base2)", |
| 522 | "3Com 3c529 EtherLink III (10baseT)", | 522 | "3Com 3c529 EtherLink III (10baseT)", |
| 523 | "3Com 3c529 EtherLink III (test mode)", | 523 | "3Com 3c529 EtherLink III (test mode)", |
| @@ -601,7 +601,7 @@ static void el3_common_remove (struct net_device *dev) | |||
| 601 | } | 601 | } |
| 602 | 602 | ||
| 603 | #ifdef CONFIG_MCA | 603 | #ifdef CONFIG_MCA |
| 604 | static int __devinit el3_mca_probe(struct device *device) | 604 | static int __init el3_mca_probe(struct device *device) |
| 605 | { | 605 | { |
| 606 | /* Based on Erik Nygren's (nygren@mit.edu) 3c529 patch, | 606 | /* Based on Erik Nygren's (nygren@mit.edu) 3c529 patch, |
| 607 | * heavily modified by Chris Beauregard | 607 | * heavily modified by Chris Beauregard |
| @@ -671,7 +671,7 @@ static int __devinit el3_mca_probe(struct device *device) | |||
| 671 | #endif /* CONFIG_MCA */ | 671 | #endif /* CONFIG_MCA */ |
| 672 | 672 | ||
| 673 | #ifdef CONFIG_EISA | 673 | #ifdef CONFIG_EISA |
| 674 | static int __devinit el3_eisa_probe (struct device *device) | 674 | static int __init el3_eisa_probe (struct device *device) |
| 675 | { | 675 | { |
| 676 | short i; | 676 | short i; |
| 677 | int ioaddr, irq, if_port; | 677 | int ioaddr, irq, if_port; |
diff --git a/drivers/net/3c59x.c b/drivers/net/3c59x.c index 99f43d275442..8cc22568ebd3 100644 --- a/drivers/net/3c59x.c +++ b/drivers/net/3c59x.c | |||
| @@ -901,14 +901,14 @@ static const struct dev_pm_ops vortex_pm_ops = { | |||
| 901 | #endif /* !CONFIG_PM */ | 901 | #endif /* !CONFIG_PM */ |
| 902 | 902 | ||
| 903 | #ifdef CONFIG_EISA | 903 | #ifdef CONFIG_EISA |
| 904 | static const struct eisa_device_id vortex_eisa_ids[] __devinitconst = { | 904 | static struct eisa_device_id vortex_eisa_ids[] = { |
| 905 | { "TCM5920", CH_3C592 }, | 905 | { "TCM5920", CH_3C592 }, |
| 906 | { "TCM5970", CH_3C597 }, | 906 | { "TCM5970", CH_3C597 }, |
| 907 | { "" } | 907 | { "" } |
| 908 | }; | 908 | }; |
| 909 | MODULE_DEVICE_TABLE(eisa, vortex_eisa_ids); | 909 | MODULE_DEVICE_TABLE(eisa, vortex_eisa_ids); |
| 910 | 910 | ||
| 911 | static int __devinit vortex_eisa_probe(struct device *device) | 911 | static int __init vortex_eisa_probe(struct device *device) |
| 912 | { | 912 | { |
| 913 | void __iomem *ioaddr; | 913 | void __iomem *ioaddr; |
| 914 | struct eisa_device *edev; | 914 | struct eisa_device *edev; |
diff --git a/drivers/net/can/flexcan.c b/drivers/net/can/flexcan.c index d4990568baee..17678117ed69 100644 --- a/drivers/net/can/flexcan.c +++ b/drivers/net/can/flexcan.c | |||
| @@ -923,7 +923,7 @@ static int __devinit flexcan_probe(struct platform_device *pdev) | |||
| 923 | mem_size = resource_size(mem); | 923 | mem_size = resource_size(mem); |
| 924 | if (!request_mem_region(mem->start, mem_size, pdev->name)) { | 924 | if (!request_mem_region(mem->start, mem_size, pdev->name)) { |
| 925 | err = -EBUSY; | 925 | err = -EBUSY; |
| 926 | goto failed_req; | 926 | goto failed_get; |
| 927 | } | 927 | } |
| 928 | 928 | ||
| 929 | base = ioremap(mem->start, mem_size); | 929 | base = ioremap(mem->start, mem_size); |
| @@ -977,9 +977,8 @@ static int __devinit flexcan_probe(struct platform_device *pdev) | |||
| 977 | iounmap(base); | 977 | iounmap(base); |
| 978 | failed_map: | 978 | failed_map: |
| 979 | release_mem_region(mem->start, mem_size); | 979 | release_mem_region(mem->start, mem_size); |
| 980 | failed_req: | ||
| 981 | clk_put(clk); | ||
| 982 | failed_get: | 980 | failed_get: |
| 981 | clk_put(clk); | ||
| 983 | failed_clock: | 982 | failed_clock: |
| 984 | return err; | 983 | return err; |
| 985 | } | 984 | } |
diff --git a/drivers/net/davinci_emac.c b/drivers/net/davinci_emac.c index 29a4f06fbfcf..dcc4a170b0f3 100644 --- a/drivers/net/davinci_emac.c +++ b/drivers/net/davinci_emac.c | |||
| @@ -1781,8 +1781,8 @@ static int __devinit davinci_emac_probe(struct platform_device *pdev) | |||
| 1781 | ndev = alloc_etherdev(sizeof(struct emac_priv)); | 1781 | ndev = alloc_etherdev(sizeof(struct emac_priv)); |
| 1782 | if (!ndev) { | 1782 | if (!ndev) { |
| 1783 | dev_err(&pdev->dev, "error allocating net_device\n"); | 1783 | dev_err(&pdev->dev, "error allocating net_device\n"); |
| 1784 | clk_put(emac_clk); | 1784 | rc = -ENOMEM; |
| 1785 | return -ENOMEM; | 1785 | goto free_clk; |
| 1786 | } | 1786 | } |
| 1787 | 1787 | ||
| 1788 | platform_set_drvdata(pdev, ndev); | 1788 | platform_set_drvdata(pdev, ndev); |
| @@ -1796,7 +1796,8 @@ static int __devinit davinci_emac_probe(struct platform_device *pdev) | |||
| 1796 | pdata = pdev->dev.platform_data; | 1796 | pdata = pdev->dev.platform_data; |
| 1797 | if (!pdata) { | 1797 | if (!pdata) { |
| 1798 | dev_err(&pdev->dev, "no platform data\n"); | 1798 | dev_err(&pdev->dev, "no platform data\n"); |
| 1799 | return -ENODEV; | 1799 | rc = -ENODEV; |
| 1800 | goto probe_quit; | ||
| 1800 | } | 1801 | } |
| 1801 | 1802 | ||
| 1802 | /* MAC addr and PHY mask , RMII enable info from platform_data */ | 1803 | /* MAC addr and PHY mask , RMII enable info from platform_data */ |
| @@ -1929,8 +1930,9 @@ no_dma: | |||
| 1929 | iounmap(priv->remap_addr); | 1930 | iounmap(priv->remap_addr); |
| 1930 | 1931 | ||
| 1931 | probe_quit: | 1932 | probe_quit: |
| 1932 | clk_put(emac_clk); | ||
| 1933 | free_netdev(ndev); | 1933 | free_netdev(ndev); |
| 1934 | free_clk: | ||
| 1935 | clk_put(emac_clk); | ||
| 1934 | return rc; | 1936 | return rc; |
| 1935 | } | 1937 | } |
| 1936 | 1938 | ||
diff --git a/drivers/net/depca.c b/drivers/net/depca.c index 17654059922d..8b0084d17c8c 100644 --- a/drivers/net/depca.c +++ b/drivers/net/depca.c | |||
| @@ -331,18 +331,18 @@ static struct { | |||
| 331 | "DE422",\ | 331 | "DE422",\ |
| 332 | ""} | 332 | ""} |
| 333 | 333 | ||
| 334 | static const char* const depca_signature[] __devinitconst = DEPCA_SIGNATURE; | 334 | static char* __initdata depca_signature[] = DEPCA_SIGNATURE; |
| 335 | 335 | ||
| 336 | enum depca_type { | 336 | enum depca_type { |
| 337 | DEPCA, de100, de101, de200, de201, de202, de210, de212, de422, unknown | 337 | DEPCA, de100, de101, de200, de201, de202, de210, de212, de422, unknown |
| 338 | }; | 338 | }; |
| 339 | 339 | ||
| 340 | static const char depca_string[] = "depca"; | 340 | static char depca_string[] = "depca"; |
| 341 | 341 | ||
| 342 | static int depca_device_remove (struct device *device); | 342 | static int depca_device_remove (struct device *device); |
| 343 | 343 | ||
| 344 | #ifdef CONFIG_EISA | 344 | #ifdef CONFIG_EISA |
| 345 | static const struct eisa_device_id depca_eisa_ids[] __devinitconst = { | 345 | static struct eisa_device_id depca_eisa_ids[] = { |
| 346 | { "DEC4220", de422 }, | 346 | { "DEC4220", de422 }, |
| 347 | { "" } | 347 | { "" } |
| 348 | }; | 348 | }; |
| @@ -367,19 +367,19 @@ static struct eisa_driver depca_eisa_driver = { | |||
| 367 | #define DE210_ID 0x628d | 367 | #define DE210_ID 0x628d |
| 368 | #define DE212_ID 0x6def | 368 | #define DE212_ID 0x6def |
| 369 | 369 | ||
| 370 | static const short depca_mca_adapter_ids[] __devinitconst = { | 370 | static short depca_mca_adapter_ids[] = { |
| 371 | DE210_ID, | 371 | DE210_ID, |
| 372 | DE212_ID, | 372 | DE212_ID, |
| 373 | 0x0000 | 373 | 0x0000 |
| 374 | }; | 374 | }; |
| 375 | 375 | ||
| 376 | static const char *depca_mca_adapter_name[] = { | 376 | static char *depca_mca_adapter_name[] = { |
| 377 | "DEC EtherWORKS MC Adapter (DE210)", | 377 | "DEC EtherWORKS MC Adapter (DE210)", |
| 378 | "DEC EtherWORKS MC Adapter (DE212)", | 378 | "DEC EtherWORKS MC Adapter (DE212)", |
| 379 | NULL | 379 | NULL |
| 380 | }; | 380 | }; |
| 381 | 381 | ||
| 382 | static const enum depca_type depca_mca_adapter_type[] = { | 382 | static enum depca_type depca_mca_adapter_type[] = { |
| 383 | de210, | 383 | de210, |
| 384 | de212, | 384 | de212, |
| 385 | 0 | 385 | 0 |
| @@ -541,9 +541,10 @@ static void SetMulticastFilter(struct net_device *dev); | |||
| 541 | static int load_packet(struct net_device *dev, struct sk_buff *skb); | 541 | static int load_packet(struct net_device *dev, struct sk_buff *skb); |
| 542 | static void depca_dbg_open(struct net_device *dev); | 542 | static void depca_dbg_open(struct net_device *dev); |
| 543 | 543 | ||
| 544 | static const u_char de1xx_irq[] __devinitconst = { 2, 3, 4, 5, 7, 9, 0 }; | 544 | static u_char de1xx_irq[] __initdata = { 2, 3, 4, 5, 7, 9, 0 }; |
| 545 | static const u_char de2xx_irq[] __devinitconst = { 5, 9, 10, 11, 15, 0 }; | 545 | static u_char de2xx_irq[] __initdata = { 5, 9, 10, 11, 15, 0 }; |
| 546 | static const u_char de422_irq[] __devinitconst = { 5, 9, 10, 11, 0 }; | 546 | static u_char de422_irq[] __initdata = { 5, 9, 10, 11, 0 }; |
| 547 | static u_char *depca_irq; | ||
| 547 | 548 | ||
| 548 | static int irq; | 549 | static int irq; |
| 549 | static int io; | 550 | static int io; |
| @@ -579,7 +580,7 @@ static const struct net_device_ops depca_netdev_ops = { | |||
| 579 | .ndo_validate_addr = eth_validate_addr, | 580 | .ndo_validate_addr = eth_validate_addr, |
| 580 | }; | 581 | }; |
| 581 | 582 | ||
| 582 | static int __devinit depca_hw_init (struct net_device *dev, struct device *device) | 583 | static int __init depca_hw_init (struct net_device *dev, struct device *device) |
| 583 | { | 584 | { |
| 584 | struct depca_private *lp; | 585 | struct depca_private *lp; |
| 585 | int i, j, offset, netRAM, mem_len, status = 0; | 586 | int i, j, offset, netRAM, mem_len, status = 0; |
| @@ -747,7 +748,6 @@ static int __devinit depca_hw_init (struct net_device *dev, struct device *devic | |||
| 747 | if (dev->irq < 2) { | 748 | if (dev->irq < 2) { |
| 748 | unsigned char irqnum; | 749 | unsigned char irqnum; |
| 749 | unsigned long irq_mask, delay; | 750 | unsigned long irq_mask, delay; |
| 750 | const u_char *depca_irq; | ||
| 751 | 751 | ||
| 752 | irq_mask = probe_irq_on(); | 752 | irq_mask = probe_irq_on(); |
| 753 | 753 | ||
| @@ -770,7 +770,6 @@ static int __devinit depca_hw_init (struct net_device *dev, struct device *devic | |||
| 770 | break; | 770 | break; |
| 771 | 771 | ||
| 772 | default: | 772 | default: |
| 773 | depca_irq = NULL; | ||
| 774 | break; /* Not reached */ | 773 | break; /* Not reached */ |
| 775 | } | 774 | } |
| 776 | 775 | ||
| @@ -1303,7 +1302,7 @@ static void SetMulticastFilter(struct net_device *dev) | |||
| 1303 | } | 1302 | } |
| 1304 | } | 1303 | } |
| 1305 | 1304 | ||
| 1306 | static int __devinit depca_common_init (u_long ioaddr, struct net_device **devp) | 1305 | static int __init depca_common_init (u_long ioaddr, struct net_device **devp) |
| 1307 | { | 1306 | { |
| 1308 | int status = 0; | 1307 | int status = 0; |
| 1309 | 1308 | ||
| @@ -1334,7 +1333,7 @@ static int __devinit depca_common_init (u_long ioaddr, struct net_device **devp) | |||
| 1334 | /* | 1333 | /* |
| 1335 | ** Microchannel bus I/O device probe | 1334 | ** Microchannel bus I/O device probe |
| 1336 | */ | 1335 | */ |
| 1337 | static int __devinit depca_mca_probe(struct device *device) | 1336 | static int __init depca_mca_probe(struct device *device) |
| 1338 | { | 1337 | { |
| 1339 | unsigned char pos[2]; | 1338 | unsigned char pos[2]; |
| 1340 | unsigned char where; | 1339 | unsigned char where; |
| @@ -1458,7 +1457,7 @@ static int __devinit depca_mca_probe(struct device *device) | |||
| 1458 | ** ISA bus I/O device probe | 1457 | ** ISA bus I/O device probe |
| 1459 | */ | 1458 | */ |
| 1460 | 1459 | ||
| 1461 | static void __devinit depca_platform_probe (void) | 1460 | static void __init depca_platform_probe (void) |
| 1462 | { | 1461 | { |
| 1463 | int i; | 1462 | int i; |
| 1464 | struct platform_device *pldev; | 1463 | struct platform_device *pldev; |
| @@ -1498,7 +1497,7 @@ static void __devinit depca_platform_probe (void) | |||
| 1498 | } | 1497 | } |
| 1499 | } | 1498 | } |
| 1500 | 1499 | ||
| 1501 | static enum depca_type __devinit depca_shmem_probe (ulong *mem_start) | 1500 | static enum depca_type __init depca_shmem_probe (ulong *mem_start) |
| 1502 | { | 1501 | { |
| 1503 | u_long mem_base[] = DEPCA_RAM_BASE_ADDRESSES; | 1502 | u_long mem_base[] = DEPCA_RAM_BASE_ADDRESSES; |
| 1504 | enum depca_type adapter = unknown; | 1503 | enum depca_type adapter = unknown; |
| @@ -1559,7 +1558,7 @@ static int __devinit depca_isa_probe (struct platform_device *device) | |||
| 1559 | */ | 1558 | */ |
| 1560 | 1559 | ||
| 1561 | #ifdef CONFIG_EISA | 1560 | #ifdef CONFIG_EISA |
| 1562 | static int __devinit depca_eisa_probe (struct device *device) | 1561 | static int __init depca_eisa_probe (struct device *device) |
| 1563 | { | 1562 | { |
| 1564 | enum depca_type adapter = unknown; | 1563 | enum depca_type adapter = unknown; |
| 1565 | struct eisa_device *edev; | 1564 | struct eisa_device *edev; |
| @@ -1630,7 +1629,7 @@ static int __devexit depca_device_remove (struct device *device) | |||
| 1630 | ** and Boot (readb) ROM. This will also give us a clue to the network RAM | 1629 | ** and Boot (readb) ROM. This will also give us a clue to the network RAM |
| 1631 | ** base address. | 1630 | ** base address. |
| 1632 | */ | 1631 | */ |
| 1633 | static int __devinit DepcaSignature(char *name, u_long base_addr) | 1632 | static int __init DepcaSignature(char *name, u_long base_addr) |
| 1634 | { | 1633 | { |
| 1635 | u_int i, j, k; | 1634 | u_int i, j, k; |
| 1636 | void __iomem *ptr; | 1635 | void __iomem *ptr; |
diff --git a/drivers/net/dm9000.c b/drivers/net/dm9000.c index fbaff3584bd4..ee597e676ee5 100644 --- a/drivers/net/dm9000.c +++ b/drivers/net/dm9000.c | |||
| @@ -1157,9 +1157,6 @@ dm9000_open(struct net_device *dev) | |||
| 1157 | 1157 | ||
| 1158 | irqflags |= IRQF_SHARED; | 1158 | irqflags |= IRQF_SHARED; |
| 1159 | 1159 | ||
| 1160 | if (request_irq(dev->irq, dm9000_interrupt, irqflags, dev->name, dev)) | ||
| 1161 | return -EAGAIN; | ||
| 1162 | |||
| 1163 | /* GPIO0 on pre-activate PHY, Reg 1F is not set by reset */ | 1160 | /* GPIO0 on pre-activate PHY, Reg 1F is not set by reset */ |
| 1164 | iow(db, DM9000_GPR, 0); /* REG_1F bit0 activate phyxcer */ | 1161 | iow(db, DM9000_GPR, 0); /* REG_1F bit0 activate phyxcer */ |
| 1165 | mdelay(1); /* delay needs by DM9000B */ | 1162 | mdelay(1); /* delay needs by DM9000B */ |
| @@ -1168,6 +1165,9 @@ dm9000_open(struct net_device *dev) | |||
| 1168 | dm9000_reset(db); | 1165 | dm9000_reset(db); |
| 1169 | dm9000_init_dm9000(dev); | 1166 | dm9000_init_dm9000(dev); |
| 1170 | 1167 | ||
| 1168 | if (request_irq(dev->irq, dm9000_interrupt, irqflags, dev->name, dev)) | ||
| 1169 | return -EAGAIN; | ||
| 1170 | |||
| 1171 | /* Init driver variable */ | 1171 | /* Init driver variable */ |
| 1172 | db->dbug_cnt = 0; | 1172 | db->dbug_cnt = 0; |
| 1173 | 1173 | ||
diff --git a/drivers/net/hp100.c b/drivers/net/hp100.c index c52a1df5d922..8e10d2f6a5ad 100644 --- a/drivers/net/hp100.c +++ b/drivers/net/hp100.c | |||
| @@ -188,14 +188,14 @@ struct hp100_private { | |||
| 188 | * variables | 188 | * variables |
| 189 | */ | 189 | */ |
| 190 | #ifdef CONFIG_ISA | 190 | #ifdef CONFIG_ISA |
| 191 | static const char *const hp100_isa_tbl[] __devinitconst = { | 191 | static const char *hp100_isa_tbl[] = { |
| 192 | "HWPF150", /* HP J2573 rev A */ | 192 | "HWPF150", /* HP J2573 rev A */ |
| 193 | "HWP1950", /* HP J2573 */ | 193 | "HWP1950", /* HP J2573 */ |
| 194 | }; | 194 | }; |
| 195 | #endif | 195 | #endif |
| 196 | 196 | ||
| 197 | #ifdef CONFIG_EISA | 197 | #ifdef CONFIG_EISA |
| 198 | static const struct eisa_device_id hp100_eisa_tbl[] __devinitconst = { | 198 | static struct eisa_device_id hp100_eisa_tbl[] = { |
| 199 | { "HWPF180" }, /* HP J2577 rev A */ | 199 | { "HWPF180" }, /* HP J2577 rev A */ |
| 200 | { "HWP1920" }, /* HP 27248B */ | 200 | { "HWP1920" }, /* HP 27248B */ |
| 201 | { "HWP1940" }, /* HP J2577 */ | 201 | { "HWP1940" }, /* HP J2577 */ |
| @@ -336,7 +336,7 @@ static __devinit const char *hp100_read_id(int ioaddr) | |||
| 336 | } | 336 | } |
| 337 | 337 | ||
| 338 | #ifdef CONFIG_ISA | 338 | #ifdef CONFIG_ISA |
| 339 | static __devinit int hp100_isa_probe1(struct net_device *dev, int ioaddr) | 339 | static __init int hp100_isa_probe1(struct net_device *dev, int ioaddr) |
| 340 | { | 340 | { |
| 341 | const char *sig; | 341 | const char *sig; |
| 342 | int i; | 342 | int i; |
| @@ -372,7 +372,7 @@ static __devinit int hp100_isa_probe1(struct net_device *dev, int ioaddr) | |||
| 372 | * EISA and PCI are handled by device infrastructure. | 372 | * EISA and PCI are handled by device infrastructure. |
| 373 | */ | 373 | */ |
| 374 | 374 | ||
| 375 | static int __devinit hp100_isa_probe(struct net_device *dev, int addr) | 375 | static int __init hp100_isa_probe(struct net_device *dev, int addr) |
| 376 | { | 376 | { |
| 377 | int err = -ENODEV; | 377 | int err = -ENODEV; |
| 378 | 378 | ||
| @@ -396,7 +396,7 @@ static int __devinit hp100_isa_probe(struct net_device *dev, int addr) | |||
| 396 | #endif /* CONFIG_ISA */ | 396 | #endif /* CONFIG_ISA */ |
| 397 | 397 | ||
| 398 | #if !defined(MODULE) && defined(CONFIG_ISA) | 398 | #if !defined(MODULE) && defined(CONFIG_ISA) |
| 399 | struct net_device * __devinit hp100_probe(int unit) | 399 | struct net_device * __init hp100_probe(int unit) |
| 400 | { | 400 | { |
| 401 | struct net_device *dev = alloc_etherdev(sizeof(struct hp100_private)); | 401 | struct net_device *dev = alloc_etherdev(sizeof(struct hp100_private)); |
| 402 | int err; | 402 | int err; |
| @@ -2843,7 +2843,7 @@ static void cleanup_dev(struct net_device *d) | |||
| 2843 | } | 2843 | } |
| 2844 | 2844 | ||
| 2845 | #ifdef CONFIG_EISA | 2845 | #ifdef CONFIG_EISA |
| 2846 | static int __devinit hp100_eisa_probe (struct device *gendev) | 2846 | static int __init hp100_eisa_probe (struct device *gendev) |
| 2847 | { | 2847 | { |
| 2848 | struct net_device *dev = alloc_etherdev(sizeof(struct hp100_private)); | 2848 | struct net_device *dev = alloc_etherdev(sizeof(struct hp100_private)); |
| 2849 | struct eisa_device *edev = to_eisa_device(gendev); | 2849 | struct eisa_device *edev = to_eisa_device(gendev); |
diff --git a/drivers/net/ibmlana.c b/drivers/net/ibmlana.c index 136d7544cc33..a7d6cad32953 100644 --- a/drivers/net/ibmlana.c +++ b/drivers/net/ibmlana.c | |||
| @@ -895,12 +895,12 @@ static int ibmlana_irq; | |||
| 895 | static int ibmlana_io; | 895 | static int ibmlana_io; |
| 896 | static int startslot; /* counts through slots when probing multiple devices */ | 896 | static int startslot; /* counts through slots when probing multiple devices */ |
| 897 | 897 | ||
| 898 | static const short ibmlana_adapter_ids[] __devinitconst = { | 898 | static short ibmlana_adapter_ids[] __initdata = { |
| 899 | IBM_LANA_ID, | 899 | IBM_LANA_ID, |
| 900 | 0x0000 | 900 | 0x0000 |
| 901 | }; | 901 | }; |
| 902 | 902 | ||
| 903 | static const char *const ibmlana_adapter_names[] __devinitconst = { | 903 | static char *ibmlana_adapter_names[] __devinitdata = { |
| 904 | "IBM LAN Adapter/A", | 904 | "IBM LAN Adapter/A", |
| 905 | NULL | 905 | NULL |
| 906 | }; | 906 | }; |
diff --git a/drivers/net/irda/smsc-ircc2.c b/drivers/net/irda/smsc-ircc2.c index 69b5707db369..8800e1fe4129 100644 --- a/drivers/net/irda/smsc-ircc2.c +++ b/drivers/net/irda/smsc-ircc2.c | |||
| @@ -222,19 +222,19 @@ static void smsc_ircc_set_transceiver_for_speed(struct smsc_ircc_cb *self, u32 s | |||
| 222 | static void smsc_ircc_sir_wait_hw_transmitter_finish(struct smsc_ircc_cb *self); | 222 | static void smsc_ircc_sir_wait_hw_transmitter_finish(struct smsc_ircc_cb *self); |
| 223 | 223 | ||
| 224 | /* Probing */ | 224 | /* Probing */ |
| 225 | static int smsc_ircc_look_for_chips(void); | 225 | static int __init smsc_ircc_look_for_chips(void); |
| 226 | static const struct smsc_chip * smsc_ircc_probe(unsigned short cfg_base, u8 reg, const struct smsc_chip *chip, char *type); | 226 | static const struct smsc_chip * __init smsc_ircc_probe(unsigned short cfg_base, u8 reg, const struct smsc_chip *chip, char *type); |
| 227 | static int smsc_superio_flat(const struct smsc_chip *chips, unsigned short cfg_base, char *type); | 227 | static int __init smsc_superio_flat(const struct smsc_chip *chips, unsigned short cfg_base, char *type); |
| 228 | static int smsc_superio_paged(const struct smsc_chip *chips, unsigned short cfg_base, char *type); | 228 | static int __init smsc_superio_paged(const struct smsc_chip *chips, unsigned short cfg_base, char *type); |
| 229 | static int smsc_superio_fdc(unsigned short cfg_base); | 229 | static int __init smsc_superio_fdc(unsigned short cfg_base); |
| 230 | static int smsc_superio_lpc(unsigned short cfg_base); | 230 | static int __init smsc_superio_lpc(unsigned short cfg_base); |
| 231 | #ifdef CONFIG_PCI | 231 | #ifdef CONFIG_PCI |
| 232 | static int preconfigure_smsc_chip(struct smsc_ircc_subsystem_configuration *conf); | 232 | static int __init preconfigure_smsc_chip(struct smsc_ircc_subsystem_configuration *conf); |
| 233 | static int preconfigure_through_82801(struct pci_dev *dev, struct smsc_ircc_subsystem_configuration *conf); | 233 | static int __init preconfigure_through_82801(struct pci_dev *dev, struct smsc_ircc_subsystem_configuration *conf); |
| 234 | static void preconfigure_ali_port(struct pci_dev *dev, | 234 | static void __init preconfigure_ali_port(struct pci_dev *dev, |
| 235 | unsigned short port); | 235 | unsigned short port); |
| 236 | static int preconfigure_through_ali(struct pci_dev *dev, struct smsc_ircc_subsystem_configuration *conf); | 236 | static int __init preconfigure_through_ali(struct pci_dev *dev, struct smsc_ircc_subsystem_configuration *conf); |
| 237 | static int smsc_ircc_preconfigure_subsystems(unsigned short ircc_cfg, | 237 | static int __init smsc_ircc_preconfigure_subsystems(unsigned short ircc_cfg, |
| 238 | unsigned short ircc_fir, | 238 | unsigned short ircc_fir, |
| 239 | unsigned short ircc_sir, | 239 | unsigned short ircc_sir, |
| 240 | unsigned char ircc_dma, | 240 | unsigned char ircc_dma, |
| @@ -366,7 +366,7 @@ static inline void register_bank(int iobase, int bank) | |||
| 366 | } | 366 | } |
| 367 | 367 | ||
| 368 | /* PNP hotplug support */ | 368 | /* PNP hotplug support */ |
| 369 | static const struct pnp_device_id smsc_ircc_pnp_table[] __devinitconst = { | 369 | static const struct pnp_device_id smsc_ircc_pnp_table[] = { |
| 370 | { .id = "SMCf010", .driver_data = 0 }, | 370 | { .id = "SMCf010", .driver_data = 0 }, |
| 371 | /* and presumably others */ | 371 | /* and presumably others */ |
| 372 | { } | 372 | { } |
| @@ -515,7 +515,7 @@ static const struct net_device_ops smsc_ircc_netdev_ops = { | |||
| 515 | * Try to open driver instance | 515 | * Try to open driver instance |
| 516 | * | 516 | * |
| 517 | */ | 517 | */ |
| 518 | static int __devinit smsc_ircc_open(unsigned int fir_base, unsigned int sir_base, u8 dma, u8 irq) | 518 | static int __init smsc_ircc_open(unsigned int fir_base, unsigned int sir_base, u8 dma, u8 irq) |
| 519 | { | 519 | { |
| 520 | struct smsc_ircc_cb *self; | 520 | struct smsc_ircc_cb *self; |
| 521 | struct net_device *dev; | 521 | struct net_device *dev; |
| @@ -2273,7 +2273,7 @@ static int __init smsc_superio_paged(const struct smsc_chip *chips, unsigned sho | |||
| 2273 | } | 2273 | } |
| 2274 | 2274 | ||
| 2275 | 2275 | ||
| 2276 | static int __devinit smsc_access(unsigned short cfg_base, unsigned char reg) | 2276 | static int __init smsc_access(unsigned short cfg_base, unsigned char reg) |
| 2277 | { | 2277 | { |
| 2278 | IRDA_DEBUG(1, "%s\n", __func__); | 2278 | IRDA_DEBUG(1, "%s\n", __func__); |
| 2279 | 2279 | ||
| @@ -2281,7 +2281,7 @@ static int __devinit smsc_access(unsigned short cfg_base, unsigned char reg) | |||
| 2281 | return inb(cfg_base) != reg ? -1 : 0; | 2281 | return inb(cfg_base) != reg ? -1 : 0; |
| 2282 | } | 2282 | } |
| 2283 | 2283 | ||
| 2284 | static const struct smsc_chip * __devinit smsc_ircc_probe(unsigned short cfg_base, u8 reg, const struct smsc_chip *chip, char *type) | 2284 | static const struct smsc_chip * __init smsc_ircc_probe(unsigned short cfg_base, u8 reg, const struct smsc_chip *chip, char *type) |
| 2285 | { | 2285 | { |
| 2286 | u8 devid, xdevid, rev; | 2286 | u8 devid, xdevid, rev; |
| 2287 | 2287 | ||
| @@ -2406,7 +2406,7 @@ static int __init smsc_superio_lpc(unsigned short cfg_base) | |||
| 2406 | #ifdef CONFIG_PCI | 2406 | #ifdef CONFIG_PCI |
| 2407 | #define PCIID_VENDOR_INTEL 0x8086 | 2407 | #define PCIID_VENDOR_INTEL 0x8086 |
| 2408 | #define PCIID_VENDOR_ALI 0x10b9 | 2408 | #define PCIID_VENDOR_ALI 0x10b9 |
| 2409 | static const struct smsc_ircc_subsystem_configuration subsystem_configurations[] __devinitconst = { | 2409 | static struct smsc_ircc_subsystem_configuration subsystem_configurations[] __initdata = { |
| 2410 | /* | 2410 | /* |
| 2411 | * Subsystems needing entries: | 2411 | * Subsystems needing entries: |
| 2412 | * 0x10b9:0x1533 0x103c:0x0850 HP nx9010 family | 2412 | * 0x10b9:0x1533 0x103c:0x0850 HP nx9010 family |
| @@ -2532,7 +2532,7 @@ static const struct smsc_ircc_subsystem_configuration subsystem_configurations[] | |||
| 2532 | * (FIR port, SIR port, FIR DMA, FIR IRQ) | 2532 | * (FIR port, SIR port, FIR DMA, FIR IRQ) |
| 2533 | * through the chip configuration port. | 2533 | * through the chip configuration port. |
| 2534 | */ | 2534 | */ |
| 2535 | static int __devinit preconfigure_smsc_chip(struct | 2535 | static int __init preconfigure_smsc_chip(struct |
| 2536 | smsc_ircc_subsystem_configuration | 2536 | smsc_ircc_subsystem_configuration |
| 2537 | *conf) | 2537 | *conf) |
| 2538 | { | 2538 | { |
| @@ -2633,7 +2633,7 @@ static int __devinit preconfigure_smsc_chip(struct | |||
| 2633 | * or Intel 82801DB/DBL (ICH4/ICH4-L) LPC Interface Bridge. | 2633 | * or Intel 82801DB/DBL (ICH4/ICH4-L) LPC Interface Bridge. |
| 2634 | * They all work the same way! | 2634 | * They all work the same way! |
| 2635 | */ | 2635 | */ |
| 2636 | static int __devinit preconfigure_through_82801(struct pci_dev *dev, | 2636 | static int __init preconfigure_through_82801(struct pci_dev *dev, |
| 2637 | struct | 2637 | struct |
| 2638 | smsc_ircc_subsystem_configuration | 2638 | smsc_ircc_subsystem_configuration |
| 2639 | *conf) | 2639 | *conf) |
| @@ -2786,7 +2786,7 @@ static int __devinit preconfigure_through_82801(struct pci_dev *dev, | |||
| 2786 | * This is based on reverse-engineering since ALi does not | 2786 | * This is based on reverse-engineering since ALi does not |
| 2787 | * provide any data sheet for the 1533 chip. | 2787 | * provide any data sheet for the 1533 chip. |
| 2788 | */ | 2788 | */ |
| 2789 | static void __devinit preconfigure_ali_port(struct pci_dev *dev, | 2789 | static void __init preconfigure_ali_port(struct pci_dev *dev, |
| 2790 | unsigned short port) | 2790 | unsigned short port) |
| 2791 | { | 2791 | { |
| 2792 | unsigned char reg; | 2792 | unsigned char reg; |
| @@ -2824,7 +2824,7 @@ static void __devinit preconfigure_ali_port(struct pci_dev *dev, | |||
| 2824 | IRDA_MESSAGE("Activated ALi 1533 ISA bridge port 0x%04x.\n", port); | 2824 | IRDA_MESSAGE("Activated ALi 1533 ISA bridge port 0x%04x.\n", port); |
| 2825 | } | 2825 | } |
| 2826 | 2826 | ||
| 2827 | static int __devinit preconfigure_through_ali(struct pci_dev *dev, | 2827 | static int __init preconfigure_through_ali(struct pci_dev *dev, |
| 2828 | struct | 2828 | struct |
| 2829 | smsc_ircc_subsystem_configuration | 2829 | smsc_ircc_subsystem_configuration |
| 2830 | *conf) | 2830 | *conf) |
| @@ -2837,7 +2837,7 @@ static int __devinit preconfigure_through_ali(struct pci_dev *dev, | |||
| 2837 | return preconfigure_smsc_chip(conf); | 2837 | return preconfigure_smsc_chip(conf); |
| 2838 | } | 2838 | } |
| 2839 | 2839 | ||
| 2840 | static int __devinit smsc_ircc_preconfigure_subsystems(unsigned short ircc_cfg, | 2840 | static int __init smsc_ircc_preconfigure_subsystems(unsigned short ircc_cfg, |
| 2841 | unsigned short ircc_fir, | 2841 | unsigned short ircc_fir, |
| 2842 | unsigned short ircc_sir, | 2842 | unsigned short ircc_sir, |
| 2843 | unsigned char ircc_dma, | 2843 | unsigned char ircc_dma, |
| @@ -2849,7 +2849,7 @@ static int __devinit smsc_ircc_preconfigure_subsystems(unsigned short ircc_cfg, | |||
| 2849 | int ret = 0; | 2849 | int ret = 0; |
| 2850 | 2850 | ||
| 2851 | for_each_pci_dev(dev) { | 2851 | for_each_pci_dev(dev) { |
| 2852 | const struct smsc_ircc_subsystem_configuration *conf; | 2852 | struct smsc_ircc_subsystem_configuration *conf; |
| 2853 | 2853 | ||
| 2854 | /* | 2854 | /* |
| 2855 | * Cache the subsystem vendor/device: | 2855 | * Cache the subsystem vendor/device: |
diff --git a/drivers/net/ks8842.c b/drivers/net/ks8842.c index 4d40626b3bfa..fc12ac0d9f2e 100644 --- a/drivers/net/ks8842.c +++ b/drivers/net/ks8842.c | |||
| @@ -661,7 +661,7 @@ static void ks8842_rx_frame(struct net_device *netdev, | |||
| 661 | 661 | ||
| 662 | /* check the status */ | 662 | /* check the status */ |
| 663 | if ((status & RXSR_VALID) && !(status & RXSR_ERROR)) { | 663 | if ((status & RXSR_VALID) && !(status & RXSR_ERROR)) { |
| 664 | struct sk_buff *skb = netdev_alloc_skb_ip_align(netdev, len); | 664 | struct sk_buff *skb = netdev_alloc_skb_ip_align(netdev, len + 3); |
| 665 | 665 | ||
| 666 | if (skb) { | 666 | if (skb) { |
| 667 | 667 | ||
diff --git a/drivers/net/ne3210.c b/drivers/net/ne3210.c index e8984b0ca521..243ed2aee88e 100644 --- a/drivers/net/ne3210.c +++ b/drivers/net/ne3210.c | |||
| @@ -80,20 +80,17 @@ static void ne3210_block_output(struct net_device *dev, int count, const unsigne | |||
| 80 | 80 | ||
| 81 | #define NE3210_DEBUG 0x0 | 81 | #define NE3210_DEBUG 0x0 |
| 82 | 82 | ||
| 83 | static const unsigned char irq_map[] __devinitconst = | 83 | static unsigned char irq_map[] __initdata = {15, 12, 11, 10, 9, 7, 5, 3}; |
| 84 | { 15, 12, 11, 10, 9, 7, 5, 3 }; | 84 | static unsigned int shmem_map[] __initdata = {0xff0, 0xfe0, 0xfff0, 0xd8, 0xffe0, 0xffc0, 0xd0, 0x0}; |
| 85 | static const unsigned int shmem_map[] __devinitconst = | 85 | static const char *ifmap[] __initdata = {"UTP", "?", "BNC", "AUI"}; |
| 86 | { 0xff0, 0xfe0, 0xfff0, 0xd8, 0xffe0, 0xffc0, 0xd0, 0x0 }; | 86 | static int ifmap_val[] __initdata = { |
| 87 | static const char *const ifmap[] __devinitconst = | ||
| 88 | { "UTP", "?", "BNC", "AUI" }; | ||
| 89 | static const int ifmap_val[] __devinitconst = { | ||
| 90 | IF_PORT_10BASET, | 87 | IF_PORT_10BASET, |
| 91 | IF_PORT_UNKNOWN, | 88 | IF_PORT_UNKNOWN, |
| 92 | IF_PORT_10BASE2, | 89 | IF_PORT_10BASE2, |
| 93 | IF_PORT_AUI, | 90 | IF_PORT_AUI, |
| 94 | }; | 91 | }; |
| 95 | 92 | ||
| 96 | static int __devinit ne3210_eisa_probe (struct device *device) | 93 | static int __init ne3210_eisa_probe (struct device *device) |
| 97 | { | 94 | { |
| 98 | unsigned long ioaddr, phys_mem; | 95 | unsigned long ioaddr, phys_mem; |
| 99 | int i, retval, port_index; | 96 | int i, retval, port_index; |
| @@ -316,7 +313,7 @@ static void ne3210_block_output(struct net_device *dev, int count, | |||
| 316 | memcpy_toio(shmem, buf, count); | 313 | memcpy_toio(shmem, buf, count); |
| 317 | } | 314 | } |
| 318 | 315 | ||
| 319 | static const struct eisa_device_id ne3210_ids[] __devinitconst = { | 316 | static struct eisa_device_id ne3210_ids[] = { |
| 320 | { "EGL0101" }, | 317 | { "EGL0101" }, |
| 321 | { "NVL1801" }, | 318 | { "NVL1801" }, |
| 322 | { "" }, | 319 | { "" }, |
diff --git a/drivers/net/smc-mca.c b/drivers/net/smc-mca.c index 0f29f261fcfe..d07c39cb4daf 100644 --- a/drivers/net/smc-mca.c +++ b/drivers/net/smc-mca.c | |||
| @@ -156,7 +156,7 @@ static const struct { | |||
| 156 | { 14, 15 } | 156 | { 14, 15 } |
| 157 | }; | 157 | }; |
| 158 | 158 | ||
| 159 | static const short smc_mca_adapter_ids[] __devinitconst = { | 159 | static short smc_mca_adapter_ids[] __initdata = { |
| 160 | 0x61c8, | 160 | 0x61c8, |
| 161 | 0x61c9, | 161 | 0x61c9, |
| 162 | 0x6fc0, | 162 | 0x6fc0, |
| @@ -168,7 +168,7 @@ static const short smc_mca_adapter_ids[] __devinitconst = { | |||
| 168 | 0x0000 | 168 | 0x0000 |
| 169 | }; | 169 | }; |
| 170 | 170 | ||
| 171 | static const char *const smc_mca_adapter_names[] __devinitconst = { | 171 | static char *smc_mca_adapter_names[] __initdata = { |
| 172 | "SMC Ethercard PLUS Elite/A BNC/AUI (WD8013EP/A)", | 172 | "SMC Ethercard PLUS Elite/A BNC/AUI (WD8013EP/A)", |
| 173 | "SMC Ethercard PLUS Elite/A UTP/AUI (WD8013WP/A)", | 173 | "SMC Ethercard PLUS Elite/A UTP/AUI (WD8013WP/A)", |
| 174 | "WD Ethercard PLUS/A (WD8003E/A or WD8003ET/A)", | 174 | "WD Ethercard PLUS/A (WD8003E/A or WD8003ET/A)", |
| @@ -199,7 +199,7 @@ static const struct net_device_ops ultramca_netdev_ops = { | |||
| 199 | #endif | 199 | #endif |
| 200 | }; | 200 | }; |
| 201 | 201 | ||
| 202 | static int __devinit ultramca_probe(struct device *gen_dev) | 202 | static int __init ultramca_probe(struct device *gen_dev) |
| 203 | { | 203 | { |
| 204 | unsigned short ioaddr; | 204 | unsigned short ioaddr; |
| 205 | struct net_device *dev; | 205 | struct net_device *dev; |
diff --git a/drivers/net/tg3.c b/drivers/net/tg3.c index f4b01c638a33..a1f9f9eef37d 100644 --- a/drivers/net/tg3.c +++ b/drivers/net/tg3.c | |||
| @@ -5774,7 +5774,7 @@ static void tg3_skb_error_unmap(struct tg3_napi *tnapi, | |||
| 5774 | dma_unmap_addr(txb, mapping), | 5774 | dma_unmap_addr(txb, mapping), |
| 5775 | skb_headlen(skb), | 5775 | skb_headlen(skb), |
| 5776 | PCI_DMA_TODEVICE); | 5776 | PCI_DMA_TODEVICE); |
| 5777 | for (i = 0; i <= last; i++) { | 5777 | for (i = 0; i < last; i++) { |
| 5778 | skb_frag_t *frag = &skb_shinfo(skb)->frags[i]; | 5778 | skb_frag_t *frag = &skb_shinfo(skb)->frags[i]; |
| 5779 | 5779 | ||
| 5780 | entry = NEXT_TX(entry); | 5780 | entry = NEXT_TX(entry); |
diff --git a/drivers/net/tokenring/madgemc.c b/drivers/net/tokenring/madgemc.c index 1313aa1315f0..2bedc0ace812 100644 --- a/drivers/net/tokenring/madgemc.c +++ b/drivers/net/tokenring/madgemc.c | |||
| @@ -727,7 +727,7 @@ static int __devexit madgemc_remove(struct device *device) | |||
| 727 | return 0; | 727 | return 0; |
| 728 | } | 728 | } |
| 729 | 729 | ||
| 730 | static const short madgemc_adapter_ids[] __devinitconst = { | 730 | static short madgemc_adapter_ids[] __initdata = { |
| 731 | 0x002d, | 731 | 0x002d, |
| 732 | 0x0000 | 732 | 0x0000 |
| 733 | }; | 733 | }; |
diff --git a/drivers/net/tulip/de4x5.c b/drivers/net/tulip/de4x5.c index 45144d5bd11b..efaa1d69b720 100644 --- a/drivers/net/tulip/de4x5.c +++ b/drivers/net/tulip/de4x5.c | |||
| @@ -1995,7 +1995,7 @@ SetMulticastFilter(struct net_device *dev) | |||
| 1995 | 1995 | ||
| 1996 | static u_char de4x5_irq[] = EISA_ALLOWED_IRQ_LIST; | 1996 | static u_char de4x5_irq[] = EISA_ALLOWED_IRQ_LIST; |
| 1997 | 1997 | ||
| 1998 | static int __devinit de4x5_eisa_probe (struct device *gendev) | 1998 | static int __init de4x5_eisa_probe (struct device *gendev) |
| 1999 | { | 1999 | { |
| 2000 | struct eisa_device *edev; | 2000 | struct eisa_device *edev; |
| 2001 | u_long iobase; | 2001 | u_long iobase; |
| @@ -2097,7 +2097,7 @@ static int __devexit de4x5_eisa_remove (struct device *device) | |||
| 2097 | return 0; | 2097 | return 0; |
| 2098 | } | 2098 | } |
| 2099 | 2099 | ||
| 2100 | static const struct eisa_device_id de4x5_eisa_ids[] __devinitconst = { | 2100 | static struct eisa_device_id de4x5_eisa_ids[] = { |
| 2101 | { "DEC4250", 0 }, /* 0 is the board name index... */ | 2101 | { "DEC4250", 0 }, /* 0 is the board name index... */ |
| 2102 | { "" } | 2102 | { "" } |
| 2103 | }; | 2103 | }; |
diff --git a/drivers/net/usb/catc.c b/drivers/net/usb/catc.c index d7221c4a5dcf..8056f8a27c6a 100644 --- a/drivers/net/usb/catc.c +++ b/drivers/net/usb/catc.c | |||
| @@ -495,7 +495,7 @@ static void catc_ctrl_run(struct catc *catc) | |||
| 495 | if (!q->dir && q->buf && q->len) | 495 | if (!q->dir && q->buf && q->len) |
| 496 | memcpy(catc->ctrl_buf, q->buf, q->len); | 496 | memcpy(catc->ctrl_buf, q->buf, q->len); |
| 497 | 497 | ||
| 498 | if ((status = usb_submit_urb(catc->ctrl_urb, GFP_KERNEL))) | 498 | if ((status = usb_submit_urb(catc->ctrl_urb, GFP_ATOMIC))) |
| 499 | err("submit(ctrl_urb) status %d", status); | 499 | err("submit(ctrl_urb) status %d", status); |
| 500 | } | 500 | } |
| 501 | 501 | ||
diff --git a/drivers/net/usb/cdc_ncm.c b/drivers/net/usb/cdc_ncm.c index cdd3ae486109..f33ca6aa29e9 100644 --- a/drivers/net/usb/cdc_ncm.c +++ b/drivers/net/usb/cdc_ncm.c | |||
| @@ -54,7 +54,7 @@ | |||
| 54 | #include <linux/usb/usbnet.h> | 54 | #include <linux/usb/usbnet.h> |
| 55 | #include <linux/usb/cdc.h> | 55 | #include <linux/usb/cdc.h> |
| 56 | 56 | ||
| 57 | #define DRIVER_VERSION "24-May-2011" | 57 | #define DRIVER_VERSION "01-June-2011" |
| 58 | 58 | ||
| 59 | /* CDC NCM subclass 3.2.1 */ | 59 | /* CDC NCM subclass 3.2.1 */ |
| 60 | #define USB_CDC_NCM_NDP16_LENGTH_MIN 0x10 | 60 | #define USB_CDC_NCM_NDP16_LENGTH_MIN 0x10 |
| @@ -1234,6 +1234,7 @@ static struct usb_driver cdc_ncm_driver = { | |||
| 1234 | .disconnect = cdc_ncm_disconnect, | 1234 | .disconnect = cdc_ncm_disconnect, |
| 1235 | .suspend = usbnet_suspend, | 1235 | .suspend = usbnet_suspend, |
| 1236 | .resume = usbnet_resume, | 1236 | .resume = usbnet_resume, |
| 1237 | .reset_resume = usbnet_resume, | ||
| 1237 | .supports_autosuspend = 1, | 1238 | .supports_autosuspend = 1, |
| 1238 | }; | 1239 | }; |
| 1239 | 1240 | ||
diff --git a/drivers/net/wireless/ath/ath9k/Kconfig b/drivers/net/wireless/ath/ath9k/Kconfig index d9ff8413ab9a..d9c08c619a3a 100644 --- a/drivers/net/wireless/ath/ath9k/Kconfig +++ b/drivers/net/wireless/ath/ath9k/Kconfig | |||
| @@ -26,7 +26,6 @@ config ATH9K | |||
| 26 | config ATH9K_PCI | 26 | config ATH9K_PCI |
| 27 | bool "Atheros ath9k PCI/PCIe bus support" | 27 | bool "Atheros ath9k PCI/PCIe bus support" |
| 28 | depends on ATH9K && PCI | 28 | depends on ATH9K && PCI |
| 29 | default PCI | ||
| 30 | ---help--- | 29 | ---help--- |
| 31 | This option enables the PCI bus support in ath9k. | 30 | This option enables the PCI bus support in ath9k. |
| 32 | 31 | ||
diff --git a/drivers/net/wireless/ath/ath9k/ar9002_calib.c b/drivers/net/wireless/ath/ath9k/ar9002_calib.c index 015d97439935..2d4c0910295b 100644 --- a/drivers/net/wireless/ath/ath9k/ar9002_calib.c +++ b/drivers/net/wireless/ath/ath9k/ar9002_calib.c | |||
| @@ -829,7 +829,7 @@ static bool ar9002_hw_init_cal(struct ath_hw *ah, struct ath9k_channel *chan) | |||
| 829 | if (AR_SREV_9271(ah)) { | 829 | if (AR_SREV_9271(ah)) { |
| 830 | if (!ar9285_hw_cl_cal(ah, chan)) | 830 | if (!ar9285_hw_cl_cal(ah, chan)) |
| 831 | return false; | 831 | return false; |
| 832 | } else if (AR_SREV_9285_12_OR_LATER(ah)) { | 832 | } else if (AR_SREV_9285(ah) && AR_SREV_9285_12_OR_LATER(ah)) { |
| 833 | if (!ar9285_hw_clc(ah, chan)) | 833 | if (!ar9285_hw_clc(ah, chan)) |
| 834 | return false; | 834 | return false; |
| 835 | } else { | 835 | } else { |
diff --git a/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c b/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c index 0ca7635d0669..ff8150e46f0e 100644 --- a/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c +++ b/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c | |||
| @@ -4645,10 +4645,16 @@ static void ar9003_hw_set_power_per_rate_table(struct ath_hw *ah, | |||
| 4645 | case 1: | 4645 | case 1: |
| 4646 | break; | 4646 | break; |
| 4647 | case 2: | 4647 | case 2: |
| 4648 | scaledPower -= REDUCE_SCALED_POWER_BY_TWO_CHAIN; | 4648 | if (scaledPower > REDUCE_SCALED_POWER_BY_TWO_CHAIN) |
| 4649 | scaledPower -= REDUCE_SCALED_POWER_BY_TWO_CHAIN; | ||
| 4650 | else | ||
| 4651 | scaledPower = 0; | ||
| 4649 | break; | 4652 | break; |
| 4650 | case 3: | 4653 | case 3: |
| 4651 | scaledPower -= REDUCE_SCALED_POWER_BY_THREE_CHAIN; | 4654 | if (scaledPower > REDUCE_SCALED_POWER_BY_THREE_CHAIN) |
| 4655 | scaledPower -= REDUCE_SCALED_POWER_BY_THREE_CHAIN; | ||
| 4656 | else | ||
| 4657 | scaledPower = 0; | ||
| 4652 | break; | 4658 | break; |
| 4653 | } | 4659 | } |
| 4654 | 4660 | ||
diff --git a/drivers/net/wireless/ath/ath9k/ar9003_phy.c b/drivers/net/wireless/ath/ath9k/ar9003_phy.c index eee23ecd118a..892c48b15434 100644 --- a/drivers/net/wireless/ath/ath9k/ar9003_phy.c +++ b/drivers/net/wireless/ath/ath9k/ar9003_phy.c | |||
| @@ -1381,3 +1381,25 @@ void ar9003_hw_bb_watchdog_dbg_info(struct ath_hw *ah) | |||
| 1381 | "==== BB update: done ====\n\n"); | 1381 | "==== BB update: done ====\n\n"); |
| 1382 | } | 1382 | } |
| 1383 | EXPORT_SYMBOL(ar9003_hw_bb_watchdog_dbg_info); | 1383 | EXPORT_SYMBOL(ar9003_hw_bb_watchdog_dbg_info); |
| 1384 | |||
| 1385 | void ar9003_hw_disable_phy_restart(struct ath_hw *ah) | ||
| 1386 | { | ||
| 1387 | u32 val; | ||
| 1388 | |||
| 1389 | /* While receiving unsupported rate frame rx state machine | ||
| 1390 | * gets into a state 0xb and if phy_restart happens in that | ||
| 1391 | * state, BB would go hang. If RXSM is in 0xb state after | ||
| 1392 | * first bb panic, ensure to disable the phy_restart. | ||
| 1393 | */ | ||
| 1394 | if (!((MS(ah->bb_watchdog_last_status, | ||
| 1395 | AR_PHY_WATCHDOG_RX_OFDM_SM) == 0xb) || | ||
| 1396 | ah->bb_hang_rx_ofdm)) | ||
| 1397 | return; | ||
| 1398 | |||
| 1399 | ah->bb_hang_rx_ofdm = true; | ||
| 1400 | val = REG_READ(ah, AR_PHY_RESTART); | ||
| 1401 | val &= ~AR_PHY_RESTART_ENA; | ||
| 1402 | |||
| 1403 | REG_WRITE(ah, AR_PHY_RESTART, val); | ||
| 1404 | } | ||
| 1405 | EXPORT_SYMBOL(ar9003_hw_disable_phy_restart); | ||
diff --git a/drivers/net/wireless/ath/ath9k/eeprom_9287.c b/drivers/net/wireless/ath/ath9k/eeprom_9287.c index 7856f0d4512d..343fc9f946db 100644 --- a/drivers/net/wireless/ath/ath9k/eeprom_9287.c +++ b/drivers/net/wireless/ath/ath9k/eeprom_9287.c | |||
| @@ -524,10 +524,16 @@ static void ath9k_hw_set_ar9287_power_per_rate_table(struct ath_hw *ah, | |||
| 524 | case 1: | 524 | case 1: |
| 525 | break; | 525 | break; |
| 526 | case 2: | 526 | case 2: |
| 527 | scaledPower -= REDUCE_SCALED_POWER_BY_TWO_CHAIN; | 527 | if (scaledPower > REDUCE_SCALED_POWER_BY_TWO_CHAIN) |
| 528 | scaledPower -= REDUCE_SCALED_POWER_BY_TWO_CHAIN; | ||
| 529 | else | ||
| 530 | scaledPower = 0; | ||
| 528 | break; | 531 | break; |
| 529 | case 3: | 532 | case 3: |
| 530 | scaledPower -= REDUCE_SCALED_POWER_BY_THREE_CHAIN; | 533 | if (scaledPower > REDUCE_SCALED_POWER_BY_THREE_CHAIN) |
| 534 | scaledPower -= REDUCE_SCALED_POWER_BY_THREE_CHAIN; | ||
| 535 | else | ||
| 536 | scaledPower = 0; | ||
| 531 | break; | 537 | break; |
| 532 | } | 538 | } |
| 533 | scaledPower = max((u16)0, scaledPower); | 539 | scaledPower = max((u16)0, scaledPower); |
diff --git a/drivers/net/wireless/ath/ath9k/hw.c b/drivers/net/wireless/ath/ath9k/hw.c index 72543ce8f616..1be7c8bbef84 100644 --- a/drivers/net/wireless/ath/ath9k/hw.c +++ b/drivers/net/wireless/ath/ath9k/hw.c | |||
| @@ -1555,9 +1555,12 @@ int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan, | |||
| 1555 | if (ah->btcoex_hw.enabled) | 1555 | if (ah->btcoex_hw.enabled) |
| 1556 | ath9k_hw_btcoex_enable(ah); | 1556 | ath9k_hw_btcoex_enable(ah); |
| 1557 | 1557 | ||
| 1558 | if (AR_SREV_9300_20_OR_LATER(ah)) | 1558 | if (AR_SREV_9300_20_OR_LATER(ah)) { |
| 1559 | ar9003_hw_bb_watchdog_config(ah); | 1559 | ar9003_hw_bb_watchdog_config(ah); |
| 1560 | 1560 | ||
| 1561 | ar9003_hw_disable_phy_restart(ah); | ||
| 1562 | } | ||
| 1563 | |||
| 1561 | ath9k_hw_apply_gpio_override(ah); | 1564 | ath9k_hw_apply_gpio_override(ah); |
| 1562 | 1565 | ||
| 1563 | return 0; | 1566 | return 0; |
diff --git a/drivers/net/wireless/ath/ath9k/hw.h b/drivers/net/wireless/ath/ath9k/hw.h index 57435ce62792..4b157c53d1a8 100644 --- a/drivers/net/wireless/ath/ath9k/hw.h +++ b/drivers/net/wireless/ath/ath9k/hw.h | |||
| @@ -842,6 +842,7 @@ struct ath_hw { | |||
| 842 | 842 | ||
| 843 | u32 bb_watchdog_last_status; | 843 | u32 bb_watchdog_last_status; |
| 844 | u32 bb_watchdog_timeout_ms; /* in ms, 0 to disable */ | 844 | u32 bb_watchdog_timeout_ms; /* in ms, 0 to disable */ |
| 845 | u8 bb_hang_rx_ofdm; /* true if bb hang due to rx_ofdm */ | ||
| 845 | 846 | ||
| 846 | unsigned int paprd_target_power; | 847 | unsigned int paprd_target_power; |
| 847 | unsigned int paprd_training_power; | 848 | unsigned int paprd_training_power; |
| @@ -990,6 +991,7 @@ void ar9002_hw_enable_wep_aggregation(struct ath_hw *ah); | |||
| 990 | void ar9003_hw_bb_watchdog_config(struct ath_hw *ah); | 991 | void ar9003_hw_bb_watchdog_config(struct ath_hw *ah); |
| 991 | void ar9003_hw_bb_watchdog_read(struct ath_hw *ah); | 992 | void ar9003_hw_bb_watchdog_read(struct ath_hw *ah); |
| 992 | void ar9003_hw_bb_watchdog_dbg_info(struct ath_hw *ah); | 993 | void ar9003_hw_bb_watchdog_dbg_info(struct ath_hw *ah); |
| 994 | void ar9003_hw_disable_phy_restart(struct ath_hw *ah); | ||
| 993 | void ar9003_paprd_enable(struct ath_hw *ah, bool val); | 995 | void ar9003_paprd_enable(struct ath_hw *ah, bool val); |
| 994 | void ar9003_paprd_populate_single_table(struct ath_hw *ah, | 996 | void ar9003_paprd_populate_single_table(struct ath_hw *ah, |
| 995 | struct ath9k_hw_cal_data *caldata, | 997 | struct ath9k_hw_cal_data *caldata, |
diff --git a/drivers/net/wireless/ath/ath9k/main.c b/drivers/net/wireless/ath/ath9k/main.c index a198ee374b05..2ca351fe6d3c 100644 --- a/drivers/net/wireless/ath/ath9k/main.c +++ b/drivers/net/wireless/ath/ath9k/main.c | |||
| @@ -670,7 +670,8 @@ void ath9k_tasklet(unsigned long data) | |||
| 670 | u32 status = sc->intrstatus; | 670 | u32 status = sc->intrstatus; |
| 671 | u32 rxmask; | 671 | u32 rxmask; |
| 672 | 672 | ||
| 673 | if (status & ATH9K_INT_FATAL) { | 673 | if ((status & ATH9K_INT_FATAL) || |
| 674 | (status & ATH9K_INT_BB_WATCHDOG)) { | ||
| 674 | ath_reset(sc, true); | 675 | ath_reset(sc, true); |
| 675 | return; | 676 | return; |
| 676 | } | 677 | } |
| @@ -737,6 +738,7 @@ irqreturn_t ath_isr(int irq, void *dev) | |||
| 737 | { | 738 | { |
| 738 | #define SCHED_INTR ( \ | 739 | #define SCHED_INTR ( \ |
| 739 | ATH9K_INT_FATAL | \ | 740 | ATH9K_INT_FATAL | \ |
| 741 | ATH9K_INT_BB_WATCHDOG | \ | ||
| 740 | ATH9K_INT_RXORN | \ | 742 | ATH9K_INT_RXORN | \ |
| 741 | ATH9K_INT_RXEOL | \ | 743 | ATH9K_INT_RXEOL | \ |
| 742 | ATH9K_INT_RX | \ | 744 | ATH9K_INT_RX | \ |
diff --git a/drivers/net/wireless/ath/ath9k/rc.c b/drivers/net/wireless/ath/ath9k/rc.c index 17542214c93f..ba7f36ab0a74 100644 --- a/drivers/net/wireless/ath/ath9k/rc.c +++ b/drivers/net/wireless/ath/ath9k/rc.c | |||
| @@ -689,7 +689,8 @@ static void ath_rc_rate_set_series(const struct ath_rate_table *rate_table, | |||
| 689 | 689 | ||
| 690 | if (WLAN_RC_PHY_HT(rate_table->info[rix].phy)) { | 690 | if (WLAN_RC_PHY_HT(rate_table->info[rix].phy)) { |
| 691 | rate->flags |= IEEE80211_TX_RC_MCS; | 691 | rate->flags |= IEEE80211_TX_RC_MCS; |
| 692 | if (WLAN_RC_PHY_40(rate_table->info[rix].phy)) | 692 | if (WLAN_RC_PHY_40(rate_table->info[rix].phy) && |
| 693 | conf_is_ht40(&txrc->hw->conf)) | ||
| 693 | rate->flags |= IEEE80211_TX_RC_40_MHZ_WIDTH; | 694 | rate->flags |= IEEE80211_TX_RC_40_MHZ_WIDTH; |
| 694 | if (WLAN_RC_PHY_SGI(rate_table->info[rix].phy)) | 695 | if (WLAN_RC_PHY_SGI(rate_table->info[rix].phy)) |
| 695 | rate->flags |= IEEE80211_TX_RC_SHORT_GI; | 696 | rate->flags |= IEEE80211_TX_RC_SHORT_GI; |
diff --git a/drivers/net/wireless/b43/phy_n.c b/drivers/net/wireless/b43/phy_n.c index 9ed65157bef5..05960ddde24e 100644 --- a/drivers/net/wireless/b43/phy_n.c +++ b/drivers/net/wireless/b43/phy_n.c | |||
| @@ -3093,7 +3093,7 @@ static int b43_nphy_cal_tx_iq_lo(struct b43_wldev *dev, | |||
| 3093 | int freq; | 3093 | int freq; |
| 3094 | bool avoid = false; | 3094 | bool avoid = false; |
| 3095 | u8 length; | 3095 | u8 length; |
| 3096 | u16 tmp, core, type, count, max, numb, last, cmd; | 3096 | u16 tmp, core, type, count, max, numb, last = 0, cmd; |
| 3097 | const u16 *table; | 3097 | const u16 *table; |
| 3098 | bool phy6or5x; | 3098 | bool phy6or5x; |
| 3099 | 3099 | ||
diff --git a/drivers/net/wireless/iwlegacy/iwl-4965-lib.c b/drivers/net/wireless/iwlegacy/iwl-4965-lib.c index 7e5e85a017b5..a7a4739880dc 100644 --- a/drivers/net/wireless/iwlegacy/iwl-4965-lib.c +++ b/drivers/net/wireless/iwlegacy/iwl-4965-lib.c | |||
| @@ -628,11 +628,11 @@ void iwl4965_rx_reply_rx(struct iwl_priv *priv, | |||
| 628 | 628 | ||
| 629 | /* rx_status carries information about the packet to mac80211 */ | 629 | /* rx_status carries information about the packet to mac80211 */ |
| 630 | rx_status.mactime = le64_to_cpu(phy_res->timestamp); | 630 | rx_status.mactime = le64_to_cpu(phy_res->timestamp); |
| 631 | rx_status.band = (phy_res->phy_flags & RX_RES_PHY_FLAGS_BAND_24_MSK) ? | ||
| 632 | IEEE80211_BAND_2GHZ : IEEE80211_BAND_5GHZ; | ||
| 631 | rx_status.freq = | 633 | rx_status.freq = |
| 632 | ieee80211_channel_to_frequency(le16_to_cpu(phy_res->channel), | 634 | ieee80211_channel_to_frequency(le16_to_cpu(phy_res->channel), |
| 633 | rx_status.band); | 635 | rx_status.band); |
| 634 | rx_status.band = (phy_res->phy_flags & RX_RES_PHY_FLAGS_BAND_24_MSK) ? | ||
| 635 | IEEE80211_BAND_2GHZ : IEEE80211_BAND_5GHZ; | ||
| 636 | rx_status.rate_idx = | 636 | rx_status.rate_idx = |
| 637 | iwl4965_hwrate_to_mac80211_idx(rate_n_flags, rx_status.band); | 637 | iwl4965_hwrate_to_mac80211_idx(rate_n_flags, rx_status.band); |
| 638 | rx_status.flag = 0; | 638 | rx_status.flag = 0; |
diff --git a/drivers/net/wireless/iwlegacy/iwl-4965.c b/drivers/net/wireless/iwlegacy/iwl-4965.c index f5433c74b845..f9db25bb35c3 100644 --- a/drivers/net/wireless/iwlegacy/iwl-4965.c +++ b/drivers/net/wireless/iwlegacy/iwl-4965.c | |||
| @@ -1543,7 +1543,7 @@ static void iwl4965_temperature_calib(struct iwl_priv *priv) | |||
| 1543 | s32 temp; | 1543 | s32 temp; |
| 1544 | 1544 | ||
| 1545 | temp = iwl4965_hw_get_temperature(priv); | 1545 | temp = iwl4965_hw_get_temperature(priv); |
| 1546 | if (temp < 0) | 1546 | if (IWL_TX_POWER_TEMPERATURE_OUT_OF_RANGE(temp)) |
| 1547 | return; | 1547 | return; |
| 1548 | 1548 | ||
| 1549 | if (priv->temperature != temp) { | 1549 | if (priv->temperature != temp) { |
diff --git a/drivers/net/wireless/iwlwifi/iwl-6000.c b/drivers/net/wireless/iwlwifi/iwl-6000.c index f8c710db6e6f..fda6fe08cf91 100644 --- a/drivers/net/wireless/iwlwifi/iwl-6000.c +++ b/drivers/net/wireless/iwlwifi/iwl-6000.c | |||
| @@ -603,19 +603,27 @@ struct iwl_cfg iwl6050_2abg_cfg = { | |||
| 603 | IWL_DEVICE_6050, | 603 | IWL_DEVICE_6050, |
| 604 | }; | 604 | }; |
| 605 | 605 | ||
| 606 | #define IWL_DEVICE_6150 \ | ||
| 607 | .fw_name_pre = IWL6050_FW_PRE, \ | ||
| 608 | .ucode_api_max = IWL6050_UCODE_API_MAX, \ | ||
| 609 | .ucode_api_min = IWL6050_UCODE_API_MIN, \ | ||
| 610 | .ops = &iwl6150_ops, \ | ||
| 611 | .eeprom_ver = EEPROM_6150_EEPROM_VERSION, \ | ||
| 612 | .eeprom_calib_ver = EEPROM_6150_TX_POWER_VERSION, \ | ||
| 613 | .base_params = &iwl6050_base_params, \ | ||
| 614 | .need_dc_calib = true, \ | ||
| 615 | .led_mode = IWL_LED_BLINK, \ | ||
| 616 | .internal_wimax_coex = true | ||
| 617 | |||
| 606 | struct iwl_cfg iwl6150_bgn_cfg = { | 618 | struct iwl_cfg iwl6150_bgn_cfg = { |
| 607 | .name = "Intel(R) Centrino(R) Wireless-N + WiMAX 6150 BGN", | 619 | .name = "Intel(R) Centrino(R) Wireless-N + WiMAX 6150 BGN", |
| 608 | .fw_name_pre = IWL6050_FW_PRE, | 620 | IWL_DEVICE_6150, |
| 609 | .ucode_api_max = IWL6050_UCODE_API_MAX, | ||
| 610 | .ucode_api_min = IWL6050_UCODE_API_MIN, | ||
| 611 | .eeprom_ver = EEPROM_6150_EEPROM_VERSION, | ||
| 612 | .eeprom_calib_ver = EEPROM_6150_TX_POWER_VERSION, | ||
| 613 | .ops = &iwl6150_ops, | ||
| 614 | .base_params = &iwl6050_base_params, | ||
| 615 | .ht_params = &iwl6000_ht_params, | 621 | .ht_params = &iwl6000_ht_params, |
| 616 | .need_dc_calib = true, | 622 | }; |
| 617 | .led_mode = IWL_LED_RF_STATE, | 623 | |
| 618 | .internal_wimax_coex = true, | 624 | struct iwl_cfg iwl6150_bg_cfg = { |
| 625 | .name = "Intel(R) Centrino(R) Wireless-N + WiMAX 6150 BG", | ||
| 626 | IWL_DEVICE_6150, | ||
| 619 | }; | 627 | }; |
| 620 | 628 | ||
| 621 | struct iwl_cfg iwl6000_3agn_cfg = { | 629 | struct iwl_cfg iwl6000_3agn_cfg = { |
diff --git a/drivers/net/wireless/iwlwifi/iwl-agn.c b/drivers/net/wireless/iwlwifi/iwl-agn.c index 11c6c1169e78..a662adcb2adb 100644 --- a/drivers/net/wireless/iwlwifi/iwl-agn.c +++ b/drivers/net/wireless/iwlwifi/iwl-agn.c | |||
| @@ -3831,11 +3831,11 @@ static DEFINE_PCI_DEVICE_TABLE(iwl_hw_card_ids) = { | |||
| 3831 | 3831 | ||
| 3832 | /* 6150 WiFi/WiMax Series */ | 3832 | /* 6150 WiFi/WiMax Series */ |
| 3833 | {IWL_PCI_DEVICE(0x0885, 0x1305, iwl6150_bgn_cfg)}, | 3833 | {IWL_PCI_DEVICE(0x0885, 0x1305, iwl6150_bgn_cfg)}, |
| 3834 | {IWL_PCI_DEVICE(0x0885, 0x1306, iwl6150_bgn_cfg)}, | 3834 | {IWL_PCI_DEVICE(0x0885, 0x1307, iwl6150_bg_cfg)}, |
| 3835 | {IWL_PCI_DEVICE(0x0885, 0x1325, iwl6150_bgn_cfg)}, | 3835 | {IWL_PCI_DEVICE(0x0885, 0x1325, iwl6150_bgn_cfg)}, |
| 3836 | {IWL_PCI_DEVICE(0x0885, 0x1326, iwl6150_bgn_cfg)}, | 3836 | {IWL_PCI_DEVICE(0x0885, 0x1327, iwl6150_bg_cfg)}, |
| 3837 | {IWL_PCI_DEVICE(0x0886, 0x1315, iwl6150_bgn_cfg)}, | 3837 | {IWL_PCI_DEVICE(0x0886, 0x1315, iwl6150_bgn_cfg)}, |
| 3838 | {IWL_PCI_DEVICE(0x0886, 0x1316, iwl6150_bgn_cfg)}, | 3838 | {IWL_PCI_DEVICE(0x0886, 0x1317, iwl6150_bg_cfg)}, |
| 3839 | 3839 | ||
| 3840 | /* 1000 Series WiFi */ | 3840 | /* 1000 Series WiFi */ |
| 3841 | {IWL_PCI_DEVICE(0x0083, 0x1205, iwl1000_bgn_cfg)}, | 3841 | {IWL_PCI_DEVICE(0x0083, 0x1205, iwl1000_bgn_cfg)}, |
diff --git a/drivers/net/wireless/iwlwifi/iwl-agn.h b/drivers/net/wireless/iwlwifi/iwl-agn.h index 2495fe7a58cb..d1716844002e 100644 --- a/drivers/net/wireless/iwlwifi/iwl-agn.h +++ b/drivers/net/wireless/iwlwifi/iwl-agn.h | |||
| @@ -89,6 +89,7 @@ extern struct iwl_cfg iwl6000_3agn_cfg; | |||
| 89 | extern struct iwl_cfg iwl6050_2agn_cfg; | 89 | extern struct iwl_cfg iwl6050_2agn_cfg; |
| 90 | extern struct iwl_cfg iwl6050_2abg_cfg; | 90 | extern struct iwl_cfg iwl6050_2abg_cfg; |
| 91 | extern struct iwl_cfg iwl6150_bgn_cfg; | 91 | extern struct iwl_cfg iwl6150_bgn_cfg; |
| 92 | extern struct iwl_cfg iwl6150_bg_cfg; | ||
| 92 | extern struct iwl_cfg iwl1000_bgn_cfg; | 93 | extern struct iwl_cfg iwl1000_bgn_cfg; |
| 93 | extern struct iwl_cfg iwl1000_bg_cfg; | 94 | extern struct iwl_cfg iwl1000_bg_cfg; |
| 94 | extern struct iwl_cfg iwl100_bgn_cfg; | 95 | extern struct iwl_cfg iwl100_bgn_cfg; |
diff --git a/drivers/net/wireless/libertas/cmd.c b/drivers/net/wireless/libertas/cmd.c index 84566db486d2..71c8f3fccfa1 100644 --- a/drivers/net/wireless/libertas/cmd.c +++ b/drivers/net/wireless/libertas/cmd.c | |||
| @@ -994,6 +994,8 @@ static void lbs_submit_command(struct lbs_private *priv, | |||
| 994 | cmd = cmdnode->cmdbuf; | 994 | cmd = cmdnode->cmdbuf; |
| 995 | 995 | ||
| 996 | spin_lock_irqsave(&priv->driver_lock, flags); | 996 | spin_lock_irqsave(&priv->driver_lock, flags); |
| 997 | priv->seqnum++; | ||
| 998 | cmd->seqnum = cpu_to_le16(priv->seqnum); | ||
| 997 | priv->cur_cmd = cmdnode; | 999 | priv->cur_cmd = cmdnode; |
| 998 | spin_unlock_irqrestore(&priv->driver_lock, flags); | 1000 | spin_unlock_irqrestore(&priv->driver_lock, flags); |
| 999 | 1001 | ||
| @@ -1621,11 +1623,9 @@ struct cmd_ctrl_node *__lbs_cmd_async(struct lbs_private *priv, | |||
| 1621 | /* Copy the incoming command to the buffer */ | 1623 | /* Copy the incoming command to the buffer */ |
| 1622 | memcpy(cmdnode->cmdbuf, in_cmd, in_cmd_size); | 1624 | memcpy(cmdnode->cmdbuf, in_cmd, in_cmd_size); |
| 1623 | 1625 | ||
| 1624 | /* Set sequence number, clean result, move to buffer */ | 1626 | /* Set command, clean result, move to buffer */ |
| 1625 | priv->seqnum++; | ||
| 1626 | cmdnode->cmdbuf->command = cpu_to_le16(command); | 1627 | cmdnode->cmdbuf->command = cpu_to_le16(command); |
| 1627 | cmdnode->cmdbuf->size = cpu_to_le16(in_cmd_size); | 1628 | cmdnode->cmdbuf->size = cpu_to_le16(in_cmd_size); |
| 1628 | cmdnode->cmdbuf->seqnum = cpu_to_le16(priv->seqnum); | ||
| 1629 | cmdnode->cmdbuf->result = 0; | 1629 | cmdnode->cmdbuf->result = 0; |
| 1630 | 1630 | ||
| 1631 | lbs_deb_host("PREP_CMD: command 0x%04x\n", command); | 1631 | lbs_deb_host("PREP_CMD: command 0x%04x\n", command); |
diff --git a/drivers/net/wireless/mwifiex/sdio.h b/drivers/net/wireless/mwifiex/sdio.h index a0e9bc5253e0..4e97e90aa399 100644 --- a/drivers/net/wireless/mwifiex/sdio.h +++ b/drivers/net/wireless/mwifiex/sdio.h | |||
| @@ -167,8 +167,8 @@ | |||
| 167 | /* Rx unit register */ | 167 | /* Rx unit register */ |
| 168 | #define CARD_RX_UNIT_REG 0x63 | 168 | #define CARD_RX_UNIT_REG 0x63 |
| 169 | 169 | ||
| 170 | /* Event header Len*/ | 170 | /* Event header len w/o 4 bytes of interface header */ |
| 171 | #define MWIFIEX_EVENT_HEADER_LEN 8 | 171 | #define MWIFIEX_EVENT_HEADER_LEN 4 |
| 172 | 172 | ||
| 173 | /* Max retry number of CMD53 write */ | 173 | /* Max retry number of CMD53 write */ |
| 174 | #define MAX_WRITE_IOMEM_RETRY 2 | 174 | #define MAX_WRITE_IOMEM_RETRY 2 |
diff --git a/drivers/net/wireless/rt2x00/Kconfig b/drivers/net/wireless/rt2x00/Kconfig index 9def1e5369a1..b2f8b8fd4d2d 100644 --- a/drivers/net/wireless/rt2x00/Kconfig +++ b/drivers/net/wireless/rt2x00/Kconfig | |||
| @@ -166,7 +166,6 @@ config RT2800USB_RT35XX | |||
| 166 | config RT2800USB_RT53XX | 166 | config RT2800USB_RT53XX |
| 167 | bool "rt2800usb - Include support for rt53xx devices (EXPERIMENTAL)" | 167 | bool "rt2800usb - Include support for rt53xx devices (EXPERIMENTAL)" |
| 168 | depends on EXPERIMENTAL | 168 | depends on EXPERIMENTAL |
| 169 | default y | ||
| 170 | ---help--- | 169 | ---help--- |
| 171 | This adds support for rt53xx wireless chipset family to the | 170 | This adds support for rt53xx wireless chipset family to the |
| 172 | rt2800pci driver. | 171 | rt2800pci driver. |
diff --git a/drivers/net/wireless/rtlwifi/pci.c b/drivers/net/wireless/rtlwifi/pci.c index a40952845436..89100e7c553b 100644 --- a/drivers/net/wireless/rtlwifi/pci.c +++ b/drivers/net/wireless/rtlwifi/pci.c | |||
| @@ -669,11 +669,6 @@ static void _rtl_pci_rx_interrupt(struct ieee80211_hw *hw) | |||
| 669 | &rx_status, | 669 | &rx_status, |
| 670 | (u8 *) pdesc, skb); | 670 | (u8 *) pdesc, skb); |
| 671 | 671 | ||
| 672 | pci_unmap_single(rtlpci->pdev, | ||
| 673 | *((dma_addr_t *) skb->cb), | ||
| 674 | rtlpci->rxbuffersize, | ||
| 675 | PCI_DMA_FROMDEVICE); | ||
| 676 | |||
| 677 | skb_put(skb, rtlpriv->cfg->ops->get_desc((u8 *) pdesc, | 672 | skb_put(skb, rtlpriv->cfg->ops->get_desc((u8 *) pdesc, |
| 678 | false, | 673 | false, |
| 679 | HW_DESC_RXPKT_LEN)); | 674 | HW_DESC_RXPKT_LEN)); |
| @@ -690,6 +685,21 @@ static void _rtl_pci_rx_interrupt(struct ieee80211_hw *hw) | |||
| 690 | hdr = rtl_get_hdr(skb); | 685 | hdr = rtl_get_hdr(skb); |
| 691 | fc = rtl_get_fc(skb); | 686 | fc = rtl_get_fc(skb); |
| 692 | 687 | ||
| 688 | /* try for new buffer - if allocation fails, drop | ||
| 689 | * frame and reuse old buffer | ||
| 690 | */ | ||
| 691 | new_skb = dev_alloc_skb(rtlpci->rxbuffersize); | ||
| 692 | if (unlikely(!new_skb)) { | ||
| 693 | RT_TRACE(rtlpriv, (COMP_INTR | COMP_RECV), | ||
| 694 | DBG_DMESG, | ||
| 695 | ("can't alloc skb for rx\n")); | ||
| 696 | goto done; | ||
| 697 | } | ||
| 698 | pci_unmap_single(rtlpci->pdev, | ||
| 699 | *((dma_addr_t *) skb->cb), | ||
| 700 | rtlpci->rxbuffersize, | ||
| 701 | PCI_DMA_FROMDEVICE); | ||
| 702 | |||
| 693 | if (!stats.crc || !stats.hwerror) { | 703 | if (!stats.crc || !stats.hwerror) { |
| 694 | memcpy(IEEE80211_SKB_RXCB(skb), &rx_status, | 704 | memcpy(IEEE80211_SKB_RXCB(skb), &rx_status, |
| 695 | sizeof(rx_status)); | 705 | sizeof(rx_status)); |
| @@ -758,15 +768,7 @@ static void _rtl_pci_rx_interrupt(struct ieee80211_hw *hw) | |||
| 758 | rtl_lps_leave(hw); | 768 | rtl_lps_leave(hw); |
| 759 | } | 769 | } |
| 760 | 770 | ||
| 761 | new_skb = dev_alloc_skb(rtlpci->rxbuffersize); | ||
| 762 | if (unlikely(!new_skb)) { | ||
| 763 | RT_TRACE(rtlpriv, (COMP_INTR | COMP_RECV), | ||
| 764 | DBG_DMESG, | ||
| 765 | ("can't alloc skb for rx\n")); | ||
| 766 | goto done; | ||
| 767 | } | ||
| 768 | skb = new_skb; | 771 | skb = new_skb; |
| 769 | /*skb->dev = dev; */ | ||
| 770 | 772 | ||
| 771 | rtlpci->rx_ring[rx_queue_idx].rx_buf[rtlpci-> | 773 | rtlpci->rx_ring[rx_queue_idx].rx_buf[rtlpci-> |
| 772 | rx_ring | 774 | rx_ring |
| @@ -1113,6 +1115,13 @@ static int _rtl_pci_init_rx_ring(struct ieee80211_hw *hw) | |||
| 1113 | 1115 | ||
| 1114 | rtlpci->rx_ring[rx_queue_idx].idx = 0; | 1116 | rtlpci->rx_ring[rx_queue_idx].idx = 0; |
| 1115 | 1117 | ||
| 1118 | /* If amsdu_8k is disabled, set buffersize to 4096. This | ||
| 1119 | * change will reduce memory fragmentation. | ||
| 1120 | */ | ||
| 1121 | if (rtlpci->rxbuffersize > 4096 && | ||
| 1122 | rtlpriv->rtlhal.disable_amsdu_8k) | ||
| 1123 | rtlpci->rxbuffersize = 4096; | ||
| 1124 | |||
| 1116 | for (i = 0; i < rtlpci->rxringcount; i++) { | 1125 | for (i = 0; i < rtlpci->rxringcount; i++) { |
| 1117 | struct sk_buff *skb = | 1126 | struct sk_buff *skb = |
| 1118 | dev_alloc_skb(rtlpci->rxbuffersize); | 1127 | dev_alloc_skb(rtlpci->rxbuffersize); |
diff --git a/drivers/net/wireless/wl12xx/conf.h b/drivers/net/wireless/wl12xx/conf.h index 1ab6c86aac40..c83fefb6662f 100644 --- a/drivers/net/wireless/wl12xx/conf.h +++ b/drivers/net/wireless/wl12xx/conf.h | |||
| @@ -1157,6 +1157,9 @@ struct conf_sched_scan_settings { | |||
| 1157 | /* time to wait on the channel for passive scans (in TUs) */ | 1157 | /* time to wait on the channel for passive scans (in TUs) */ |
| 1158 | u32 dwell_time_passive; | 1158 | u32 dwell_time_passive; |
| 1159 | 1159 | ||
| 1160 | /* time to wait on the channel for DFS scans (in TUs) */ | ||
| 1161 | u32 dwell_time_dfs; | ||
| 1162 | |||
| 1160 | /* number of probe requests to send on each channel in active scans */ | 1163 | /* number of probe requests to send on each channel in active scans */ |
| 1161 | u8 num_probe_reqs; | 1164 | u8 num_probe_reqs; |
| 1162 | 1165 | ||
diff --git a/drivers/net/wireless/wl12xx/main.c b/drivers/net/wireless/wl12xx/main.c index bc00e52f6445..e6497dc669df 100644 --- a/drivers/net/wireless/wl12xx/main.c +++ b/drivers/net/wireless/wl12xx/main.c | |||
| @@ -311,6 +311,7 @@ static struct conf_drv_settings default_conf = { | |||
| 311 | .min_dwell_time_active = 8, | 311 | .min_dwell_time_active = 8, |
| 312 | .max_dwell_time_active = 30, | 312 | .max_dwell_time_active = 30, |
| 313 | .dwell_time_passive = 100, | 313 | .dwell_time_passive = 100, |
| 314 | .dwell_time_dfs = 150, | ||
| 314 | .num_probe_reqs = 2, | 315 | .num_probe_reqs = 2, |
| 315 | .rssi_threshold = -90, | 316 | .rssi_threshold = -90, |
| 316 | .snr_threshold = 0, | 317 | .snr_threshold = 0, |
diff --git a/drivers/net/wireless/wl12xx/scan.c b/drivers/net/wireless/wl12xx/scan.c index f37e5a391976..56f76abc754d 100644 --- a/drivers/net/wireless/wl12xx/scan.c +++ b/drivers/net/wireless/wl12xx/scan.c | |||
| @@ -331,16 +331,22 @@ wl1271_scan_get_sched_scan_channels(struct wl1271 *wl, | |||
| 331 | struct conf_sched_scan_settings *c = &wl->conf.sched_scan; | 331 | struct conf_sched_scan_settings *c = &wl->conf.sched_scan; |
| 332 | int i, j; | 332 | int i, j; |
| 333 | u32 flags; | 333 | u32 flags; |
| 334 | bool force_passive = !req->n_ssids; | ||
| 334 | 335 | ||
| 335 | for (i = 0, j = start; | 336 | for (i = 0, j = start; |
| 336 | i < req->n_channels && j < MAX_CHANNELS_ALL_BANDS; | 337 | i < req->n_channels && j < MAX_CHANNELS_ALL_BANDS; |
| 337 | i++) { | 338 | i++) { |
| 338 | flags = req->channels[i]->flags; | 339 | flags = req->channels[i]->flags; |
| 339 | 340 | ||
| 340 | if (!(flags & IEEE80211_CHAN_DISABLED) && | 341 | if (force_passive) |
| 341 | ((flags & IEEE80211_CHAN_PASSIVE_SCAN) == passive) && | 342 | flags |= IEEE80211_CHAN_PASSIVE_SCAN; |
| 342 | ((flags & IEEE80211_CHAN_RADAR) == radar) && | 343 | |
| 343 | (req->channels[i]->band == band)) { | 344 | if ((req->channels[i]->band == band) && |
| 345 | !(flags & IEEE80211_CHAN_DISABLED) && | ||
| 346 | (!!(flags & IEEE80211_CHAN_RADAR) == radar) && | ||
| 347 | /* if radar is set, we ignore the passive flag */ | ||
| 348 | (radar || | ||
| 349 | !!(flags & IEEE80211_CHAN_PASSIVE_SCAN) == passive)) { | ||
| 344 | wl1271_debug(DEBUG_SCAN, "band %d, center_freq %d ", | 350 | wl1271_debug(DEBUG_SCAN, "band %d, center_freq %d ", |
| 345 | req->channels[i]->band, | 351 | req->channels[i]->band, |
| 346 | req->channels[i]->center_freq); | 352 | req->channels[i]->center_freq); |
| @@ -350,7 +356,12 @@ wl1271_scan_get_sched_scan_channels(struct wl1271 *wl, | |||
| 350 | wl1271_debug(DEBUG_SCAN, "max_power %d", | 356 | wl1271_debug(DEBUG_SCAN, "max_power %d", |
| 351 | req->channels[i]->max_power); | 357 | req->channels[i]->max_power); |
| 352 | 358 | ||
| 353 | if (flags & IEEE80211_CHAN_PASSIVE_SCAN) { | 359 | if (flags & IEEE80211_CHAN_RADAR) { |
| 360 | channels[j].flags |= SCAN_CHANNEL_FLAGS_DFS; | ||
| 361 | channels[j].passive_duration = | ||
| 362 | cpu_to_le16(c->dwell_time_dfs); | ||
| 363 | } | ||
| 364 | else if (flags & IEEE80211_CHAN_PASSIVE_SCAN) { | ||
| 354 | channels[j].passive_duration = | 365 | channels[j].passive_duration = |
| 355 | cpu_to_le16(c->dwell_time_passive); | 366 | cpu_to_le16(c->dwell_time_passive); |
| 356 | } else { | 367 | } else { |
| @@ -359,7 +370,7 @@ wl1271_scan_get_sched_scan_channels(struct wl1271 *wl, | |||
| 359 | channels[j].max_duration = | 370 | channels[j].max_duration = |
| 360 | cpu_to_le16(c->max_dwell_time_active); | 371 | cpu_to_le16(c->max_dwell_time_active); |
| 361 | } | 372 | } |
| 362 | channels[j].tx_power_att = req->channels[j]->max_power; | 373 | channels[j].tx_power_att = req->channels[i]->max_power; |
| 363 | channels[j].channel = req->channels[i]->hw_value; | 374 | channels[j].channel = req->channels[i]->hw_value; |
| 364 | 375 | ||
| 365 | j++; | 376 | j++; |
| @@ -386,7 +397,11 @@ wl1271_scan_sched_scan_channels(struct wl1271 *wl, | |||
| 386 | wl1271_scan_get_sched_scan_channels(wl, req, cfg->channels, | 397 | wl1271_scan_get_sched_scan_channels(wl, req, cfg->channels, |
| 387 | IEEE80211_BAND_2GHZ, | 398 | IEEE80211_BAND_2GHZ, |
| 388 | false, false, idx); | 399 | false, false, idx); |
| 389 | idx += cfg->active[0]; | 400 | /* |
| 401 | * 5GHz channels always start at position 14, not immediately | ||
| 402 | * after the last 2.4GHz channel | ||
| 403 | */ | ||
| 404 | idx = 14; | ||
| 390 | 405 | ||
| 391 | cfg->passive[1] = | 406 | cfg->passive[1] = |
| 392 | wl1271_scan_get_sched_scan_channels(wl, req, cfg->channels, | 407 | wl1271_scan_get_sched_scan_channels(wl, req, cfg->channels, |
| @@ -394,22 +409,23 @@ wl1271_scan_sched_scan_channels(struct wl1271 *wl, | |||
| 394 | false, true, idx); | 409 | false, true, idx); |
| 395 | idx += cfg->passive[1]; | 410 | idx += cfg->passive[1]; |
| 396 | 411 | ||
| 397 | cfg->active[1] = | 412 | cfg->dfs = |
| 398 | wl1271_scan_get_sched_scan_channels(wl, req, cfg->channels, | 413 | wl1271_scan_get_sched_scan_channels(wl, req, cfg->channels, |
| 399 | IEEE80211_BAND_5GHZ, | 414 | IEEE80211_BAND_5GHZ, |
| 400 | false, false, 14); | 415 | true, true, idx); |
| 401 | idx += cfg->active[1]; | 416 | idx += cfg->dfs; |
| 402 | 417 | ||
| 403 | cfg->dfs = | 418 | cfg->active[1] = |
| 404 | wl1271_scan_get_sched_scan_channels(wl, req, cfg->channels, | 419 | wl1271_scan_get_sched_scan_channels(wl, req, cfg->channels, |
| 405 | IEEE80211_BAND_5GHZ, | 420 | IEEE80211_BAND_5GHZ, |
| 406 | true, false, idx); | 421 | false, false, idx); |
| 407 | idx += cfg->dfs; | 422 | idx += cfg->active[1]; |
| 408 | 423 | ||
| 409 | wl1271_debug(DEBUG_SCAN, " 2.4GHz: active %d passive %d", | 424 | wl1271_debug(DEBUG_SCAN, " 2.4GHz: active %d passive %d", |
| 410 | cfg->active[0], cfg->passive[0]); | 425 | cfg->active[0], cfg->passive[0]); |
| 411 | wl1271_debug(DEBUG_SCAN, " 5GHz: active %d passive %d", | 426 | wl1271_debug(DEBUG_SCAN, " 5GHz: active %d passive %d", |
| 412 | cfg->active[1], cfg->passive[1]); | 427 | cfg->active[1], cfg->passive[1]); |
| 428 | wl1271_debug(DEBUG_SCAN, " DFS: %d", cfg->dfs); | ||
| 413 | 429 | ||
| 414 | return idx; | 430 | return idx; |
| 415 | } | 431 | } |
| @@ -421,6 +437,7 @@ int wl1271_scan_sched_scan_config(struct wl1271 *wl, | |||
| 421 | struct wl1271_cmd_sched_scan_config *cfg = NULL; | 437 | struct wl1271_cmd_sched_scan_config *cfg = NULL; |
| 422 | struct conf_sched_scan_settings *c = &wl->conf.sched_scan; | 438 | struct conf_sched_scan_settings *c = &wl->conf.sched_scan; |
| 423 | int i, total_channels, ret; | 439 | int i, total_channels, ret; |
| 440 | bool force_passive = !req->n_ssids; | ||
| 424 | 441 | ||
| 425 | wl1271_debug(DEBUG_CMD, "cmd sched_scan scan config"); | 442 | wl1271_debug(DEBUG_CMD, "cmd sched_scan scan config"); |
| 426 | 443 | ||
| @@ -444,7 +461,7 @@ int wl1271_scan_sched_scan_config(struct wl1271 *wl, | |||
| 444 | for (i = 0; i < SCAN_MAX_CYCLE_INTERVALS; i++) | 461 | for (i = 0; i < SCAN_MAX_CYCLE_INTERVALS; i++) |
| 445 | cfg->intervals[i] = cpu_to_le32(req->interval); | 462 | cfg->intervals[i] = cpu_to_le32(req->interval); |
| 446 | 463 | ||
| 447 | if (req->ssids[0].ssid_len && req->ssids[0].ssid) { | 464 | if (!force_passive && req->ssids[0].ssid_len && req->ssids[0].ssid) { |
| 448 | cfg->filter_type = SCAN_SSID_FILTER_SPECIFIC; | 465 | cfg->filter_type = SCAN_SSID_FILTER_SPECIFIC; |
| 449 | cfg->ssid_len = req->ssids[0].ssid_len; | 466 | cfg->ssid_len = req->ssids[0].ssid_len; |
| 450 | memcpy(cfg->ssid, req->ssids[0].ssid, | 467 | memcpy(cfg->ssid, req->ssids[0].ssid, |
| @@ -461,7 +478,7 @@ int wl1271_scan_sched_scan_config(struct wl1271 *wl, | |||
| 461 | goto out; | 478 | goto out; |
| 462 | } | 479 | } |
| 463 | 480 | ||
| 464 | if (cfg->active[0]) { | 481 | if (!force_passive && cfg->active[0]) { |
| 465 | ret = wl1271_cmd_build_probe_req(wl, req->ssids[0].ssid, | 482 | ret = wl1271_cmd_build_probe_req(wl, req->ssids[0].ssid, |
| 466 | req->ssids[0].ssid_len, | 483 | req->ssids[0].ssid_len, |
| 467 | ies->ie[IEEE80211_BAND_2GHZ], | 484 | ies->ie[IEEE80211_BAND_2GHZ], |
| @@ -473,7 +490,7 @@ int wl1271_scan_sched_scan_config(struct wl1271 *wl, | |||
| 473 | } | 490 | } |
| 474 | } | 491 | } |
| 475 | 492 | ||
| 476 | if (cfg->active[1]) { | 493 | if (!force_passive && cfg->active[1]) { |
| 477 | ret = wl1271_cmd_build_probe_req(wl, req->ssids[0].ssid, | 494 | ret = wl1271_cmd_build_probe_req(wl, req->ssids[0].ssid, |
| 478 | req->ssids[0].ssid_len, | 495 | req->ssids[0].ssid_len, |
| 479 | ies->ie[IEEE80211_BAND_5GHZ], | 496 | ies->ie[IEEE80211_BAND_5GHZ], |
diff --git a/drivers/net/wireless/wl12xx/scan.h b/drivers/net/wireless/wl12xx/scan.h index c83319579ca3..a0b6c5d67b07 100644 --- a/drivers/net/wireless/wl12xx/scan.h +++ b/drivers/net/wireless/wl12xx/scan.h | |||
| @@ -137,6 +137,9 @@ enum { | |||
| 137 | SCAN_BSS_TYPE_ANY, | 137 | SCAN_BSS_TYPE_ANY, |
| 138 | }; | 138 | }; |
| 139 | 139 | ||
| 140 | #define SCAN_CHANNEL_FLAGS_DFS BIT(0) | ||
| 141 | #define SCAN_CHANNEL_FLAGS_DFS_ENABLED BIT(1) | ||
| 142 | |||
| 140 | struct conn_scan_ch_params { | 143 | struct conn_scan_ch_params { |
| 141 | __le16 min_duration; | 144 | __le16 min_duration; |
| 142 | __le16 max_duration; | 145 | __le16 max_duration; |
diff --git a/drivers/net/wireless/zd1211rw/zd_usb.c b/drivers/net/wireless/zd1211rw/zd_usb.c index 0e819943b9e4..631194d49828 100644 --- a/drivers/net/wireless/zd1211rw/zd_usb.c +++ b/drivers/net/wireless/zd1211rw/zd_usb.c | |||
| @@ -1533,6 +1533,31 @@ static void __exit usb_exit(void) | |||
| 1533 | module_init(usb_init); | 1533 | module_init(usb_init); |
| 1534 | module_exit(usb_exit); | 1534 | module_exit(usb_exit); |
| 1535 | 1535 | ||
| 1536 | static int zd_ep_regs_out_msg(struct usb_device *udev, void *data, int len, | ||
| 1537 | int *actual_length, int timeout) | ||
| 1538 | { | ||
| 1539 | /* In USB 2.0 mode EP_REGS_OUT endpoint is interrupt type. However in | ||
| 1540 | * USB 1.1 mode endpoint is bulk. Select correct type URB by endpoint | ||
| 1541 | * descriptor. | ||
| 1542 | */ | ||
| 1543 | struct usb_host_endpoint *ep; | ||
| 1544 | unsigned int pipe; | ||
| 1545 | |||
| 1546 | pipe = usb_sndintpipe(udev, EP_REGS_OUT); | ||
| 1547 | ep = usb_pipe_endpoint(udev, pipe); | ||
| 1548 | if (!ep) | ||
| 1549 | return -EINVAL; | ||
| 1550 | |||
| 1551 | if (usb_endpoint_xfer_int(&ep->desc)) { | ||
| 1552 | return usb_interrupt_msg(udev, pipe, data, len, | ||
| 1553 | actual_length, timeout); | ||
| 1554 | } else { | ||
| 1555 | pipe = usb_sndbulkpipe(udev, EP_REGS_OUT); | ||
| 1556 | return usb_bulk_msg(udev, pipe, data, len, actual_length, | ||
| 1557 | timeout); | ||
| 1558 | } | ||
| 1559 | } | ||
| 1560 | |||
| 1536 | static int usb_int_regs_length(unsigned int count) | 1561 | static int usb_int_regs_length(unsigned int count) |
| 1537 | { | 1562 | { |
| 1538 | return sizeof(struct usb_int_regs) + count * sizeof(struct reg_data); | 1563 | return sizeof(struct usb_int_regs) + count * sizeof(struct reg_data); |
| @@ -1648,15 +1673,14 @@ int zd_usb_ioread16v(struct zd_usb *usb, u16 *values, | |||
| 1648 | 1673 | ||
| 1649 | udev = zd_usb_to_usbdev(usb); | 1674 | udev = zd_usb_to_usbdev(usb); |
| 1650 | prepare_read_regs_int(usb); | 1675 | prepare_read_regs_int(usb); |
| 1651 | r = usb_interrupt_msg(udev, usb_sndintpipe(udev, EP_REGS_OUT), | 1676 | r = zd_ep_regs_out_msg(udev, req, req_len, &actual_req_len, 50 /*ms*/); |
| 1652 | req, req_len, &actual_req_len, 50 /* ms */); | ||
| 1653 | if (r) { | 1677 | if (r) { |
| 1654 | dev_dbg_f(zd_usb_dev(usb), | 1678 | dev_dbg_f(zd_usb_dev(usb), |
| 1655 | "error in usb_interrupt_msg(). Error number %d\n", r); | 1679 | "error in zd_ep_regs_out_msg(). Error number %d\n", r); |
| 1656 | goto error; | 1680 | goto error; |
| 1657 | } | 1681 | } |
| 1658 | if (req_len != actual_req_len) { | 1682 | if (req_len != actual_req_len) { |
| 1659 | dev_dbg_f(zd_usb_dev(usb), "error in usb_interrupt_msg()\n" | 1683 | dev_dbg_f(zd_usb_dev(usb), "error in zd_ep_regs_out_msg()\n" |
| 1660 | " req_len %d != actual_req_len %d\n", | 1684 | " req_len %d != actual_req_len %d\n", |
| 1661 | req_len, actual_req_len); | 1685 | req_len, actual_req_len); |
| 1662 | r = -EIO; | 1686 | r = -EIO; |
| @@ -1818,9 +1842,17 @@ int zd_usb_iowrite16v_async(struct zd_usb *usb, const struct zd_ioreq16 *ioreqs, | |||
| 1818 | rw->value = cpu_to_le16(ioreqs[i].value); | 1842 | rw->value = cpu_to_le16(ioreqs[i].value); |
| 1819 | } | 1843 | } |
| 1820 | 1844 | ||
| 1821 | usb_fill_int_urb(urb, udev, usb_sndintpipe(udev, EP_REGS_OUT), | 1845 | /* In USB 2.0 mode endpoint is interrupt type. However in USB 1.1 mode |
| 1822 | req, req_len, iowrite16v_urb_complete, usb, | 1846 | * endpoint is bulk. Select correct type URB by endpoint descriptor. |
| 1823 | ep->desc.bInterval); | 1847 | */ |
| 1848 | if (usb_endpoint_xfer_int(&ep->desc)) | ||
| 1849 | usb_fill_int_urb(urb, udev, usb_sndintpipe(udev, EP_REGS_OUT), | ||
| 1850 | req, req_len, iowrite16v_urb_complete, usb, | ||
| 1851 | ep->desc.bInterval); | ||
| 1852 | else | ||
| 1853 | usb_fill_bulk_urb(urb, udev, usb_sndbulkpipe(udev, EP_REGS_OUT), | ||
| 1854 | req, req_len, iowrite16v_urb_complete, usb); | ||
| 1855 | |||
| 1824 | urb->transfer_flags |= URB_FREE_BUFFER; | 1856 | urb->transfer_flags |= URB_FREE_BUFFER; |
| 1825 | 1857 | ||
| 1826 | /* Submit previous URB */ | 1858 | /* Submit previous URB */ |
| @@ -1924,15 +1956,14 @@ int zd_usb_rfwrite(struct zd_usb *usb, u32 value, u8 bits) | |||
| 1924 | } | 1956 | } |
| 1925 | 1957 | ||
| 1926 | udev = zd_usb_to_usbdev(usb); | 1958 | udev = zd_usb_to_usbdev(usb); |
| 1927 | r = usb_interrupt_msg(udev, usb_sndintpipe(udev, EP_REGS_OUT), | 1959 | r = zd_ep_regs_out_msg(udev, req, req_len, &actual_req_len, 50 /*ms*/); |
| 1928 | req, req_len, &actual_req_len, 50 /* ms */); | ||
| 1929 | if (r) { | 1960 | if (r) { |
| 1930 | dev_dbg_f(zd_usb_dev(usb), | 1961 | dev_dbg_f(zd_usb_dev(usb), |
| 1931 | "error in usb_interrupt_msg(). Error number %d\n", r); | 1962 | "error in zd_ep_regs_out_msg(). Error number %d\n", r); |
| 1932 | goto out; | 1963 | goto out; |
| 1933 | } | 1964 | } |
| 1934 | if (req_len != actual_req_len) { | 1965 | if (req_len != actual_req_len) { |
| 1935 | dev_dbg_f(zd_usb_dev(usb), "error in usb_interrupt_msg()" | 1966 | dev_dbg_f(zd_usb_dev(usb), "error in zd_ep_regs_out_msg()" |
| 1936 | " req_len %d != actual_req_len %d\n", | 1967 | " req_len %d != actual_req_len %d\n", |
| 1937 | req_len, actual_req_len); | 1968 | req_len, actual_req_len); |
| 1938 | r = -EIO; | 1969 | r = -EIO; |
diff --git a/include/linux/ieee80211.h b/include/linux/ieee80211.h index b2eee5879883..bf56b6f78270 100644 --- a/include/linux/ieee80211.h +++ b/include/linux/ieee80211.h | |||
| @@ -1003,8 +1003,12 @@ struct ieee80211_ht_info { | |||
| 1003 | #define WLAN_CAPABILITY_ESS (1<<0) | 1003 | #define WLAN_CAPABILITY_ESS (1<<0) |
| 1004 | #define WLAN_CAPABILITY_IBSS (1<<1) | 1004 | #define WLAN_CAPABILITY_IBSS (1<<1) |
| 1005 | 1005 | ||
| 1006 | /* A mesh STA sets the ESS and IBSS capability bits to zero */ | 1006 | /* |
| 1007 | #define WLAN_CAPABILITY_IS_MBSS(cap) \ | 1007 | * A mesh STA sets the ESS and IBSS capability bits to zero. |
| 1008 | * however, this holds true for p2p probe responses (in the p2p_find | ||
| 1009 | * phase) as well. | ||
| 1010 | */ | ||
| 1011 | #define WLAN_CAPABILITY_IS_STA_BSS(cap) \ | ||
| 1008 | (!((cap) & (WLAN_CAPABILITY_ESS | WLAN_CAPABILITY_IBSS))) | 1012 | (!((cap) & (WLAN_CAPABILITY_ESS | WLAN_CAPABILITY_IBSS))) |
| 1009 | 1013 | ||
| 1010 | #define WLAN_CAPABILITY_CF_POLLABLE (1<<2) | 1014 | #define WLAN_CAPABILITY_CF_POLLABLE (1<<2) |
diff --git a/include/linux/if_packet.h b/include/linux/if_packet.h index 72bfa5a034dd..6d66ce1791a9 100644 --- a/include/linux/if_packet.h +++ b/include/linux/if_packet.h | |||
| @@ -70,6 +70,7 @@ struct tpacket_auxdata { | |||
| 70 | #define TP_STATUS_COPY 0x2 | 70 | #define TP_STATUS_COPY 0x2 |
| 71 | #define TP_STATUS_LOSING 0x4 | 71 | #define TP_STATUS_LOSING 0x4 |
| 72 | #define TP_STATUS_CSUMNOTREADY 0x8 | 72 | #define TP_STATUS_CSUMNOTREADY 0x8 |
| 73 | #define TP_STATUS_VLAN_VALID 0x10 /* auxdata has valid tp_vlan_tci */ | ||
| 73 | 74 | ||
| 74 | /* Tx ring - header status */ | 75 | /* Tx ring - header status */ |
| 75 | #define TP_STATUS_AVAILABLE 0x0 | 76 | #define TP_STATUS_AVAILABLE 0x0 |
diff --git a/include/net/sctp/command.h b/include/net/sctp/command.h index 2b447646ce4b..dd6847e5d6e4 100644 --- a/include/net/sctp/command.h +++ b/include/net/sctp/command.h | |||
| @@ -107,6 +107,7 @@ typedef enum { | |||
| 107 | SCTP_CMD_UPDATE_INITTAG, /* Update peer inittag */ | 107 | SCTP_CMD_UPDATE_INITTAG, /* Update peer inittag */ |
| 108 | SCTP_CMD_SEND_MSG, /* Send the whole use message */ | 108 | SCTP_CMD_SEND_MSG, /* Send the whole use message */ |
| 109 | SCTP_CMD_SEND_NEXT_ASCONF, /* Send the next ASCONF after ACK */ | 109 | SCTP_CMD_SEND_NEXT_ASCONF, /* Send the next ASCONF after ACK */ |
| 110 | SCTP_CMD_PURGE_ASCONF_QUEUE, /* Purge all asconf queues.*/ | ||
| 110 | SCTP_CMD_LAST | 111 | SCTP_CMD_LAST |
| 111 | } sctp_verb_t; | 112 | } sctp_verb_t; |
| 112 | 113 | ||
diff --git a/include/net/sctp/structs.h b/include/net/sctp/structs.h index 795f4886e111..7df327a6d564 100644 --- a/include/net/sctp/structs.h +++ b/include/net/sctp/structs.h | |||
| @@ -1993,7 +1993,7 @@ void sctp_assoc_clean_asconf_ack_cache(const struct sctp_association *asoc); | |||
| 1993 | struct sctp_chunk *sctp_assoc_lookup_asconf_ack( | 1993 | struct sctp_chunk *sctp_assoc_lookup_asconf_ack( |
| 1994 | const struct sctp_association *asoc, | 1994 | const struct sctp_association *asoc, |
| 1995 | __be32 serial); | 1995 | __be32 serial); |
| 1996 | 1996 | void sctp_asconf_queue_teardown(struct sctp_association *asoc); | |
| 1997 | 1997 | ||
| 1998 | int sctp_cmp_addr_exact(const union sctp_addr *ss1, | 1998 | int sctp_cmp_addr_exact(const union sctp_addr *ss1, |
| 1999 | const union sctp_addr *ss2); | 1999 | const union sctp_addr *ss2); |
diff --git a/include/trace/events/net.h b/include/trace/events/net.h index 5f247f5ffc56..f99645d05a8f 100644 --- a/include/trace/events/net.h +++ b/include/trace/events/net.h | |||
| @@ -12,22 +12,24 @@ | |||
| 12 | TRACE_EVENT(net_dev_xmit, | 12 | TRACE_EVENT(net_dev_xmit, |
| 13 | 13 | ||
| 14 | TP_PROTO(struct sk_buff *skb, | 14 | TP_PROTO(struct sk_buff *skb, |
| 15 | int rc), | 15 | int rc, |
| 16 | struct net_device *dev, | ||
| 17 | unsigned int skb_len), | ||
| 16 | 18 | ||
| 17 | TP_ARGS(skb, rc), | 19 | TP_ARGS(skb, rc, dev, skb_len), |
| 18 | 20 | ||
| 19 | TP_STRUCT__entry( | 21 | TP_STRUCT__entry( |
| 20 | __field( void *, skbaddr ) | 22 | __field( void *, skbaddr ) |
| 21 | __field( unsigned int, len ) | 23 | __field( unsigned int, len ) |
| 22 | __field( int, rc ) | 24 | __field( int, rc ) |
| 23 | __string( name, skb->dev->name ) | 25 | __string( name, dev->name ) |
| 24 | ), | 26 | ), |
| 25 | 27 | ||
| 26 | TP_fast_assign( | 28 | TP_fast_assign( |
| 27 | __entry->skbaddr = skb; | 29 | __entry->skbaddr = skb; |
| 28 | __entry->len = skb->len; | 30 | __entry->len = skb_len; |
| 29 | __entry->rc = rc; | 31 | __entry->rc = rc; |
| 30 | __assign_str(name, skb->dev->name); | 32 | __assign_str(name, dev->name); |
| 31 | ), | 33 | ), |
| 32 | 34 | ||
| 33 | TP_printk("dev=%s skbaddr=%p len=%u rc=%d", | 35 | TP_printk("dev=%s skbaddr=%p len=%u rc=%d", |
diff --git a/net/8021q/vlan_dev.c b/net/8021q/vlan_dev.c index f247f5bff88d..7ea5cf9ea08a 100644 --- a/net/8021q/vlan_dev.c +++ b/net/8021q/vlan_dev.c | |||
| @@ -165,7 +165,7 @@ static netdev_tx_t vlan_dev_hard_start_xmit(struct sk_buff *skb, | |||
| 165 | u64_stats_update_begin(&stats->syncp); | 165 | u64_stats_update_begin(&stats->syncp); |
| 166 | stats->tx_packets++; | 166 | stats->tx_packets++; |
| 167 | stats->tx_bytes += len; | 167 | stats->tx_bytes += len; |
| 168 | u64_stats_update_begin(&stats->syncp); | 168 | u64_stats_update_end(&stats->syncp); |
| 169 | } else { | 169 | } else { |
| 170 | this_cpu_inc(vlan_dev_info(dev)->vlan_pcpu_stats->tx_dropped); | 170 | this_cpu_inc(vlan_dev_info(dev)->vlan_pcpu_stats->tx_dropped); |
| 171 | } | 171 | } |
diff --git a/net/bluetooth/l2cap_core.c b/net/bluetooth/l2cap_core.c index a86f9ba4f05c..e64a1c2df238 100644 --- a/net/bluetooth/l2cap_core.c +++ b/net/bluetooth/l2cap_core.c | |||
| @@ -906,7 +906,7 @@ static struct l2cap_chan *l2cap_global_chan_by_psm(int state, __le16 psm, bdaddr | |||
| 906 | if (c->psm == psm) { | 906 | if (c->psm == psm) { |
| 907 | /* Exact match. */ | 907 | /* Exact match. */ |
| 908 | if (!bacmp(&bt_sk(sk)->src, src)) { | 908 | if (!bacmp(&bt_sk(sk)->src, src)) { |
| 909 | read_unlock_bh(&chan_list_lock); | 909 | read_unlock(&chan_list_lock); |
| 910 | return c; | 910 | return c; |
| 911 | } | 911 | } |
| 912 | 912 | ||
diff --git a/net/caif/chnl_net.c b/net/caif/chnl_net.c index 649ebacaf6bc..adbb424403d4 100644 --- a/net/caif/chnl_net.c +++ b/net/caif/chnl_net.c | |||
| @@ -139,17 +139,14 @@ static void close_work(struct work_struct *work) | |||
| 139 | struct chnl_net *dev = NULL; | 139 | struct chnl_net *dev = NULL; |
| 140 | struct list_head *list_node; | 140 | struct list_head *list_node; |
| 141 | struct list_head *_tmp; | 141 | struct list_head *_tmp; |
| 142 | /* May be called with or without RTNL lock held */ | 142 | |
| 143 | int islocked = rtnl_is_locked(); | 143 | rtnl_lock(); |
| 144 | if (!islocked) | ||
| 145 | rtnl_lock(); | ||
| 146 | list_for_each_safe(list_node, _tmp, &chnl_net_list) { | 144 | list_for_each_safe(list_node, _tmp, &chnl_net_list) { |
| 147 | dev = list_entry(list_node, struct chnl_net, list_field); | 145 | dev = list_entry(list_node, struct chnl_net, list_field); |
| 148 | if (dev->state == CAIF_SHUTDOWN) | 146 | if (dev->state == CAIF_SHUTDOWN) |
| 149 | dev_close(dev->netdev); | 147 | dev_close(dev->netdev); |
| 150 | } | 148 | } |
| 151 | if (!islocked) | 149 | rtnl_unlock(); |
| 152 | rtnl_unlock(); | ||
| 153 | } | 150 | } |
| 154 | static DECLARE_WORK(close_worker, close_work); | 151 | static DECLARE_WORK(close_worker, close_work); |
| 155 | 152 | ||
diff --git a/net/core/dev.c b/net/core/dev.c index c7e305d13b71..939307891e71 100644 --- a/net/core/dev.c +++ b/net/core/dev.c | |||
| @@ -2096,6 +2096,7 @@ int dev_hard_start_xmit(struct sk_buff *skb, struct net_device *dev, | |||
| 2096 | { | 2096 | { |
| 2097 | const struct net_device_ops *ops = dev->netdev_ops; | 2097 | const struct net_device_ops *ops = dev->netdev_ops; |
| 2098 | int rc = NETDEV_TX_OK; | 2098 | int rc = NETDEV_TX_OK; |
| 2099 | unsigned int skb_len; | ||
| 2099 | 2100 | ||
| 2100 | if (likely(!skb->next)) { | 2101 | if (likely(!skb->next)) { |
| 2101 | u32 features; | 2102 | u32 features; |
| @@ -2146,8 +2147,9 @@ int dev_hard_start_xmit(struct sk_buff *skb, struct net_device *dev, | |||
| 2146 | } | 2147 | } |
| 2147 | } | 2148 | } |
| 2148 | 2149 | ||
| 2150 | skb_len = skb->len; | ||
| 2149 | rc = ops->ndo_start_xmit(skb, dev); | 2151 | rc = ops->ndo_start_xmit(skb, dev); |
| 2150 | trace_net_dev_xmit(skb, rc); | 2152 | trace_net_dev_xmit(skb, rc, dev, skb_len); |
| 2151 | if (rc == NETDEV_TX_OK) | 2153 | if (rc == NETDEV_TX_OK) |
| 2152 | txq_trans_update(txq); | 2154 | txq_trans_update(txq); |
| 2153 | return rc; | 2155 | return rc; |
| @@ -2167,8 +2169,9 @@ gso: | |||
| 2167 | if (dev->priv_flags & IFF_XMIT_DST_RELEASE) | 2169 | if (dev->priv_flags & IFF_XMIT_DST_RELEASE) |
| 2168 | skb_dst_drop(nskb); | 2170 | skb_dst_drop(nskb); |
| 2169 | 2171 | ||
| 2172 | skb_len = nskb->len; | ||
| 2170 | rc = ops->ndo_start_xmit(nskb, dev); | 2173 | rc = ops->ndo_start_xmit(nskb, dev); |
| 2171 | trace_net_dev_xmit(nskb, rc); | 2174 | trace_net_dev_xmit(nskb, rc, dev, skb_len); |
| 2172 | if (unlikely(rc != NETDEV_TX_OK)) { | 2175 | if (unlikely(rc != NETDEV_TX_OK)) { |
| 2173 | if (rc & ~NETDEV_TX_MASK) | 2176 | if (rc & ~NETDEV_TX_MASK) |
| 2174 | goto out_kfree_gso_skb; | 2177 | goto out_kfree_gso_skb; |
diff --git a/net/ipv4/af_inet.c b/net/ipv4/af_inet.c index cc1463156cd0..9c1926027a26 100644 --- a/net/ipv4/af_inet.c +++ b/net/ipv4/af_inet.c | |||
| @@ -465,6 +465,9 @@ int inet_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len) | |||
| 465 | if (addr_len < sizeof(struct sockaddr_in)) | 465 | if (addr_len < sizeof(struct sockaddr_in)) |
| 466 | goto out; | 466 | goto out; |
| 467 | 467 | ||
| 468 | if (addr->sin_family != AF_INET) | ||
| 469 | goto out; | ||
| 470 | |||
| 468 | chk_addr_ret = inet_addr_type(sock_net(sk), addr->sin_addr.s_addr); | 471 | chk_addr_ret = inet_addr_type(sock_net(sk), addr->sin_addr.s_addr); |
| 469 | 472 | ||
| 470 | /* Not specified by any standard per-se, however it breaks too | 473 | /* Not specified by any standard per-se, however it breaks too |
diff --git a/net/ipv4/ip_options.c b/net/ipv4/ip_options.c index c3118e1cd3bb..ec93335901dd 100644 --- a/net/ipv4/ip_options.c +++ b/net/ipv4/ip_options.c | |||
| @@ -14,6 +14,7 @@ | |||
| 14 | #include <linux/slab.h> | 14 | #include <linux/slab.h> |
| 15 | #include <linux/types.h> | 15 | #include <linux/types.h> |
| 16 | #include <asm/uaccess.h> | 16 | #include <asm/uaccess.h> |
| 17 | #include <asm/unaligned.h> | ||
| 17 | #include <linux/skbuff.h> | 18 | #include <linux/skbuff.h> |
| 18 | #include <linux/ip.h> | 19 | #include <linux/ip.h> |
| 19 | #include <linux/icmp.h> | 20 | #include <linux/icmp.h> |
| @@ -350,7 +351,7 @@ int ip_options_compile(struct net *net, | |||
| 350 | goto error; | 351 | goto error; |
| 351 | } | 352 | } |
| 352 | if (optptr[2] <= optlen) { | 353 | if (optptr[2] <= optlen) { |
| 353 | __be32 *timeptr = NULL; | 354 | unsigned char *timeptr = NULL; |
| 354 | if (optptr[2]+3 > optptr[1]) { | 355 | if (optptr[2]+3 > optptr[1]) { |
| 355 | pp_ptr = optptr + 2; | 356 | pp_ptr = optptr + 2; |
| 356 | goto error; | 357 | goto error; |
| @@ -359,7 +360,7 @@ int ip_options_compile(struct net *net, | |||
| 359 | case IPOPT_TS_TSONLY: | 360 | case IPOPT_TS_TSONLY: |
| 360 | opt->ts = optptr - iph; | 361 | opt->ts = optptr - iph; |
| 361 | if (skb) | 362 | if (skb) |
| 362 | timeptr = (__be32*)&optptr[optptr[2]-1]; | 363 | timeptr = &optptr[optptr[2]-1]; |
| 363 | opt->ts_needtime = 1; | 364 | opt->ts_needtime = 1; |
| 364 | optptr[2] += 4; | 365 | optptr[2] += 4; |
| 365 | break; | 366 | break; |
| @@ -371,7 +372,7 @@ int ip_options_compile(struct net *net, | |||
| 371 | opt->ts = optptr - iph; | 372 | opt->ts = optptr - iph; |
| 372 | if (rt) { | 373 | if (rt) { |
| 373 | memcpy(&optptr[optptr[2]-1], &rt->rt_spec_dst, 4); | 374 | memcpy(&optptr[optptr[2]-1], &rt->rt_spec_dst, 4); |
| 374 | timeptr = (__be32*)&optptr[optptr[2]+3]; | 375 | timeptr = &optptr[optptr[2]+3]; |
| 375 | } | 376 | } |
| 376 | opt->ts_needaddr = 1; | 377 | opt->ts_needaddr = 1; |
| 377 | opt->ts_needtime = 1; | 378 | opt->ts_needtime = 1; |
| @@ -389,7 +390,7 @@ int ip_options_compile(struct net *net, | |||
| 389 | if (inet_addr_type(net, addr) == RTN_UNICAST) | 390 | if (inet_addr_type(net, addr) == RTN_UNICAST) |
| 390 | break; | 391 | break; |
| 391 | if (skb) | 392 | if (skb) |
| 392 | timeptr = (__be32*)&optptr[optptr[2]+3]; | 393 | timeptr = &optptr[optptr[2]+3]; |
| 393 | } | 394 | } |
| 394 | opt->ts_needtime = 1; | 395 | opt->ts_needtime = 1; |
| 395 | optptr[2] += 8; | 396 | optptr[2] += 8; |
| @@ -403,10 +404,10 @@ int ip_options_compile(struct net *net, | |||
| 403 | } | 404 | } |
| 404 | if (timeptr) { | 405 | if (timeptr) { |
| 405 | struct timespec tv; | 406 | struct timespec tv; |
| 406 | __be32 midtime; | 407 | u32 midtime; |
| 407 | getnstimeofday(&tv); | 408 | getnstimeofday(&tv); |
| 408 | midtime = htonl((tv.tv_sec % 86400) * MSEC_PER_SEC + tv.tv_nsec / NSEC_PER_MSEC); | 409 | midtime = (tv.tv_sec % 86400) * MSEC_PER_SEC + tv.tv_nsec / NSEC_PER_MSEC; |
| 409 | memcpy(timeptr, &midtime, sizeof(__be32)); | 410 | put_unaligned_be32(midtime, timeptr); |
| 410 | opt->is_changed = 1; | 411 | opt->is_changed = 1; |
| 411 | } | 412 | } |
| 412 | } else { | 413 | } else { |
diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c index 4f6b2675e41d..456cccf26b51 100644 --- a/net/mac80211/mlme.c +++ b/net/mac80211/mlme.c | |||
| @@ -232,6 +232,9 @@ static u32 ieee80211_enable_ht(struct ieee80211_sub_if_data *sdata, | |||
| 232 | WARN_ON(!ieee80211_set_channel_type(local, sdata, channel_type)); | 232 | WARN_ON(!ieee80211_set_channel_type(local, sdata, channel_type)); |
| 233 | } | 233 | } |
| 234 | 234 | ||
| 235 | ieee80211_stop_queues_by_reason(&sdata->local->hw, | ||
| 236 | IEEE80211_QUEUE_STOP_REASON_CSA); | ||
| 237 | |||
| 235 | /* channel_type change automatically detected */ | 238 | /* channel_type change automatically detected */ |
| 236 | ieee80211_hw_config(local, 0); | 239 | ieee80211_hw_config(local, 0); |
| 237 | 240 | ||
| @@ -245,6 +248,9 @@ static u32 ieee80211_enable_ht(struct ieee80211_sub_if_data *sdata, | |||
| 245 | rcu_read_unlock(); | 248 | rcu_read_unlock(); |
| 246 | } | 249 | } |
| 247 | 250 | ||
| 251 | ieee80211_wake_queues_by_reason(&sdata->local->hw, | ||
| 252 | IEEE80211_QUEUE_STOP_REASON_CSA); | ||
| 253 | |||
| 248 | ht_opmode = le16_to_cpu(hti->operation_mode); | 254 | ht_opmode = le16_to_cpu(hti->operation_mode); |
| 249 | 255 | ||
| 250 | /* if bss configuration changed store the new one */ | 256 | /* if bss configuration changed store the new one */ |
| @@ -1089,6 +1095,7 @@ static void ieee80211_set_disassoc(struct ieee80211_sub_if_data *sdata, | |||
| 1089 | local->hw.conf.flags &= ~IEEE80211_CONF_PS; | 1095 | local->hw.conf.flags &= ~IEEE80211_CONF_PS; |
| 1090 | config_changed |= IEEE80211_CONF_CHANGE_PS; | 1096 | config_changed |= IEEE80211_CONF_CHANGE_PS; |
| 1091 | } | 1097 | } |
| 1098 | local->ps_sdata = NULL; | ||
| 1092 | 1099 | ||
| 1093 | ieee80211_hw_config(local, config_changed); | 1100 | ieee80211_hw_config(local, config_changed); |
| 1094 | 1101 | ||
diff --git a/net/mac80211/scan.c b/net/mac80211/scan.c index 27af6723cb5e..58ffa7d069c7 100644 --- a/net/mac80211/scan.c +++ b/net/mac80211/scan.c | |||
| @@ -15,7 +15,6 @@ | |||
| 15 | #include <linux/if_arp.h> | 15 | #include <linux/if_arp.h> |
| 16 | #include <linux/rtnetlink.h> | 16 | #include <linux/rtnetlink.h> |
| 17 | #include <linux/pm_qos_params.h> | 17 | #include <linux/pm_qos_params.h> |
| 18 | #include <linux/slab.h> | ||
| 19 | #include <net/sch_generic.h> | 18 | #include <net/sch_generic.h> |
| 20 | #include <linux/slab.h> | 19 | #include <linux/slab.h> |
| 21 | #include <net/mac80211.h> | 20 | #include <net/mac80211.h> |
diff --git a/net/packet/af_packet.c b/net/packet/af_packet.c index 925f715686a5..ba248d93399a 100644 --- a/net/packet/af_packet.c +++ b/net/packet/af_packet.c | |||
| @@ -798,7 +798,12 @@ static int tpacket_rcv(struct sk_buff *skb, struct net_device *dev, | |||
| 798 | getnstimeofday(&ts); | 798 | getnstimeofday(&ts); |
| 799 | h.h2->tp_sec = ts.tv_sec; | 799 | h.h2->tp_sec = ts.tv_sec; |
| 800 | h.h2->tp_nsec = ts.tv_nsec; | 800 | h.h2->tp_nsec = ts.tv_nsec; |
| 801 | h.h2->tp_vlan_tci = vlan_tx_tag_get(skb); | 801 | if (vlan_tx_tag_present(skb)) { |
| 802 | h.h2->tp_vlan_tci = vlan_tx_tag_get(skb); | ||
| 803 | status |= TP_STATUS_VLAN_VALID; | ||
| 804 | } else { | ||
| 805 | h.h2->tp_vlan_tci = 0; | ||
| 806 | } | ||
| 802 | hdrlen = sizeof(*h.h2); | 807 | hdrlen = sizeof(*h.h2); |
| 803 | break; | 808 | break; |
| 804 | default: | 809 | default: |
| @@ -1725,8 +1730,12 @@ static int packet_recvmsg(struct kiocb *iocb, struct socket *sock, | |||
| 1725 | aux.tp_snaplen = skb->len; | 1730 | aux.tp_snaplen = skb->len; |
| 1726 | aux.tp_mac = 0; | 1731 | aux.tp_mac = 0; |
| 1727 | aux.tp_net = skb_network_offset(skb); | 1732 | aux.tp_net = skb_network_offset(skb); |
| 1728 | aux.tp_vlan_tci = vlan_tx_tag_get(skb); | 1733 | if (vlan_tx_tag_present(skb)) { |
| 1729 | 1734 | aux.tp_vlan_tci = vlan_tx_tag_get(skb); | |
| 1735 | aux.tp_status |= TP_STATUS_VLAN_VALID; | ||
| 1736 | } else { | ||
| 1737 | aux.tp_vlan_tci = 0; | ||
| 1738 | } | ||
| 1730 | put_cmsg(msg, SOL_PACKET, PACKET_AUXDATA, sizeof(aux), &aux); | 1739 | put_cmsg(msg, SOL_PACKET, PACKET_AUXDATA, sizeof(aux), &aux); |
| 1731 | } | 1740 | } |
| 1732 | 1741 | ||
diff --git a/net/sctp/associola.c b/net/sctp/associola.c index 525f97c467e9..4a62888f2e43 100644 --- a/net/sctp/associola.c +++ b/net/sctp/associola.c | |||
| @@ -444,15 +444,7 @@ void sctp_association_free(struct sctp_association *asoc) | |||
| 444 | 444 | ||
| 445 | asoc->peer.transport_count = 0; | 445 | asoc->peer.transport_count = 0; |
| 446 | 446 | ||
| 447 | /* Free any cached ASCONF_ACK chunk. */ | 447 | sctp_asconf_queue_teardown(asoc); |
| 448 | sctp_assoc_free_asconf_acks(asoc); | ||
| 449 | |||
| 450 | /* Free the ASCONF queue. */ | ||
| 451 | sctp_assoc_free_asconf_queue(asoc); | ||
| 452 | |||
| 453 | /* Free any cached ASCONF chunk. */ | ||
| 454 | if (asoc->addip_last_asconf) | ||
| 455 | sctp_chunk_free(asoc->addip_last_asconf); | ||
| 456 | 448 | ||
| 457 | /* AUTH - Free the endpoint shared keys */ | 449 | /* AUTH - Free the endpoint shared keys */ |
| 458 | sctp_auth_destroy_keys(&asoc->endpoint_shared_keys); | 450 | sctp_auth_destroy_keys(&asoc->endpoint_shared_keys); |
| @@ -1646,3 +1638,16 @@ struct sctp_chunk *sctp_assoc_lookup_asconf_ack( | |||
| 1646 | 1638 | ||
| 1647 | return NULL; | 1639 | return NULL; |
| 1648 | } | 1640 | } |
| 1641 | |||
| 1642 | void sctp_asconf_queue_teardown(struct sctp_association *asoc) | ||
| 1643 | { | ||
| 1644 | /* Free any cached ASCONF_ACK chunk. */ | ||
| 1645 | sctp_assoc_free_asconf_acks(asoc); | ||
| 1646 | |||
| 1647 | /* Free the ASCONF queue. */ | ||
| 1648 | sctp_assoc_free_asconf_queue(asoc); | ||
| 1649 | |||
| 1650 | /* Free any cached ASCONF chunk. */ | ||
| 1651 | if (asoc->addip_last_asconf) | ||
| 1652 | sctp_chunk_free(asoc->addip_last_asconf); | ||
| 1653 | } | ||
diff --git a/net/sctp/sm_sideeffect.c b/net/sctp/sm_sideeffect.c index d612ca1ca6c0..534c2e5feb05 100644 --- a/net/sctp/sm_sideeffect.c +++ b/net/sctp/sm_sideeffect.c | |||
| @@ -1670,6 +1670,9 @@ static int sctp_cmd_interpreter(sctp_event_t event_type, | |||
| 1670 | case SCTP_CMD_SEND_NEXT_ASCONF: | 1670 | case SCTP_CMD_SEND_NEXT_ASCONF: |
| 1671 | sctp_cmd_send_asconf(asoc); | 1671 | sctp_cmd_send_asconf(asoc); |
| 1672 | break; | 1672 | break; |
| 1673 | case SCTP_CMD_PURGE_ASCONF_QUEUE: | ||
| 1674 | sctp_asconf_queue_teardown(asoc); | ||
| 1675 | break; | ||
| 1673 | default: | 1676 | default: |
| 1674 | pr_warn("Impossible command: %u, %p\n", | 1677 | pr_warn("Impossible command: %u, %p\n", |
| 1675 | cmd->verb, cmd->obj.ptr); | 1678 | cmd->verb, cmd->obj.ptr); |
diff --git a/net/sctp/sm_statefuns.c b/net/sctp/sm_statefuns.c index 7f4a4f8368ee..a297283154d5 100644 --- a/net/sctp/sm_statefuns.c +++ b/net/sctp/sm_statefuns.c | |||
| @@ -1718,11 +1718,21 @@ static sctp_disposition_t sctp_sf_do_dupcook_a(const struct sctp_endpoint *ep, | |||
| 1718 | return SCTP_DISPOSITION_CONSUME; | 1718 | return SCTP_DISPOSITION_CONSUME; |
| 1719 | } | 1719 | } |
| 1720 | 1720 | ||
| 1721 | /* For now, fail any unsent/unacked data. Consider the optional | 1721 | /* For now, stop pending T3-rtx and SACK timers, fail any unsent/unacked |
| 1722 | * choice of resending of this data. | 1722 | * data. Consider the optional choice of resending of this data. |
| 1723 | */ | 1723 | */ |
| 1724 | sctp_add_cmd_sf(commands, SCTP_CMD_T3_RTX_TIMERS_STOP, SCTP_NULL()); | ||
| 1725 | sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP, | ||
| 1726 | SCTP_TO(SCTP_EVENT_TIMEOUT_SACK)); | ||
| 1724 | sctp_add_cmd_sf(commands, SCTP_CMD_PURGE_OUTQUEUE, SCTP_NULL()); | 1727 | sctp_add_cmd_sf(commands, SCTP_CMD_PURGE_OUTQUEUE, SCTP_NULL()); |
| 1725 | 1728 | ||
| 1729 | /* Stop pending T4-rto timer, teardown ASCONF queue, ASCONF-ACK queue | ||
| 1730 | * and ASCONF-ACK cache. | ||
| 1731 | */ | ||
| 1732 | sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP, | ||
| 1733 | SCTP_TO(SCTP_EVENT_TIMEOUT_T4_RTO)); | ||
| 1734 | sctp_add_cmd_sf(commands, SCTP_CMD_PURGE_ASCONF_QUEUE, SCTP_NULL()); | ||
| 1735 | |||
| 1726 | repl = sctp_make_cookie_ack(new_asoc, chunk); | 1736 | repl = sctp_make_cookie_ack(new_asoc, chunk); |
| 1727 | if (!repl) | 1737 | if (!repl) |
| 1728 | goto nomem; | 1738 | goto nomem; |
diff --git a/net/wireless/nl80211.c b/net/wireless/nl80211.c index ec83f413a7ed..88a565f130a5 100644 --- a/net/wireless/nl80211.c +++ b/net/wireless/nl80211.c | |||
| @@ -3406,12 +3406,12 @@ static int nl80211_trigger_scan(struct sk_buff *skb, struct genl_info *info) | |||
| 3406 | i = 0; | 3406 | i = 0; |
| 3407 | if (info->attrs[NL80211_ATTR_SCAN_SSIDS]) { | 3407 | if (info->attrs[NL80211_ATTR_SCAN_SSIDS]) { |
| 3408 | nla_for_each_nested(attr, info->attrs[NL80211_ATTR_SCAN_SSIDS], tmp) { | 3408 | nla_for_each_nested(attr, info->attrs[NL80211_ATTR_SCAN_SSIDS], tmp) { |
| 3409 | request->ssids[i].ssid_len = nla_len(attr); | ||
| 3409 | if (request->ssids[i].ssid_len > IEEE80211_MAX_SSID_LEN) { | 3410 | if (request->ssids[i].ssid_len > IEEE80211_MAX_SSID_LEN) { |
| 3410 | err = -EINVAL; | 3411 | err = -EINVAL; |
| 3411 | goto out_free; | 3412 | goto out_free; |
| 3412 | } | 3413 | } |
| 3413 | memcpy(request->ssids[i].ssid, nla_data(attr), nla_len(attr)); | 3414 | memcpy(request->ssids[i].ssid, nla_data(attr), nla_len(attr)); |
| 3414 | request->ssids[i].ssid_len = nla_len(attr); | ||
| 3415 | i++; | 3415 | i++; |
| 3416 | } | 3416 | } |
| 3417 | } | 3417 | } |
| @@ -3572,6 +3572,7 @@ static int nl80211_start_sched_scan(struct sk_buff *skb, | |||
| 3572 | if (info->attrs[NL80211_ATTR_SCAN_SSIDS]) { | 3572 | if (info->attrs[NL80211_ATTR_SCAN_SSIDS]) { |
| 3573 | nla_for_each_nested(attr, info->attrs[NL80211_ATTR_SCAN_SSIDS], | 3573 | nla_for_each_nested(attr, info->attrs[NL80211_ATTR_SCAN_SSIDS], |
| 3574 | tmp) { | 3574 | tmp) { |
| 3575 | request->ssids[i].ssid_len = nla_len(attr); | ||
| 3575 | if (request->ssids[i].ssid_len > | 3576 | if (request->ssids[i].ssid_len > |
| 3576 | IEEE80211_MAX_SSID_LEN) { | 3577 | IEEE80211_MAX_SSID_LEN) { |
| 3577 | err = -EINVAL; | 3578 | err = -EINVAL; |
| @@ -3579,7 +3580,6 @@ static int nl80211_start_sched_scan(struct sk_buff *skb, | |||
| 3579 | } | 3580 | } |
| 3580 | memcpy(request->ssids[i].ssid, nla_data(attr), | 3581 | memcpy(request->ssids[i].ssid, nla_data(attr), |
| 3581 | nla_len(attr)); | 3582 | nla_len(attr)); |
| 3582 | request->ssids[i].ssid_len = nla_len(attr); | ||
| 3583 | i++; | 3583 | i++; |
| 3584 | } | 3584 | } |
| 3585 | } | 3585 | } |
diff --git a/net/wireless/scan.c b/net/wireless/scan.c index 73a441d237b5..7a6c67667d70 100644 --- a/net/wireless/scan.c +++ b/net/wireless/scan.c | |||
| @@ -267,13 +267,35 @@ static bool is_bss(struct cfg80211_bss *a, | |||
| 267 | return memcmp(ssidie + 2, ssid, ssid_len) == 0; | 267 | return memcmp(ssidie + 2, ssid, ssid_len) == 0; |
| 268 | } | 268 | } |
| 269 | 269 | ||
| 270 | static bool is_mesh_bss(struct cfg80211_bss *a) | ||
| 271 | { | ||
| 272 | const u8 *ie; | ||
| 273 | |||
| 274 | if (!WLAN_CAPABILITY_IS_STA_BSS(a->capability)) | ||
| 275 | return false; | ||
| 276 | |||
| 277 | ie = cfg80211_find_ie(WLAN_EID_MESH_ID, | ||
| 278 | a->information_elements, | ||
| 279 | a->len_information_elements); | ||
| 280 | if (!ie) | ||
| 281 | return false; | ||
| 282 | |||
| 283 | ie = cfg80211_find_ie(WLAN_EID_MESH_CONFIG, | ||
| 284 | a->information_elements, | ||
| 285 | a->len_information_elements); | ||
| 286 | if (!ie) | ||
| 287 | return false; | ||
| 288 | |||
| 289 | return true; | ||
| 290 | } | ||
| 291 | |||
| 270 | static bool is_mesh(struct cfg80211_bss *a, | 292 | static bool is_mesh(struct cfg80211_bss *a, |
| 271 | const u8 *meshid, size_t meshidlen, | 293 | const u8 *meshid, size_t meshidlen, |
| 272 | const u8 *meshcfg) | 294 | const u8 *meshcfg) |
| 273 | { | 295 | { |
| 274 | const u8 *ie; | 296 | const u8 *ie; |
| 275 | 297 | ||
| 276 | if (!WLAN_CAPABILITY_IS_MBSS(a->capability)) | 298 | if (!WLAN_CAPABILITY_IS_STA_BSS(a->capability)) |
| 277 | return false; | 299 | return false; |
| 278 | 300 | ||
| 279 | ie = cfg80211_find_ie(WLAN_EID_MESH_ID, | 301 | ie = cfg80211_find_ie(WLAN_EID_MESH_ID, |
| @@ -311,7 +333,7 @@ static int cmp_bss(struct cfg80211_bss *a, | |||
| 311 | if (a->channel != b->channel) | 333 | if (a->channel != b->channel) |
| 312 | return b->channel->center_freq - a->channel->center_freq; | 334 | return b->channel->center_freq - a->channel->center_freq; |
| 313 | 335 | ||
| 314 | if (WLAN_CAPABILITY_IS_MBSS(a->capability | b->capability)) { | 336 | if (is_mesh_bss(a) && is_mesh_bss(b)) { |
| 315 | r = cmp_ies(WLAN_EID_MESH_ID, | 337 | r = cmp_ies(WLAN_EID_MESH_ID, |
| 316 | a->information_elements, | 338 | a->information_elements, |
| 317 | a->len_information_elements, | 339 | a->len_information_elements, |
| @@ -457,7 +479,6 @@ cfg80211_bss_update(struct cfg80211_registered_device *dev, | |||
| 457 | struct cfg80211_internal_bss *res) | 479 | struct cfg80211_internal_bss *res) |
| 458 | { | 480 | { |
| 459 | struct cfg80211_internal_bss *found = NULL; | 481 | struct cfg80211_internal_bss *found = NULL; |
| 460 | const u8 *meshid, *meshcfg; | ||
| 461 | 482 | ||
| 462 | /* | 483 | /* |
| 463 | * The reference to "res" is donated to this function. | 484 | * The reference to "res" is donated to this function. |
| @@ -470,22 +491,6 @@ cfg80211_bss_update(struct cfg80211_registered_device *dev, | |||
| 470 | 491 | ||
| 471 | res->ts = jiffies; | 492 | res->ts = jiffies; |
| 472 | 493 | ||
| 473 | if (WLAN_CAPABILITY_IS_MBSS(res->pub.capability)) { | ||
| 474 | /* must be mesh, verify */ | ||
| 475 | meshid = cfg80211_find_ie(WLAN_EID_MESH_ID, | ||
| 476 | res->pub.information_elements, | ||
| 477 | res->pub.len_information_elements); | ||
| 478 | meshcfg = cfg80211_find_ie(WLAN_EID_MESH_CONFIG, | ||
| 479 | res->pub.information_elements, | ||
| 480 | res->pub.len_information_elements); | ||
| 481 | if (!meshid || !meshcfg || | ||
| 482 | meshcfg[1] != sizeof(struct ieee80211_meshconf_ie)) { | ||
| 483 | /* bogus mesh */ | ||
| 484 | kref_put(&res->ref, bss_release); | ||
| 485 | return NULL; | ||
| 486 | } | ||
| 487 | } | ||
| 488 | |||
| 489 | spin_lock_bh(&dev->bss_lock); | 494 | spin_lock_bh(&dev->bss_lock); |
| 490 | 495 | ||
| 491 | found = rb_find_bss(dev, res); | 496 | found = rb_find_bss(dev, res); |
