diff options
72 files changed, 734 insertions, 438 deletions
diff --git a/Documentation/networking/bonding.txt b/Documentation/networking/bonding.txt index 5ede7473b425..08762750f121 100644 --- a/Documentation/networking/bonding.txt +++ b/Documentation/networking/bonding.txt | |||
| @@ -1242,7 +1242,7 @@ monitoring is enabled, and vice-versa. | |||
| 1242 | To add ARP targets: | 1242 | To add ARP targets: |
| 1243 | # echo +192.168.0.100 > /sys/class/net/bond0/bonding/arp_ip_target | 1243 | # echo +192.168.0.100 > /sys/class/net/bond0/bonding/arp_ip_target |
| 1244 | # echo +192.168.0.101 > /sys/class/net/bond0/bonding/arp_ip_target | 1244 | # echo +192.168.0.101 > /sys/class/net/bond0/bonding/arp_ip_target |
| 1245 | NOTE: up to 10 target addresses may be specified. | 1245 | NOTE: up to 16 target addresses may be specified. |
| 1246 | 1246 | ||
| 1247 | To remove an ARP target: | 1247 | To remove an ARP target: |
| 1248 | # echo -192.168.0.100 > /sys/class/net/bond0/bonding/arp_ip_target | 1248 | # echo -192.168.0.100 > /sys/class/net/bond0/bonding/arp_ip_target |
diff --git a/MAINTAINERS b/MAINTAINERS index 0cb20d821694..abbedb658c29 100644 --- a/MAINTAINERS +++ b/MAINTAINERS | |||
| @@ -3917,19 +3917,12 @@ F: Documentation/blockdev/nbd.txt | |||
| 3917 | F: drivers/block/nbd.c | 3917 | F: drivers/block/nbd.c |
| 3918 | F: include/linux/nbd.h | 3918 | F: include/linux/nbd.h |
| 3919 | 3919 | ||
| 3920 | NETWORK DEVICE DRIVERS | ||
| 3921 | P: Jeff Garzik | ||
| 3922 | M: jgarzik@pobox.com | ||
| 3923 | L: netdev@vger.kernel.org | ||
| 3924 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git | ||
| 3925 | S: Maintained | ||
| 3926 | F: drivers/net/ | ||
| 3927 | |||
| 3928 | NETWORKING [GENERAL] | 3920 | NETWORKING [GENERAL] |
| 3929 | P: Networking Team | 3921 | P: David S. Miller |
| 3930 | M: netdev@vger.kernel.org | 3922 | M: davem@davemloft.net |
| 3931 | L: netdev@vger.kernel.org | 3923 | L: netdev@vger.kernel.org |
| 3932 | W: http://linux-net.osdl.org/ | 3924 | W: http://linux-net.osdl.org/ |
| 3925 | T: git kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git | ||
| 3933 | S: Maintained | 3926 | S: Maintained |
| 3934 | F: net/ | 3927 | F: net/ |
| 3935 | F: include/net/ | 3928 | F: include/net/ |
diff --git a/drivers/net/a2065.c b/drivers/net/a2065.c index d0d0c2fee054..02f64d578641 100644 --- a/drivers/net/a2065.c +++ b/drivers/net/a2065.c | |||
| @@ -692,6 +692,17 @@ static struct zorro_driver a2065_driver = { | |||
| 692 | .remove = __devexit_p(a2065_remove_one), | 692 | .remove = __devexit_p(a2065_remove_one), |
| 693 | }; | 693 | }; |
| 694 | 694 | ||
| 695 | static const struct net_device_ops lance_netdev_ops = { | ||
| 696 | .ndo_open = lance_open, | ||
| 697 | .ndo_stop = lance_close, | ||
| 698 | .ndo_start_xmit = lance_start_xmit, | ||
| 699 | .ndo_tx_timeout = lance_tx_timeout, | ||
| 700 | .ndo_set_multicast_list = lance_set_multicast, | ||
| 701 | .ndo_validate_addr = eth_validate_addr, | ||
| 702 | .ndo_change_mtu = eth_change_mtu, | ||
| 703 | .ndo_set_mac_address = eth_mac_addr, | ||
| 704 | }; | ||
| 705 | |||
| 695 | static int __devinit a2065_init_one(struct zorro_dev *z, | 706 | static int __devinit a2065_init_one(struct zorro_dev *z, |
| 696 | const struct zorro_device_id *ent) | 707 | const struct zorro_device_id *ent) |
| 697 | { | 708 | { |
| @@ -753,12 +764,8 @@ static int __devinit a2065_init_one(struct zorro_dev *z, | |||
| 753 | priv->rx_ring_mod_mask = RX_RING_MOD_MASK; | 764 | priv->rx_ring_mod_mask = RX_RING_MOD_MASK; |
| 754 | priv->tx_ring_mod_mask = TX_RING_MOD_MASK; | 765 | priv->tx_ring_mod_mask = TX_RING_MOD_MASK; |
| 755 | 766 | ||
| 756 | dev->open = &lance_open; | 767 | dev->netdev_ops = &lance_netdev_ops; |
| 757 | dev->stop = &lance_close; | ||
| 758 | dev->hard_start_xmit = &lance_start_xmit; | ||
| 759 | dev->tx_timeout = &lance_tx_timeout; | ||
| 760 | dev->watchdog_timeo = 5*HZ; | 768 | dev->watchdog_timeo = 5*HZ; |
| 761 | dev->set_multicast_list = &lance_set_multicast; | ||
| 762 | dev->dma = 0; | 769 | dev->dma = 0; |
| 763 | 770 | ||
| 764 | init_timer(&priv->multicast_timer); | 771 | init_timer(&priv->multicast_timer); |
diff --git a/drivers/net/ariadne.c b/drivers/net/ariadne.c index e1d72e06f3e1..58e8d522e5bc 100644 --- a/drivers/net/ariadne.c +++ b/drivers/net/ariadne.c | |||
| @@ -155,6 +155,18 @@ static struct zorro_driver ariadne_driver = { | |||
| 155 | .remove = __devexit_p(ariadne_remove_one), | 155 | .remove = __devexit_p(ariadne_remove_one), |
| 156 | }; | 156 | }; |
| 157 | 157 | ||
| 158 | static const struct net_device_ops ariadne_netdev_ops = { | ||
| 159 | .ndo_open = ariadne_open, | ||
| 160 | .ndo_stop = ariadne_close, | ||
| 161 | .ndo_start_xmit = ariadne_start_xmit, | ||
| 162 | .ndo_tx_timeout = ariadne_tx_timeout, | ||
| 163 | .ndo_get_stats = ariadne_get_stats, | ||
| 164 | .ndo_set_multicast_list = set_multicast_list, | ||
| 165 | .ndo_validate_addr = eth_validate_addr, | ||
| 166 | .ndo_change_mtu = eth_change_mtu, | ||
| 167 | .ndo_set_mac_address = eth_mac_addr, | ||
| 168 | }; | ||
| 169 | |||
| 158 | static int __devinit ariadne_init_one(struct zorro_dev *z, | 170 | static int __devinit ariadne_init_one(struct zorro_dev *z, |
| 159 | const struct zorro_device_id *ent) | 171 | const struct zorro_device_id *ent) |
| 160 | { | 172 | { |
| @@ -197,13 +209,8 @@ static int __devinit ariadne_init_one(struct zorro_dev *z, | |||
| 197 | dev->mem_start = ZTWO_VADDR(mem_start); | 209 | dev->mem_start = ZTWO_VADDR(mem_start); |
| 198 | dev->mem_end = dev->mem_start+ARIADNE_RAM_SIZE; | 210 | dev->mem_end = dev->mem_start+ARIADNE_RAM_SIZE; |
| 199 | 211 | ||
| 200 | dev->open = &ariadne_open; | 212 | dev->netdev_ops = &ariadne_netdev_ops; |
| 201 | dev->stop = &ariadne_close; | ||
| 202 | dev->hard_start_xmit = &ariadne_start_xmit; | ||
| 203 | dev->tx_timeout = &ariadne_tx_timeout; | ||
| 204 | dev->watchdog_timeo = 5*HZ; | 213 | dev->watchdog_timeo = 5*HZ; |
| 205 | dev->get_stats = &ariadne_get_stats; | ||
| 206 | dev->set_multicast_list = &set_multicast_list; | ||
| 207 | 214 | ||
| 208 | err = register_netdev(dev); | 215 | err = register_netdev(dev); |
| 209 | if (err) { | 216 | if (err) { |
diff --git a/drivers/net/arm/am79c961a.c b/drivers/net/arm/am79c961a.c index 4bc6901b3819..627bc75da17d 100644 --- a/drivers/net/arm/am79c961a.c +++ b/drivers/net/arm/am79c961a.c | |||
| @@ -665,6 +665,20 @@ static void __init am79c961_banner(void) | |||
| 665 | if (net_debug && version_printed++ == 0) | 665 | if (net_debug && version_printed++ == 0) |
| 666 | printk(KERN_INFO "%s", version); | 666 | printk(KERN_INFO "%s", version); |
| 667 | } | 667 | } |
| 668 | static const struct net_device_ops am79c961_netdev_ops = { | ||
| 669 | .ndo_open = am79c961_open, | ||
| 670 | .ndo_stop = am79c961_close, | ||
| 671 | .ndo_start_xmit = am79c961_sendpacket, | ||
| 672 | .ndo_get_stats = am79c961_getstats, | ||
| 673 | .ndo_set_multicast_list = am79c961_setmulticastlist, | ||
| 674 | .ndo_tx_timeout = am79c961_timeout, | ||
| 675 | .ndo_validate_addr = eth_validate_addr, | ||
| 676 | .ndo_change_mtu = eth_change_mtu, | ||
| 677 | .ndo_set_mac_address = eth_mac_addr, | ||
| 678 | #ifdef CONFIG_NET_POLL_CONTROLLER | ||
| 679 | .ndo_poll_controller = am79c961_poll_controller, | ||
| 680 | #endif | ||
| 681 | }; | ||
| 668 | 682 | ||
| 669 | static int __init am79c961_probe(struct platform_device *pdev) | 683 | static int __init am79c961_probe(struct platform_device *pdev) |
| 670 | { | 684 | { |
| @@ -732,15 +746,7 @@ static int __init am79c961_probe(struct platform_device *pdev) | |||
| 732 | if (am79c961_hw_init(dev)) | 746 | if (am79c961_hw_init(dev)) |
| 733 | goto release; | 747 | goto release; |
| 734 | 748 | ||
| 735 | dev->open = am79c961_open; | 749 | dev->netdev_ops = &am79c961_netdev_ops; |
| 736 | dev->stop = am79c961_close; | ||
| 737 | dev->hard_start_xmit = am79c961_sendpacket; | ||
| 738 | dev->get_stats = am79c961_getstats; | ||
| 739 | dev->set_multicast_list = am79c961_setmulticastlist; | ||
| 740 | dev->tx_timeout = am79c961_timeout; | ||
| 741 | #ifdef CONFIG_NET_POLL_CONTROLLER | ||
| 742 | dev->poll_controller = am79c961_poll_controller; | ||
| 743 | #endif | ||
| 744 | 750 | ||
| 745 | ret = register_netdev(dev); | 751 | ret = register_netdev(dev); |
| 746 | if (ret == 0) { | 752 | if (ret == 0) { |
diff --git a/drivers/net/arm/at91_ether.c b/drivers/net/arm/at91_ether.c index 442938d50380..7f4bc8ae5462 100644 --- a/drivers/net/arm/at91_ether.c +++ b/drivers/net/arm/at91_ether.c | |||
| @@ -577,7 +577,7 @@ static void at91ether_sethashtable(struct net_device *dev) | |||
| 577 | /* | 577 | /* |
| 578 | * Enable/Disable promiscuous and multicast modes. | 578 | * Enable/Disable promiscuous and multicast modes. |
| 579 | */ | 579 | */ |
| 580 | static void at91ether_set_rx_mode(struct net_device *dev) | 580 | static void at91ether_set_multicast_list(struct net_device *dev) |
| 581 | { | 581 | { |
| 582 | unsigned long cfg; | 582 | unsigned long cfg; |
| 583 | 583 | ||
| @@ -808,7 +808,7 @@ static int at91ether_close(struct net_device *dev) | |||
| 808 | /* | 808 | /* |
| 809 | * Transmit packet. | 809 | * Transmit packet. |
| 810 | */ | 810 | */ |
| 811 | static int at91ether_tx(struct sk_buff *skb, struct net_device *dev) | 811 | static int at91ether_start_xmit(struct sk_buff *skb, struct net_device *dev) |
| 812 | { | 812 | { |
| 813 | struct at91_private *lp = netdev_priv(dev); | 813 | struct at91_private *lp = netdev_priv(dev); |
| 814 | 814 | ||
| @@ -828,7 +828,7 @@ static int at91ether_tx(struct sk_buff *skb, struct net_device *dev) | |||
| 828 | 828 | ||
| 829 | dev->trans_start = jiffies; | 829 | dev->trans_start = jiffies; |
| 830 | } else { | 830 | } else { |
| 831 | printk(KERN_ERR "at91_ether.c: at91ether_tx() called, but device is busy!\n"); | 831 | printk(KERN_ERR "at91_ether.c: at91ether_start_xmit() called, but device is busy!\n"); |
| 832 | return 1; /* if we return anything but zero, dev.c:1055 calls kfree_skb(skb) | 832 | return 1; /* if we return anything but zero, dev.c:1055 calls kfree_skb(skb) |
| 833 | on this skb, he also reports -ENETDOWN and printk's, so either | 833 | on this skb, he also reports -ENETDOWN and printk's, so either |
| 834 | we free and return(0) or don't free and return 1 */ | 834 | we free and return(0) or don't free and return 1 */ |
| @@ -965,6 +965,21 @@ static void at91ether_poll_controller(struct net_device *dev) | |||
| 965 | } | 965 | } |
| 966 | #endif | 966 | #endif |
| 967 | 967 | ||
| 968 | static const struct net_device_ops at91ether_netdev_ops = { | ||
| 969 | .ndo_open = at91ether_open, | ||
| 970 | .ndo_stop = at91ether_close, | ||
| 971 | .ndo_start_xmit = at91ether_start_xmit, | ||
| 972 | .ndo_get_stats = at91ether_stats, | ||
| 973 | .ndo_set_multicast_list = at91ether_set_multicast_list, | ||
| 974 | .ndo_set_mac_address = set_mac_address, | ||
| 975 | .ndo_do_ioctl = at91ether_ioctl, | ||
| 976 | .ndo_validate_addr = eth_validate_addr, | ||
| 977 | .ndo_change_mtu = eth_change_mtu, | ||
| 978 | #ifdef CONFIG_NET_POLL_CONTROLLER | ||
| 979 | .ndo_poll_controller = at91ether_poll_controller, | ||
| 980 | #endif | ||
| 981 | }; | ||
| 982 | |||
| 968 | /* | 983 | /* |
| 969 | * Initialize the ethernet interface | 984 | * Initialize the ethernet interface |
| 970 | */ | 985 | */ |
| @@ -1005,17 +1020,8 @@ static int __init at91ether_setup(unsigned long phy_type, unsigned short phy_add | |||
| 1005 | spin_lock_init(&lp->lock); | 1020 | spin_lock_init(&lp->lock); |
| 1006 | 1021 | ||
| 1007 | ether_setup(dev); | 1022 | ether_setup(dev); |
| 1008 | dev->open = at91ether_open; | 1023 | dev->netdev_ops = &at91ether_netdev_ops; |
| 1009 | dev->stop = at91ether_close; | ||
| 1010 | dev->hard_start_xmit = at91ether_tx; | ||
| 1011 | dev->get_stats = at91ether_stats; | ||
| 1012 | dev->set_multicast_list = at91ether_set_rx_mode; | ||
| 1013 | dev->set_mac_address = set_mac_address; | ||
| 1014 | dev->ethtool_ops = &at91ether_ethtool_ops; | 1024 | dev->ethtool_ops = &at91ether_ethtool_ops; |
| 1015 | dev->do_ioctl = at91ether_ioctl; | ||
| 1016 | #ifdef CONFIG_NET_POLL_CONTROLLER | ||
| 1017 | dev->poll_controller = at91ether_poll_controller; | ||
| 1018 | #endif | ||
| 1019 | 1025 | ||
| 1020 | SET_NETDEV_DEV(dev, &pdev->dev); | 1026 | SET_NETDEV_DEV(dev, &pdev->dev); |
| 1021 | 1027 | ||
diff --git a/drivers/net/arm/ep93xx_eth.c b/drivers/net/arm/ep93xx_eth.c index cc7708775da0..41736772c1dd 100644 --- a/drivers/net/arm/ep93xx_eth.c +++ b/drivers/net/arm/ep93xx_eth.c | |||
| @@ -770,7 +770,18 @@ static struct ethtool_ops ep93xx_ethtool_ops = { | |||
| 770 | .get_link = ep93xx_get_link, | 770 | .get_link = ep93xx_get_link, |
| 771 | }; | 771 | }; |
| 772 | 772 | ||
| 773 | struct net_device *ep93xx_dev_alloc(struct ep93xx_eth_data *data) | 773 | static const struct net_device_ops ep93xx_netdev_ops = { |
| 774 | .ndo_open = ep93xx_open, | ||
| 775 | .ndo_stop = ep93xx_close, | ||
| 776 | .ndo_start_xmit = ep93xx_xmit, | ||
| 777 | .ndo_get_stats = ep93xx_get_stats, | ||
| 778 | .ndo_do_ioctl = ep93xx_ioctl, | ||
| 779 | .ndo_validate_addr = eth_validate_addr, | ||
| 780 | .ndo_change_mtu = eth_change_mtu, | ||
| 781 | .ndo_set_mac_address = eth_mac_addr, | ||
| 782 | }; | ||
| 783 | |||
| 784 | static struct net_device *ep93xx_dev_alloc(struct ep93xx_eth_data *data) | ||
| 774 | { | 785 | { |
| 775 | struct net_device *dev; | 786 | struct net_device *dev; |
| 776 | 787 | ||
| @@ -780,12 +791,8 @@ struct net_device *ep93xx_dev_alloc(struct ep93xx_eth_data *data) | |||
| 780 | 791 | ||
| 781 | memcpy(dev->dev_addr, data->dev_addr, ETH_ALEN); | 792 | memcpy(dev->dev_addr, data->dev_addr, ETH_ALEN); |
| 782 | 793 | ||
| 783 | dev->get_stats = ep93xx_get_stats; | ||
| 784 | dev->ethtool_ops = &ep93xx_ethtool_ops; | 794 | dev->ethtool_ops = &ep93xx_ethtool_ops; |
| 785 | dev->hard_start_xmit = ep93xx_xmit; | 795 | dev->netdev_ops = &ep93xx_netdev_ops; |
| 786 | dev->open = ep93xx_open; | ||
| 787 | dev->stop = ep93xx_close; | ||
| 788 | dev->do_ioctl = ep93xx_ioctl; | ||
| 789 | 796 | ||
| 790 | dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM; | 797 | dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM; |
| 791 | 798 | ||
diff --git a/drivers/net/arm/ether1.c b/drivers/net/arm/ether1.c index e380de454463..edf770f639fa 100644 --- a/drivers/net/arm/ether1.c +++ b/drivers/net/arm/ether1.c | |||
| @@ -991,6 +991,18 @@ static void __devinit ether1_banner(void) | |||
| 991 | printk(KERN_INFO "%s", version); | 991 | printk(KERN_INFO "%s", version); |
| 992 | } | 992 | } |
| 993 | 993 | ||
| 994 | static const struct net_device_ops ether1_netdev_ops = { | ||
| 995 | .ndo_open = ether1_open, | ||
| 996 | .ndo_stop = ether1_close, | ||
| 997 | .ndo_start_xmit = ether1_sendpacket, | ||
| 998 | .ndo_get_stats = ether1_getstats, | ||
| 999 | .ndo_set_multicast_list = ether1_setmulticastlist, | ||
| 1000 | .ndo_tx_timeout = ether1_timeout, | ||
| 1001 | .ndo_validate_addr = eth_validate_addr, | ||
| 1002 | .ndo_change_mtu = eth_change_mtu, | ||
| 1003 | .ndo_set_mac_address = eth_mac_addr, | ||
| 1004 | }; | ||
| 1005 | |||
| 994 | static int __devinit | 1006 | static int __devinit |
| 995 | ether1_probe(struct expansion_card *ec, const struct ecard_id *id) | 1007 | ether1_probe(struct expansion_card *ec, const struct ecard_id *id) |
| 996 | { | 1008 | { |
| @@ -1031,12 +1043,7 @@ ether1_probe(struct expansion_card *ec, const struct ecard_id *id) | |||
| 1031 | goto free; | 1043 | goto free; |
| 1032 | } | 1044 | } |
| 1033 | 1045 | ||
| 1034 | dev->open = ether1_open; | 1046 | dev->netdev_ops = ðer1_netdev_ops; |
| 1035 | dev->stop = ether1_close; | ||
| 1036 | dev->hard_start_xmit = ether1_sendpacket; | ||
| 1037 | dev->get_stats = ether1_getstats; | ||
| 1038 | dev->set_multicast_list = ether1_setmulticastlist; | ||
| 1039 | dev->tx_timeout = ether1_timeout; | ||
| 1040 | dev->watchdog_timeo = 5 * HZ / 100; | 1047 | dev->watchdog_timeo = 5 * HZ / 100; |
| 1041 | 1048 | ||
| 1042 | ret = register_netdev(dev); | 1049 | ret = register_netdev(dev); |
diff --git a/drivers/net/arm/ether3.c b/drivers/net/arm/ether3.c index 21a7bef12d3b..ec8a1ae1e887 100644 --- a/drivers/net/arm/ether3.c +++ b/drivers/net/arm/ether3.c | |||
| @@ -770,6 +770,18 @@ static void __devinit ether3_banner(void) | |||
| 770 | printk(KERN_INFO "%s", version); | 770 | printk(KERN_INFO "%s", version); |
| 771 | } | 771 | } |
| 772 | 772 | ||
| 773 | static const struct net_device_ops ether3_netdev_ops = { | ||
| 774 | .ndo_open = ether3_open, | ||
| 775 | .ndo_stop = ether3_close, | ||
| 776 | .ndo_start_xmit = ether3_sendpacket, | ||
| 777 | .ndo_get_stats = ether3_getstats, | ||
| 778 | .ndo_set_multicast_list = ether3_setmulticastlist, | ||
| 779 | .ndo_tx_timeout = ether3_timeout, | ||
| 780 | .ndo_validate_addr = eth_validate_addr, | ||
| 781 | .ndo_change_mtu = eth_change_mtu, | ||
| 782 | .ndo_set_mac_address = eth_mac_addr, | ||
| 783 | }; | ||
| 784 | |||
| 773 | static int __devinit | 785 | static int __devinit |
| 774 | ether3_probe(struct expansion_card *ec, const struct ecard_id *id) | 786 | ether3_probe(struct expansion_card *ec, const struct ecard_id *id) |
| 775 | { | 787 | { |
| @@ -846,12 +858,7 @@ ether3_probe(struct expansion_card *ec, const struct ecard_id *id) | |||
| 846 | goto free; | 858 | goto free; |
| 847 | } | 859 | } |
| 848 | 860 | ||
| 849 | dev->open = ether3_open; | 861 | dev->netdev_ops = ðer3_netdev_ops; |
| 850 | dev->stop = ether3_close; | ||
| 851 | dev->hard_start_xmit = ether3_sendpacket; | ||
| 852 | dev->get_stats = ether3_getstats; | ||
| 853 | dev->set_multicast_list = ether3_setmulticastlist; | ||
| 854 | dev->tx_timeout = ether3_timeout; | ||
| 855 | dev->watchdog_timeo = 5 * HZ / 100; | 862 | dev->watchdog_timeo = 5 * HZ / 100; |
| 856 | 863 | ||
| 857 | ret = register_netdev(dev); | 864 | ret = register_netdev(dev); |
diff --git a/drivers/net/atarilance.c b/drivers/net/atarilance.c index 2d81f6afcb58..5425ab0c38c0 100644 --- a/drivers/net/atarilance.c +++ b/drivers/net/atarilance.c | |||
| @@ -453,6 +453,16 @@ static noinline int __init addr_accessible(volatile void *regp, int wordflag, | |||
| 453 | return( ret ); | 453 | return( ret ); |
| 454 | } | 454 | } |
| 455 | 455 | ||
| 456 | static const struct net_device_ops lance_netdev_ops = { | ||
| 457 | .ndo_open = lance_open, | ||
| 458 | .ndo_stop = lance_close, | ||
| 459 | .ndo_start_xmit = lance_start_xmit, | ||
| 460 | .ndo_set_multicast_list = set_multicast_list, | ||
| 461 | .ndo_set_mac_address = lance_set_mac_address, | ||
| 462 | .ndo_tx_timeout = lance_tx_timeout, | ||
| 463 | .ndo_validate_addr = eth_validate_addr, | ||
| 464 | .ndo_change_mtu = eth_change_mtu, | ||
| 465 | }; | ||
| 456 | 466 | ||
| 457 | static unsigned long __init lance_probe1( struct net_device *dev, | 467 | static unsigned long __init lance_probe1( struct net_device *dev, |
| 458 | struct lance_addr *init_rec ) | 468 | struct lance_addr *init_rec ) |
| @@ -623,15 +633,9 @@ static unsigned long __init lance_probe1( struct net_device *dev, | |||
| 623 | if (did_version++ == 0) | 633 | if (did_version++ == 0) |
| 624 | DPRINTK( 1, ( version )); | 634 | DPRINTK( 1, ( version )); |
| 625 | 635 | ||
| 626 | /* The LANCE-specific entries in the device structure. */ | 636 | dev->netdev_ops = &lance_netdev_ops; |
| 627 | dev->open = &lance_open; | ||
| 628 | dev->hard_start_xmit = &lance_start_xmit; | ||
| 629 | dev->stop = &lance_close; | ||
| 630 | dev->set_multicast_list = &set_multicast_list; | ||
| 631 | dev->set_mac_address = &lance_set_mac_address; | ||
| 632 | 637 | ||
| 633 | /* XXX MSch */ | 638 | /* XXX MSch */ |
| 634 | dev->tx_timeout = lance_tx_timeout; | ||
| 635 | dev->watchdog_timeo = TX_TIMEOUT; | 639 | dev->watchdog_timeo = TX_TIMEOUT; |
| 636 | 640 | ||
| 637 | return( 1 ); | 641 | return( 1 ); |
diff --git a/drivers/net/au1000_eth.c b/drivers/net/au1000_eth.c index 4274e4ac963b..d58c105fc779 100644 --- a/drivers/net/au1000_eth.c +++ b/drivers/net/au1000_eth.c | |||
| @@ -1004,12 +1004,12 @@ static void au1000_tx_timeout(struct net_device *dev) | |||
| 1004 | netif_wake_queue(dev); | 1004 | netif_wake_queue(dev); |
| 1005 | } | 1005 | } |
| 1006 | 1006 | ||
| 1007 | static void set_rx_mode(struct net_device *dev) | 1007 | static void au1000_multicast_list(struct net_device *dev) |
| 1008 | { | 1008 | { |
| 1009 | struct au1000_private *aup = netdev_priv(dev); | 1009 | struct au1000_private *aup = netdev_priv(dev); |
| 1010 | 1010 | ||
| 1011 | if (au1000_debug > 4) | 1011 | if (au1000_debug > 4) |
| 1012 | printk("%s: set_rx_mode: flags=%x\n", dev->name, dev->flags); | 1012 | printk("%s: au1000_multicast_list: flags=%x\n", dev->name, dev->flags); |
| 1013 | 1013 | ||
| 1014 | if (dev->flags & IFF_PROMISC) { /* Set promiscuous. */ | 1014 | if (dev->flags & IFF_PROMISC) { /* Set promiscuous. */ |
| 1015 | aup->mac->control |= MAC_PROMISCUOUS; | 1015 | aup->mac->control |= MAC_PROMISCUOUS; |
| @@ -1047,6 +1047,18 @@ static int au1000_ioctl(struct net_device *dev, struct ifreq *rq, int cmd) | |||
| 1047 | return phy_mii_ioctl(aup->phy_dev, if_mii(rq), cmd); | 1047 | return phy_mii_ioctl(aup->phy_dev, if_mii(rq), cmd); |
| 1048 | } | 1048 | } |
| 1049 | 1049 | ||
| 1050 | static const struct net_device_ops au1000_netdev_ops = { | ||
| 1051 | .ndo_open = au1000_open, | ||
| 1052 | .ndo_stop = au1000_close, | ||
| 1053 | .ndo_start_xmit = au1000_tx, | ||
| 1054 | .ndo_set_multicast_list = au1000_multicast_list, | ||
| 1055 | .ndo_do_ioctl = au1000_ioctl, | ||
| 1056 | .ndo_tx_timeout = au1000_tx_timeout, | ||
| 1057 | .ndo_set_mac_address = eth_mac_addr, | ||
| 1058 | .ndo_validate_addr = eth_validate_addr, | ||
| 1059 | .ndo_change_mtu = eth_change_mtu, | ||
| 1060 | }; | ||
| 1061 | |||
| 1050 | static struct net_device * au1000_probe(int port_num) | 1062 | static struct net_device * au1000_probe(int port_num) |
| 1051 | { | 1063 | { |
| 1052 | static unsigned version_printed = 0; | 1064 | static unsigned version_printed = 0; |
| @@ -1197,13 +1209,8 @@ static struct net_device * au1000_probe(int port_num) | |||
| 1197 | 1209 | ||
| 1198 | dev->base_addr = base; | 1210 | dev->base_addr = base; |
| 1199 | dev->irq = irq; | 1211 | dev->irq = irq; |
| 1200 | dev->open = au1000_open; | 1212 | dev->netdev_ops = &au1000_netdev_ops; |
| 1201 | dev->hard_start_xmit = au1000_tx; | ||
| 1202 | dev->stop = au1000_close; | ||
| 1203 | dev->set_multicast_list = &set_rx_mode; | ||
| 1204 | dev->do_ioctl = &au1000_ioctl; | ||
| 1205 | SET_ETHTOOL_OPS(dev, &au1000_ethtool_ops); | 1213 | SET_ETHTOOL_OPS(dev, &au1000_ethtool_ops); |
| 1206 | dev->tx_timeout = au1000_tx_timeout; | ||
| 1207 | dev->watchdog_timeo = ETH_TX_TIMEOUT; | 1214 | dev->watchdog_timeo = ETH_TX_TIMEOUT; |
| 1208 | 1215 | ||
| 1209 | /* | 1216 | /* |
diff --git a/drivers/net/benet/be_ethtool.c b/drivers/net/benet/be_ethtool.c index 04f4b73fa8d8..9592f22e4c8c 100644 --- a/drivers/net/benet/be_ethtool.c +++ b/drivers/net/benet/be_ethtool.c | |||
| @@ -319,7 +319,7 @@ be_get_pauseparam(struct net_device *netdev, struct ethtool_pauseparam *ecmd) | |||
| 319 | 319 | ||
| 320 | be_cmd_get_flow_control(&adapter->ctrl, &ecmd->tx_pause, | 320 | be_cmd_get_flow_control(&adapter->ctrl, &ecmd->tx_pause, |
| 321 | &ecmd->rx_pause); | 321 | &ecmd->rx_pause); |
| 322 | ecmd->autoneg = AUTONEG_ENABLE; | 322 | ecmd->autoneg = 0; |
| 323 | } | 323 | } |
| 324 | 324 | ||
| 325 | static int | 325 | static int |
| @@ -328,7 +328,7 @@ be_set_pauseparam(struct net_device *netdev, struct ethtool_pauseparam *ecmd) | |||
| 328 | struct be_adapter *adapter = netdev_priv(netdev); | 328 | struct be_adapter *adapter = netdev_priv(netdev); |
| 329 | int status; | 329 | int status; |
| 330 | 330 | ||
| 331 | if (ecmd->autoneg != AUTONEG_ENABLE) | 331 | if (ecmd->autoneg != 0) |
| 332 | return -EINVAL; | 332 | return -EINVAL; |
| 333 | 333 | ||
| 334 | status = be_cmd_set_flow_control(&adapter->ctrl, ecmd->tx_pause, | 334 | status = be_cmd_set_flow_control(&adapter->ctrl, ecmd->tx_pause, |
diff --git a/drivers/net/bfin_mac.c b/drivers/net/bfin_mac.c index 9afe8092dfc4..9f971ed6b58d 100644 --- a/drivers/net/bfin_mac.c +++ b/drivers/net/bfin_mac.c | |||
| @@ -979,6 +979,20 @@ static int bfin_mac_open(struct net_device *dev) | |||
| 979 | return 0; | 979 | return 0; |
| 980 | } | 980 | } |
| 981 | 981 | ||
| 982 | static const struct net_device_ops bfin_mac_netdev_ops = { | ||
| 983 | .ndo_open = bfin_mac_open, | ||
| 984 | .ndo_stop = bfin_mac_close, | ||
| 985 | .ndo_start_xmit = bfin_mac_hard_start_xmit, | ||
| 986 | .ndo_set_mac_address = bfin_mac_set_mac_address, | ||
| 987 | .ndo_tx_timeout = bfin_mac_timeout, | ||
| 988 | .ndo_set_multicast_list = bfin_mac_set_multicast_list, | ||
| 989 | .ndo_validate_addr = eth_validate_addr, | ||
| 990 | .ndo_change_mtu = eth_change_mtu, | ||
| 991 | #ifdef CONFIG_NET_POLL_CONTROLLER | ||
| 992 | .ndo_poll_controller = bfin_mac_poll, | ||
| 993 | #endif | ||
| 994 | }; | ||
| 995 | |||
| 982 | /* | 996 | /* |
| 983 | * | 997 | * |
| 984 | * this makes the board clean up everything that it can | 998 | * this makes the board clean up everything that it can |
| @@ -1086,15 +1100,7 @@ static int __devinit bfin_mac_probe(struct platform_device *pdev) | |||
| 1086 | /* Fill in the fields of the device structure with ethernet values. */ | 1100 | /* Fill in the fields of the device structure with ethernet values. */ |
| 1087 | ether_setup(ndev); | 1101 | ether_setup(ndev); |
| 1088 | 1102 | ||
| 1089 | ndev->open = bfin_mac_open; | 1103 | ndev->netdev_ops = &bfin_mac_netdev_ops; |
| 1090 | ndev->stop = bfin_mac_close; | ||
| 1091 | ndev->hard_start_xmit = bfin_mac_hard_start_xmit; | ||
| 1092 | ndev->set_mac_address = bfin_mac_set_mac_address; | ||
| 1093 | ndev->tx_timeout = bfin_mac_timeout; | ||
| 1094 | ndev->set_multicast_list = bfin_mac_set_multicast_list; | ||
| 1095 | #ifdef CONFIG_NET_POLL_CONTROLLER | ||
| 1096 | ndev->poll_controller = bfin_mac_poll; | ||
| 1097 | #endif | ||
| 1098 | ndev->ethtool_ops = &bfin_mac_ethtool_ops; | 1104 | ndev->ethtool_ops = &bfin_mac_ethtool_ops; |
| 1099 | 1105 | ||
| 1100 | spin_lock_init(&lp->lock); | 1106 | spin_lock_init(&lp->lock); |
diff --git a/drivers/net/bonding/bond_alb.c b/drivers/net/bonding/bond_alb.c index 8dc6fbb9a41e..553a89919778 100644 --- a/drivers/net/bonding/bond_alb.c +++ b/drivers/net/bonding/bond_alb.c | |||
| @@ -370,8 +370,6 @@ static int rlb_arp_recv(struct sk_buff *skb, struct net_device *bond_dev, struct | |||
| 370 | 370 | ||
| 371 | if (arp->op_code == htons(ARPOP_REPLY)) { | 371 | if (arp->op_code == htons(ARPOP_REPLY)) { |
| 372 | /* update rx hash table for this ARP */ | 372 | /* update rx hash table for this ARP */ |
| 373 | printk("rar: update orig %s bond_dev %s\n", orig_dev->name, | ||
| 374 | bond_dev->name); | ||
| 375 | bond = netdev_priv(bond_dev); | 373 | bond = netdev_priv(bond_dev); |
| 376 | rlb_update_entry_from_arp(bond, arp); | 374 | rlb_update_entry_from_arp(bond, arp); |
| 377 | pr_debug("Server received an ARP Reply from client\n"); | 375 | pr_debug("Server received an ARP Reply from client\n"); |
diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c index 99610f358c40..63369b6b14d4 100644 --- a/drivers/net/bonding/bond_main.c +++ b/drivers/net/bonding/bond_main.c | |||
| @@ -2570,7 +2570,7 @@ static void bond_arp_send_all(struct bonding *bond, struct slave *slave) | |||
| 2570 | 2570 | ||
| 2571 | for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) { | 2571 | for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) { |
| 2572 | if (!targets[i]) | 2572 | if (!targets[i]) |
| 2573 | continue; | 2573 | break; |
| 2574 | pr_debug("basa: target %x\n", targets[i]); | 2574 | pr_debug("basa: target %x\n", targets[i]); |
| 2575 | if (list_empty(&bond->vlan_list)) { | 2575 | if (list_empty(&bond->vlan_list)) { |
| 2576 | pr_debug("basa: empty vlan: arp_send\n"); | 2576 | pr_debug("basa: empty vlan: arp_send\n"); |
| @@ -2677,7 +2677,6 @@ static void bond_validate_arp(struct bonding *bond, struct slave *slave, __be32 | |||
| 2677 | int i; | 2677 | int i; |
| 2678 | __be32 *targets = bond->params.arp_targets; | 2678 | __be32 *targets = bond->params.arp_targets; |
| 2679 | 2679 | ||
| 2680 | targets = bond->params.arp_targets; | ||
| 2681 | for (i = 0; (i < BOND_MAX_ARP_TARGETS) && targets[i]; i++) { | 2680 | for (i = 0; (i < BOND_MAX_ARP_TARGETS) && targets[i]; i++) { |
| 2682 | pr_debug("bva: sip %pI4 tip %pI4 t[%d] %pI4 bhti(tip) %d\n", | 2681 | pr_debug("bva: sip %pI4 tip %pI4 t[%d] %pI4 bhti(tip) %d\n", |
| 2683 | &sip, &tip, i, &targets[i], bond_has_this_ip(bond, tip)); | 2682 | &sip, &tip, i, &targets[i], bond_has_this_ip(bond, tip)); |
| @@ -3303,7 +3302,7 @@ static void bond_info_show_master(struct seq_file *seq) | |||
| 3303 | 3302 | ||
| 3304 | for(i = 0; (i < BOND_MAX_ARP_TARGETS) ;i++) { | 3303 | for(i = 0; (i < BOND_MAX_ARP_TARGETS) ;i++) { |
| 3305 | if (!bond->params.arp_targets[i]) | 3304 | if (!bond->params.arp_targets[i]) |
| 3306 | continue; | 3305 | break; |
| 3307 | if (printed) | 3306 | if (printed) |
| 3308 | seq_printf(seq, ","); | 3307 | seq_printf(seq, ","); |
| 3309 | seq_printf(seq, " %pI4", &bond->params.arp_targets[i]); | 3308 | seq_printf(seq, " %pI4", &bond->params.arp_targets[i]); |
diff --git a/drivers/net/bonding/bond_sysfs.c b/drivers/net/bonding/bond_sysfs.c index 18cf4787874c..d28731535226 100644 --- a/drivers/net/bonding/bond_sysfs.c +++ b/drivers/net/bonding/bond_sysfs.c | |||
| @@ -684,17 +684,15 @@ static ssize_t bonding_store_arp_targets(struct device *d, | |||
| 684 | goto out; | 684 | goto out; |
| 685 | } | 685 | } |
| 686 | /* look for an empty slot to put the target in, and check for dupes */ | 686 | /* look for an empty slot to put the target in, and check for dupes */ |
| 687 | for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) { | 687 | for (i = 0; (i < BOND_MAX_ARP_TARGETS) && !done; i++) { |
| 688 | if (targets[i] == newtarget) { /* duplicate */ | 688 | if (targets[i] == newtarget) { /* duplicate */ |
| 689 | printk(KERN_ERR DRV_NAME | 689 | printk(KERN_ERR DRV_NAME |
| 690 | ": %s: ARP target %pI4 is already present\n", | 690 | ": %s: ARP target %pI4 is already present\n", |
| 691 | bond->dev->name, &newtarget); | 691 | bond->dev->name, &newtarget); |
| 692 | if (done) | ||
| 693 | targets[i] = 0; | ||
| 694 | ret = -EINVAL; | 692 | ret = -EINVAL; |
| 695 | goto out; | 693 | goto out; |
| 696 | } | 694 | } |
| 697 | if (targets[i] == 0 && !done) { | 695 | if (targets[i] == 0) { |
| 698 | printk(KERN_INFO DRV_NAME | 696 | printk(KERN_INFO DRV_NAME |
| 699 | ": %s: adding ARP target %pI4.\n", | 697 | ": %s: adding ARP target %pI4.\n", |
| 700 | bond->dev->name, &newtarget); | 698 | bond->dev->name, &newtarget); |
| @@ -720,12 +718,16 @@ static ssize_t bonding_store_arp_targets(struct device *d, | |||
| 720 | goto out; | 718 | goto out; |
| 721 | } | 719 | } |
| 722 | 720 | ||
| 723 | for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) { | 721 | for (i = 0; (i < BOND_MAX_ARP_TARGETS) && !done; i++) { |
| 724 | if (targets[i] == newtarget) { | 722 | if (targets[i] == newtarget) { |
| 723 | int j; | ||
| 725 | printk(KERN_INFO DRV_NAME | 724 | printk(KERN_INFO DRV_NAME |
| 726 | ": %s: removing ARP target %pI4.\n", | 725 | ": %s: removing ARP target %pI4.\n", |
| 727 | bond->dev->name, &newtarget); | 726 | bond->dev->name, &newtarget); |
| 728 | targets[i] = 0; | 727 | for (j = i; (j < (BOND_MAX_ARP_TARGETS-1)) && targets[j+1]; j++) |
| 728 | targets[j] = targets[j+1]; | ||
| 729 | |||
| 730 | targets[j] = 0; | ||
| 729 | done = 1; | 731 | done = 1; |
| 730 | } | 732 | } |
| 731 | } | 733 | } |
diff --git a/drivers/net/cris/eth_v10.c b/drivers/net/cris/eth_v10.c index c9806c58b2fd..7a18dc7e5c7f 100644 --- a/drivers/net/cris/eth_v10.c +++ b/drivers/net/cris/eth_v10.c | |||
| @@ -257,6 +257,23 @@ struct transceiver_ops transceivers[] = | |||
| 257 | 257 | ||
| 258 | struct transceiver_ops* transceiver = &transceivers[0]; | 258 | struct transceiver_ops* transceiver = &transceivers[0]; |
| 259 | 259 | ||
| 260 | static const struct net_device_ops e100_netdev_ops = { | ||
| 261 | .ndo_open = e100_open, | ||
| 262 | .ndo_stop = e100_close, | ||
| 263 | .ndo_start_xmit = e100_send_packet, | ||
| 264 | .ndo_tx_timeout = e100_tx_timeout, | ||
| 265 | .ndo_get_stats = e100_get_stats, | ||
| 266 | .ndo_set_multicast_list = set_multicast_list, | ||
| 267 | .ndo_do_ioctl = e100_ioctl, | ||
| 268 | .ndo_set_mac_address = e100_set_mac_address, | ||
| 269 | .ndo_validate_addr = eth_validate_addr, | ||
| 270 | .ndo_change_mtu = eth_change_mtu, | ||
| 271 | .ndo_set_config = e100_set_config, | ||
| 272 | #ifdef CONFIG_NET_POLL_CONTROLLER | ||
| 273 | .ndo_poll_controller = e100_netpoll, | ||
| 274 | #endif | ||
| 275 | }; | ||
| 276 | |||
| 260 | #define tx_done(dev) (*R_DMA_CH0_CMD == 0) | 277 | #define tx_done(dev) (*R_DMA_CH0_CMD == 0) |
| 261 | 278 | ||
| 262 | /* | 279 | /* |
| @@ -300,19 +317,8 @@ etrax_ethernet_init(void) | |||
| 300 | 317 | ||
| 301 | /* fill in our handlers so the network layer can talk to us in the future */ | 318 | /* fill in our handlers so the network layer can talk to us in the future */ |
| 302 | 319 | ||
| 303 | dev->open = e100_open; | ||
| 304 | dev->hard_start_xmit = e100_send_packet; | ||
| 305 | dev->stop = e100_close; | ||
| 306 | dev->get_stats = e100_get_stats; | ||
| 307 | dev->set_multicast_list = set_multicast_list; | ||
| 308 | dev->set_mac_address = e100_set_mac_address; | ||
| 309 | dev->ethtool_ops = &e100_ethtool_ops; | 320 | dev->ethtool_ops = &e100_ethtool_ops; |
| 310 | dev->do_ioctl = e100_ioctl; | 321 | dev->netdev_ops = &e100_netdev_ops; |
| 311 | dev->set_config = e100_set_config; | ||
| 312 | dev->tx_timeout = e100_tx_timeout; | ||
| 313 | #ifdef CONFIG_NET_POLL_CONTROLLER | ||
| 314 | dev->poll_controller = e100_netpoll; | ||
| 315 | #endif | ||
| 316 | 322 | ||
| 317 | spin_lock_init(&np->lock); | 323 | spin_lock_init(&np->lock); |
| 318 | spin_lock_init(&np->led_lock); | 324 | spin_lock_init(&np->led_lock); |
diff --git a/drivers/net/declance.c b/drivers/net/declance.c index 861c867fca87..b62405a69180 100644 --- a/drivers/net/declance.c +++ b/drivers/net/declance.c | |||
| @@ -1010,6 +1010,17 @@ static void lance_set_multicast_retry(unsigned long _opaque) | |||
| 1010 | lance_set_multicast(dev); | 1010 | lance_set_multicast(dev); |
| 1011 | } | 1011 | } |
| 1012 | 1012 | ||
| 1013 | static const struct net_device_ops lance_netdev_ops = { | ||
| 1014 | .ndo_open = lance_open, | ||
| 1015 | .ndo_stop = lance_close, | ||
| 1016 | .ndo_start_xmit = lance_start_xmit, | ||
| 1017 | .ndo_tx_timeout = lance_tx_timeout, | ||
| 1018 | .ndo_set_multicast_list = lance_set_multicast, | ||
| 1019 | .ndo_change_mtu = eth_change_mtu, | ||
| 1020 | .ndo_validate_addr = eth_validate_addr, | ||
| 1021 | .ndo_set_mac_address = eth_mac_addr, | ||
| 1022 | }; | ||
| 1023 | |||
| 1013 | static int __init dec_lance_probe(struct device *bdev, const int type) | 1024 | static int __init dec_lance_probe(struct device *bdev, const int type) |
| 1014 | { | 1025 | { |
| 1015 | static unsigned version_printed; | 1026 | static unsigned version_printed; |
| @@ -1223,12 +1234,8 @@ static int __init dec_lance_probe(struct device *bdev, const int type) | |||
| 1223 | 1234 | ||
| 1224 | printk(", addr = %pM, irq = %d\n", dev->dev_addr, dev->irq); | 1235 | printk(", addr = %pM, irq = %d\n", dev->dev_addr, dev->irq); |
| 1225 | 1236 | ||
| 1226 | dev->open = &lance_open; | 1237 | dev->netdev_ops = &lance_netdev_ops; |
| 1227 | dev->stop = &lance_close; | ||
| 1228 | dev->hard_start_xmit = &lance_start_xmit; | ||
| 1229 | dev->tx_timeout = &lance_tx_timeout; | ||
| 1230 | dev->watchdog_timeo = 5*HZ; | 1238 | dev->watchdog_timeo = 5*HZ; |
| 1231 | dev->set_multicast_list = &lance_set_multicast; | ||
| 1232 | 1239 | ||
| 1233 | /* lp->ll is the location of the registers for lance card */ | 1240 | /* lp->ll is the location of the registers for lance card */ |
| 1234 | lp->ll = ll; | 1241 | lp->ll = ll; |
diff --git a/drivers/net/e1000/e1000_main.c b/drivers/net/e1000/e1000_main.c index ddc5c533e89c..ef12931d302a 100644 --- a/drivers/net/e1000/e1000_main.c +++ b/drivers/net/e1000/e1000_main.c | |||
| @@ -156,8 +156,8 @@ static void e1000_vlan_rx_add_vid(struct net_device *netdev, u16 vid); | |||
| 156 | static void e1000_vlan_rx_kill_vid(struct net_device *netdev, u16 vid); | 156 | static void e1000_vlan_rx_kill_vid(struct net_device *netdev, u16 vid); |
| 157 | static void e1000_restore_vlan(struct e1000_adapter *adapter); | 157 | static void e1000_restore_vlan(struct e1000_adapter *adapter); |
| 158 | 158 | ||
| 159 | static int e1000_suspend(struct pci_dev *pdev, pm_message_t state); | ||
| 160 | #ifdef CONFIG_PM | 159 | #ifdef CONFIG_PM |
| 160 | static int e1000_suspend(struct pci_dev *pdev, pm_message_t state); | ||
| 161 | static int e1000_resume(struct pci_dev *pdev); | 161 | static int e1000_resume(struct pci_dev *pdev); |
| 162 | #endif | 162 | #endif |
| 163 | static void e1000_shutdown(struct pci_dev *pdev); | 163 | static void e1000_shutdown(struct pci_dev *pdev); |
| @@ -3834,7 +3834,7 @@ static bool e1000_clean_tx_irq(struct e1000_adapter *adapter, | |||
| 3834 | struct e1000_buffer *buffer_info; | 3834 | struct e1000_buffer *buffer_info; |
| 3835 | unsigned int i, eop; | 3835 | unsigned int i, eop; |
| 3836 | unsigned int count = 0; | 3836 | unsigned int count = 0; |
| 3837 | bool cleaned; | 3837 | bool cleaned = false; |
| 3838 | unsigned int total_tx_bytes=0, total_tx_packets=0; | 3838 | unsigned int total_tx_bytes=0, total_tx_packets=0; |
| 3839 | 3839 | ||
| 3840 | i = tx_ring->next_to_clean; | 3840 | i = tx_ring->next_to_clean; |
| @@ -4601,7 +4601,7 @@ int e1000_set_spd_dplx(struct e1000_adapter *adapter, u16 spddplx) | |||
| 4601 | return 0; | 4601 | return 0; |
| 4602 | } | 4602 | } |
| 4603 | 4603 | ||
| 4604 | static int e1000_suspend(struct pci_dev *pdev, pm_message_t state) | 4604 | static int __e1000_shutdown(struct pci_dev *pdev, bool *enable_wake) |
| 4605 | { | 4605 | { |
| 4606 | struct net_device *netdev = pci_get_drvdata(pdev); | 4606 | struct net_device *netdev = pci_get_drvdata(pdev); |
| 4607 | struct e1000_adapter *adapter = netdev_priv(netdev); | 4607 | struct e1000_adapter *adapter = netdev_priv(netdev); |
| @@ -4664,22 +4664,18 @@ static int e1000_suspend(struct pci_dev *pdev, pm_message_t state) | |||
| 4664 | 4664 | ||
| 4665 | ew32(WUC, E1000_WUC_PME_EN); | 4665 | ew32(WUC, E1000_WUC_PME_EN); |
| 4666 | ew32(WUFC, wufc); | 4666 | ew32(WUFC, wufc); |
| 4667 | pci_enable_wake(pdev, PCI_D3hot, 1); | ||
| 4668 | pci_enable_wake(pdev, PCI_D3cold, 1); | ||
| 4669 | } else { | 4667 | } else { |
| 4670 | ew32(WUC, 0); | 4668 | ew32(WUC, 0); |
| 4671 | ew32(WUFC, 0); | 4669 | ew32(WUFC, 0); |
| 4672 | pci_enable_wake(pdev, PCI_D3hot, 0); | ||
| 4673 | pci_enable_wake(pdev, PCI_D3cold, 0); | ||
| 4674 | } | 4670 | } |
| 4675 | 4671 | ||
| 4676 | e1000_release_manageability(adapter); | 4672 | e1000_release_manageability(adapter); |
| 4677 | 4673 | ||
| 4674 | *enable_wake = !!wufc; | ||
| 4675 | |||
| 4678 | /* make sure adapter isn't asleep if manageability is enabled */ | 4676 | /* make sure adapter isn't asleep if manageability is enabled */ |
| 4679 | if (adapter->en_mng_pt) { | 4677 | if (adapter->en_mng_pt) |
| 4680 | pci_enable_wake(pdev, PCI_D3hot, 1); | 4678 | *enable_wake = true; |
| 4681 | pci_enable_wake(pdev, PCI_D3cold, 1); | ||
| 4682 | } | ||
| 4683 | 4679 | ||
| 4684 | if (hw->phy_type == e1000_phy_igp_3) | 4680 | if (hw->phy_type == e1000_phy_igp_3) |
| 4685 | e1000_phy_powerdown_workaround(hw); | 4681 | e1000_phy_powerdown_workaround(hw); |
| @@ -4693,12 +4689,29 @@ static int e1000_suspend(struct pci_dev *pdev, pm_message_t state) | |||
| 4693 | 4689 | ||
| 4694 | pci_disable_device(pdev); | 4690 | pci_disable_device(pdev); |
| 4695 | 4691 | ||
| 4696 | pci_set_power_state(pdev, pci_choose_state(pdev, state)); | ||
| 4697 | |||
| 4698 | return 0; | 4692 | return 0; |
| 4699 | } | 4693 | } |
| 4700 | 4694 | ||
| 4701 | #ifdef CONFIG_PM | 4695 | #ifdef CONFIG_PM |
| 4696 | static int e1000_suspend(struct pci_dev *pdev, pm_message_t state) | ||
| 4697 | { | ||
| 4698 | int retval; | ||
| 4699 | bool wake; | ||
| 4700 | |||
| 4701 | retval = __e1000_shutdown(pdev, &wake); | ||
| 4702 | if (retval) | ||
| 4703 | return retval; | ||
| 4704 | |||
| 4705 | if (wake) { | ||
| 4706 | pci_prepare_to_sleep(pdev); | ||
| 4707 | } else { | ||
| 4708 | pci_wake_from_d3(pdev, false); | ||
| 4709 | pci_set_power_state(pdev, PCI_D3hot); | ||
| 4710 | } | ||
| 4711 | |||
| 4712 | return 0; | ||
| 4713 | } | ||
| 4714 | |||
| 4702 | static int e1000_resume(struct pci_dev *pdev) | 4715 | static int e1000_resume(struct pci_dev *pdev) |
| 4703 | { | 4716 | { |
| 4704 | struct net_device *netdev = pci_get_drvdata(pdev); | 4717 | struct net_device *netdev = pci_get_drvdata(pdev); |
| @@ -4753,7 +4766,14 @@ static int e1000_resume(struct pci_dev *pdev) | |||
| 4753 | 4766 | ||
| 4754 | static void e1000_shutdown(struct pci_dev *pdev) | 4767 | static void e1000_shutdown(struct pci_dev *pdev) |
| 4755 | { | 4768 | { |
| 4756 | e1000_suspend(pdev, PMSG_SUSPEND); | 4769 | bool wake; |
| 4770 | |||
| 4771 | __e1000_shutdown(pdev, &wake); | ||
| 4772 | |||
| 4773 | if (system_state == SYSTEM_POWER_OFF) { | ||
| 4774 | pci_wake_from_d3(pdev, wake); | ||
| 4775 | pci_set_power_state(pdev, PCI_D3hot); | ||
| 4776 | } | ||
| 4757 | } | 4777 | } |
| 4758 | 4778 | ||
| 4759 | #ifdef CONFIG_NET_POLL_CONTROLLER | 4779 | #ifdef CONFIG_NET_POLL_CONTROLLER |
diff --git a/drivers/net/e1000e/netdev.c b/drivers/net/e1000e/netdev.c index 409b58cad0e5..1693ed116b16 100644 --- a/drivers/net/e1000e/netdev.c +++ b/drivers/net/e1000e/netdev.c | |||
| @@ -621,7 +621,7 @@ static bool e1000_clean_tx_irq(struct e1000_adapter *adapter) | |||
| 621 | struct e1000_buffer *buffer_info; | 621 | struct e1000_buffer *buffer_info; |
| 622 | unsigned int i, eop; | 622 | unsigned int i, eop; |
| 623 | unsigned int count = 0; | 623 | unsigned int count = 0; |
| 624 | bool cleaned; | 624 | bool cleaned = false; |
| 625 | unsigned int total_tx_bytes = 0, total_tx_packets = 0; | 625 | unsigned int total_tx_bytes = 0, total_tx_packets = 0; |
| 626 | 626 | ||
| 627 | i = tx_ring->next_to_clean; | 627 | i = tx_ring->next_to_clean; |
| @@ -4346,7 +4346,7 @@ static int e1000_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd) | |||
| 4346 | } | 4346 | } |
| 4347 | } | 4347 | } |
| 4348 | 4348 | ||
| 4349 | static int e1000_suspend(struct pci_dev *pdev, pm_message_t state) | 4349 | static int __e1000_shutdown(struct pci_dev *pdev, bool *enable_wake) |
| 4350 | { | 4350 | { |
| 4351 | struct net_device *netdev = pci_get_drvdata(pdev); | 4351 | struct net_device *netdev = pci_get_drvdata(pdev); |
| 4352 | struct e1000_adapter *adapter = netdev_priv(netdev); | 4352 | struct e1000_adapter *adapter = netdev_priv(netdev); |
| @@ -4409,20 +4409,16 @@ static int e1000_suspend(struct pci_dev *pdev, pm_message_t state) | |||
| 4409 | 4409 | ||
| 4410 | ew32(WUC, E1000_WUC_PME_EN); | 4410 | ew32(WUC, E1000_WUC_PME_EN); |
| 4411 | ew32(WUFC, wufc); | 4411 | ew32(WUFC, wufc); |
| 4412 | pci_enable_wake(pdev, PCI_D3hot, 1); | ||
| 4413 | pci_enable_wake(pdev, PCI_D3cold, 1); | ||
| 4414 | } else { | 4412 | } else { |
| 4415 | ew32(WUC, 0); | 4413 | ew32(WUC, 0); |
| 4416 | ew32(WUFC, 0); | 4414 | ew32(WUFC, 0); |
| 4417 | pci_enable_wake(pdev, PCI_D3hot, 0); | ||
| 4418 | pci_enable_wake(pdev, PCI_D3cold, 0); | ||
| 4419 | } | 4415 | } |
| 4420 | 4416 | ||
| 4417 | *enable_wake = !!wufc; | ||
| 4418 | |||
| 4421 | /* make sure adapter isn't asleep if manageability is enabled */ | 4419 | /* make sure adapter isn't asleep if manageability is enabled */ |
| 4422 | if (adapter->flags & FLAG_MNG_PT_ENABLED) { | 4420 | if (adapter->flags & FLAG_MNG_PT_ENABLED) |
| 4423 | pci_enable_wake(pdev, PCI_D3hot, 1); | 4421 | *enable_wake = true; |
| 4424 | pci_enable_wake(pdev, PCI_D3cold, 1); | ||
| 4425 | } | ||
| 4426 | 4422 | ||
| 4427 | if (adapter->hw.phy.type == e1000_phy_igp_3) | 4423 | if (adapter->hw.phy.type == e1000_phy_igp_3) |
| 4428 | e1000e_igp3_phy_powerdown_workaround_ich8lan(&adapter->hw); | 4424 | e1000e_igp3_phy_powerdown_workaround_ich8lan(&adapter->hw); |
| @@ -4435,6 +4431,26 @@ static int e1000_suspend(struct pci_dev *pdev, pm_message_t state) | |||
| 4435 | 4431 | ||
| 4436 | pci_disable_device(pdev); | 4432 | pci_disable_device(pdev); |
| 4437 | 4433 | ||
| 4434 | return 0; | ||
| 4435 | } | ||
| 4436 | |||
| 4437 | static void e1000_power_off(struct pci_dev *pdev, bool sleep, bool wake) | ||
| 4438 | { | ||
| 4439 | if (sleep && wake) { | ||
| 4440 | pci_prepare_to_sleep(pdev); | ||
| 4441 | return; | ||
| 4442 | } | ||
| 4443 | |||
| 4444 | pci_wake_from_d3(pdev, wake); | ||
| 4445 | pci_set_power_state(pdev, PCI_D3hot); | ||
| 4446 | } | ||
| 4447 | |||
| 4448 | static void e1000_complete_shutdown(struct pci_dev *pdev, bool sleep, | ||
| 4449 | bool wake) | ||
| 4450 | { | ||
| 4451 | struct net_device *netdev = pci_get_drvdata(pdev); | ||
| 4452 | struct e1000_adapter *adapter = netdev_priv(netdev); | ||
| 4453 | |||
| 4438 | /* | 4454 | /* |
| 4439 | * The pci-e switch on some quad port adapters will report a | 4455 | * The pci-e switch on some quad port adapters will report a |
| 4440 | * correctable error when the MAC transitions from D0 to D3. To | 4456 | * correctable error when the MAC transitions from D0 to D3. To |
| @@ -4450,14 +4466,12 @@ static int e1000_suspend(struct pci_dev *pdev, pm_message_t state) | |||
| 4450 | pci_write_config_word(us_dev, pos + PCI_EXP_DEVCTL, | 4466 | pci_write_config_word(us_dev, pos + PCI_EXP_DEVCTL, |
| 4451 | (devctl & ~PCI_EXP_DEVCTL_CERE)); | 4467 | (devctl & ~PCI_EXP_DEVCTL_CERE)); |
| 4452 | 4468 | ||
| 4453 | pci_set_power_state(pdev, pci_choose_state(pdev, state)); | 4469 | e1000_power_off(pdev, sleep, wake); |
| 4454 | 4470 | ||
| 4455 | pci_write_config_word(us_dev, pos + PCI_EXP_DEVCTL, devctl); | 4471 | pci_write_config_word(us_dev, pos + PCI_EXP_DEVCTL, devctl); |
| 4456 | } else { | 4472 | } else { |
| 4457 | pci_set_power_state(pdev, pci_choose_state(pdev, state)); | 4473 | e1000_power_off(pdev, sleep, wake); |
| 4458 | } | 4474 | } |
| 4459 | |||
| 4460 | return 0; | ||
| 4461 | } | 4475 | } |
| 4462 | 4476 | ||
| 4463 | static void e1000e_disable_l1aspm(struct pci_dev *pdev) | 4477 | static void e1000e_disable_l1aspm(struct pci_dev *pdev) |
| @@ -4486,6 +4500,18 @@ static void e1000e_disable_l1aspm(struct pci_dev *pdev) | |||
| 4486 | } | 4500 | } |
| 4487 | 4501 | ||
| 4488 | #ifdef CONFIG_PM | 4502 | #ifdef CONFIG_PM |
| 4503 | static int e1000_suspend(struct pci_dev *pdev, pm_message_t state) | ||
| 4504 | { | ||
| 4505 | int retval; | ||
| 4506 | bool wake; | ||
| 4507 | |||
| 4508 | retval = __e1000_shutdown(pdev, &wake); | ||
| 4509 | if (!retval) | ||
| 4510 | e1000_complete_shutdown(pdev, true, wake); | ||
| 4511 | |||
| 4512 | return retval; | ||
| 4513 | } | ||
| 4514 | |||
| 4489 | static int e1000_resume(struct pci_dev *pdev) | 4515 | static int e1000_resume(struct pci_dev *pdev) |
| 4490 | { | 4516 | { |
| 4491 | struct net_device *netdev = pci_get_drvdata(pdev); | 4517 | struct net_device *netdev = pci_get_drvdata(pdev); |
| @@ -4549,7 +4575,12 @@ static int e1000_resume(struct pci_dev *pdev) | |||
| 4549 | 4575 | ||
| 4550 | static void e1000_shutdown(struct pci_dev *pdev) | 4576 | static void e1000_shutdown(struct pci_dev *pdev) |
| 4551 | { | 4577 | { |
| 4552 | e1000_suspend(pdev, PMSG_SUSPEND); | 4578 | bool wake = false; |
| 4579 | |||
| 4580 | __e1000_shutdown(pdev, &wake); | ||
| 4581 | |||
| 4582 | if (system_state == SYSTEM_POWER_OFF) | ||
| 4583 | e1000_complete_shutdown(pdev, false, wake); | ||
| 4553 | } | 4584 | } |
| 4554 | 4585 | ||
| 4555 | #ifdef CONFIG_NET_POLL_CONTROLLER | 4586 | #ifdef CONFIG_NET_POLL_CONTROLLER |
diff --git a/drivers/net/ehea/ehea_main.c b/drivers/net/ehea/ehea_main.c index ac0c5b438e0a..604c844d0769 100644 --- a/drivers/net/ehea/ehea_main.c +++ b/drivers/net/ehea/ehea_main.c | |||
| @@ -3080,7 +3080,8 @@ static const struct net_device_ops ehea_netdev_ops = { | |||
| 3080 | .ndo_change_mtu = ehea_change_mtu, | 3080 | .ndo_change_mtu = ehea_change_mtu, |
| 3081 | .ndo_vlan_rx_register = ehea_vlan_rx_register, | 3081 | .ndo_vlan_rx_register = ehea_vlan_rx_register, |
| 3082 | .ndo_vlan_rx_add_vid = ehea_vlan_rx_add_vid, | 3082 | .ndo_vlan_rx_add_vid = ehea_vlan_rx_add_vid, |
| 3083 | .ndo_vlan_rx_kill_vid = ehea_vlan_rx_kill_vid | 3083 | .ndo_vlan_rx_kill_vid = ehea_vlan_rx_kill_vid, |
| 3084 | .ndo_tx_timeout = ehea_tx_watchdog, | ||
| 3084 | }; | 3085 | }; |
| 3085 | 3086 | ||
| 3086 | struct ehea_port *ehea_setup_single_port(struct ehea_adapter *adapter, | 3087 | struct ehea_port *ehea_setup_single_port(struct ehea_adapter *adapter, |
| @@ -3142,7 +3143,6 @@ struct ehea_port *ehea_setup_single_port(struct ehea_adapter *adapter, | |||
| 3142 | | NETIF_F_HIGHDMA | NETIF_F_IP_CSUM | NETIF_F_HW_VLAN_TX | 3143 | | NETIF_F_HIGHDMA | NETIF_F_IP_CSUM | NETIF_F_HW_VLAN_TX |
| 3143 | | NETIF_F_HW_VLAN_RX | NETIF_F_HW_VLAN_FILTER | 3144 | | NETIF_F_HW_VLAN_RX | NETIF_F_HW_VLAN_FILTER |
| 3144 | | NETIF_F_LLTX; | 3145 | | NETIF_F_LLTX; |
| 3145 | dev->tx_timeout = &ehea_tx_watchdog; | ||
| 3146 | dev->watchdog_timeo = EHEA_WATCH_DOG_TIMEOUT; | 3146 | dev->watchdog_timeo = EHEA_WATCH_DOG_TIMEOUT; |
| 3147 | 3147 | ||
| 3148 | INIT_WORK(&port->reset_task, ehea_reset_port); | 3148 | INIT_WORK(&port->reset_task, ehea_reset_port); |
diff --git a/drivers/net/forcedeth.c b/drivers/net/forcedeth.c index d37465020bcc..11d5db16ed9c 100644 --- a/drivers/net/forcedeth.c +++ b/drivers/net/forcedeth.c | |||
| @@ -3745,14 +3745,14 @@ static int nv_napi_poll(struct napi_struct *napi, int budget) | |||
| 3745 | mod_timer(&np->nic_poll, jiffies + POLL_WAIT); | 3745 | mod_timer(&np->nic_poll, jiffies + POLL_WAIT); |
| 3746 | } | 3746 | } |
| 3747 | spin_unlock_irqrestore(&np->lock, flags); | 3747 | spin_unlock_irqrestore(&np->lock, flags); |
| 3748 | __napi_complete(napi); | 3748 | napi_complete(napi); |
| 3749 | return rx_work; | 3749 | return rx_work; |
| 3750 | } | 3750 | } |
| 3751 | 3751 | ||
| 3752 | if (rx_work < budget) { | 3752 | if (rx_work < budget) { |
| 3753 | /* re-enable interrupts | 3753 | /* re-enable interrupts |
| 3754 | (msix not enabled in napi) */ | 3754 | (msix not enabled in napi) */ |
| 3755 | __napi_complete(napi); | 3755 | napi_complete(napi); |
| 3756 | 3756 | ||
| 3757 | writel(np->irqmask, base + NvRegIrqMask); | 3757 | writel(np->irqmask, base + NvRegIrqMask); |
| 3758 | } | 3758 | } |
diff --git a/drivers/net/fs_enet/fs_enet-main.c b/drivers/net/fs_enet/fs_enet-main.c index b037ce9857bf..a9cbc3191a2a 100644 --- a/drivers/net/fs_enet/fs_enet-main.c +++ b/drivers/net/fs_enet/fs_enet-main.c | |||
| @@ -1019,6 +1019,22 @@ out_put_phy: | |||
| 1019 | #define IS_FEC(match) 0 | 1019 | #define IS_FEC(match) 0 |
| 1020 | #endif | 1020 | #endif |
| 1021 | 1021 | ||
| 1022 | static const struct net_device_ops fs_enet_netdev_ops = { | ||
| 1023 | .ndo_open = fs_enet_open, | ||
| 1024 | .ndo_stop = fs_enet_close, | ||
| 1025 | .ndo_get_stats = fs_enet_get_stats, | ||
| 1026 | .ndo_start_xmit = fs_enet_start_xmit, | ||
| 1027 | .ndo_tx_timeout = fs_timeout, | ||
| 1028 | .ndo_set_multicast_list = fs_set_multicast_list, | ||
| 1029 | .ndo_do_ioctl = fs_ioctl, | ||
| 1030 | .ndo_validate_addr = eth_validate_addr, | ||
| 1031 | .ndo_set_mac_address = eth_mac_addr, | ||
| 1032 | .ndo_change_mtu = eth_change_mtu, | ||
| 1033 | #ifdef CONFIG_NET_POLL_CONTROLLER | ||
| 1034 | .ndo_poll_controller = fs_enet_netpoll, | ||
| 1035 | #endif | ||
| 1036 | }; | ||
| 1037 | |||
| 1022 | static int __devinit fs_enet_probe(struct of_device *ofdev, | 1038 | static int __devinit fs_enet_probe(struct of_device *ofdev, |
| 1023 | const struct of_device_id *match) | 1039 | const struct of_device_id *match) |
| 1024 | { | 1040 | { |
| @@ -1093,22 +1109,13 @@ static int __devinit fs_enet_probe(struct of_device *ofdev, | |||
| 1093 | fep->tx_ring = fpi->tx_ring; | 1109 | fep->tx_ring = fpi->tx_ring; |
| 1094 | fep->rx_ring = fpi->rx_ring; | 1110 | fep->rx_ring = fpi->rx_ring; |
| 1095 | 1111 | ||
| 1096 | ndev->open = fs_enet_open; | 1112 | ndev->netdev_ops = &fs_enet_netdev_ops; |
| 1097 | ndev->hard_start_xmit = fs_enet_start_xmit; | ||
| 1098 | ndev->tx_timeout = fs_timeout; | ||
| 1099 | ndev->watchdog_timeo = 2 * HZ; | 1113 | ndev->watchdog_timeo = 2 * HZ; |
| 1100 | ndev->stop = fs_enet_close; | ||
| 1101 | ndev->get_stats = fs_enet_get_stats; | ||
| 1102 | ndev->set_multicast_list = fs_set_multicast_list; | ||
| 1103 | #ifdef CONFIG_NET_POLL_CONTROLLER | ||
| 1104 | ndev->poll_controller = fs_enet_netpoll; | ||
| 1105 | #endif | ||
| 1106 | if (fpi->use_napi) | 1114 | if (fpi->use_napi) |
| 1107 | netif_napi_add(ndev, &fep->napi, fs_enet_rx_napi, | 1115 | netif_napi_add(ndev, &fep->napi, fs_enet_rx_napi, |
| 1108 | fpi->napi_weight); | 1116 | fpi->napi_weight); |
| 1109 | 1117 | ||
| 1110 | ndev->ethtool_ops = &fs_ethtool_ops; | 1118 | ndev->ethtool_ops = &fs_ethtool_ops; |
| 1111 | ndev->do_ioctl = fs_ioctl; | ||
| 1112 | 1119 | ||
| 1113 | init_timer(&fep->phy_timer_list); | 1120 | init_timer(&fep->phy_timer_list); |
| 1114 | 1121 | ||
diff --git a/drivers/net/gianfar.c b/drivers/net/gianfar.c index 65f55877be95..b2c49679bba7 100644 --- a/drivers/net/gianfar.c +++ b/drivers/net/gianfar.c | |||
| @@ -1583,8 +1583,10 @@ static void gfar_reset_task(struct work_struct *work) | |||
| 1583 | struct net_device *dev = priv->ndev; | 1583 | struct net_device *dev = priv->ndev; |
| 1584 | 1584 | ||
| 1585 | if (dev->flags & IFF_UP) { | 1585 | if (dev->flags & IFF_UP) { |
| 1586 | netif_stop_queue(dev); | ||
| 1586 | stop_gfar(dev); | 1587 | stop_gfar(dev); |
| 1587 | startup_gfar(dev); | 1588 | startup_gfar(dev); |
| 1589 | netif_start_queue(dev); | ||
| 1588 | } | 1590 | } |
| 1589 | 1591 | ||
| 1590 | netif_tx_schedule_all(dev); | 1592 | netif_tx_schedule_all(dev); |
diff --git a/drivers/net/ibm_newemac/core.c b/drivers/net/ibm_newemac/core.c index 77e4b5b52fc8..806533c831c7 100644 --- a/drivers/net/ibm_newemac/core.c +++ b/drivers/net/ibm_newemac/core.c | |||
| @@ -2686,6 +2686,32 @@ static int __devinit emac_init_config(struct emac_instance *dev) | |||
| 2686 | return 0; | 2686 | return 0; |
| 2687 | } | 2687 | } |
| 2688 | 2688 | ||
| 2689 | static const struct net_device_ops emac_netdev_ops = { | ||
| 2690 | .ndo_open = emac_open, | ||
| 2691 | .ndo_stop = emac_close, | ||
| 2692 | .ndo_get_stats = emac_stats, | ||
| 2693 | .ndo_set_multicast_list = emac_set_multicast_list, | ||
| 2694 | .ndo_do_ioctl = emac_ioctl, | ||
| 2695 | .ndo_tx_timeout = emac_tx_timeout, | ||
| 2696 | .ndo_validate_addr = eth_validate_addr, | ||
| 2697 | .ndo_set_mac_address = eth_mac_addr, | ||
| 2698 | .ndo_start_xmit = emac_start_xmit, | ||
| 2699 | .ndo_change_mtu = eth_change_mtu, | ||
| 2700 | }; | ||
| 2701 | |||
| 2702 | static const struct net_device_ops emac_gige_netdev_ops = { | ||
| 2703 | .ndo_open = emac_open, | ||
| 2704 | .ndo_stop = emac_close, | ||
| 2705 | .ndo_get_stats = emac_stats, | ||
| 2706 | .ndo_set_multicast_list = emac_set_multicast_list, | ||
| 2707 | .ndo_do_ioctl = emac_ioctl, | ||
| 2708 | .ndo_tx_timeout = emac_tx_timeout, | ||
| 2709 | .ndo_validate_addr = eth_validate_addr, | ||
| 2710 | .ndo_set_mac_address = eth_mac_addr, | ||
| 2711 | .ndo_start_xmit = emac_start_xmit_sg, | ||
| 2712 | .ndo_change_mtu = emac_change_mtu, | ||
| 2713 | }; | ||
| 2714 | |||
| 2689 | static int __devinit emac_probe(struct of_device *ofdev, | 2715 | static int __devinit emac_probe(struct of_device *ofdev, |
| 2690 | const struct of_device_id *match) | 2716 | const struct of_device_id *match) |
| 2691 | { | 2717 | { |
| @@ -2827,23 +2853,14 @@ static int __devinit emac_probe(struct of_device *ofdev, | |||
| 2827 | if (err != 0) | 2853 | if (err != 0) |
| 2828 | goto err_detach_tah; | 2854 | goto err_detach_tah; |
| 2829 | 2855 | ||
| 2830 | /* Fill in the driver function table */ | ||
| 2831 | ndev->open = &emac_open; | ||
| 2832 | if (dev->tah_dev) | 2856 | if (dev->tah_dev) |
| 2833 | ndev->features |= NETIF_F_IP_CSUM | NETIF_F_SG; | 2857 | ndev->features |= NETIF_F_IP_CSUM | NETIF_F_SG; |
| 2834 | ndev->tx_timeout = &emac_tx_timeout; | ||
| 2835 | ndev->watchdog_timeo = 5 * HZ; | 2858 | ndev->watchdog_timeo = 5 * HZ; |
| 2836 | ndev->stop = &emac_close; | ||
| 2837 | ndev->get_stats = &emac_stats; | ||
| 2838 | ndev->set_multicast_list = &emac_set_multicast_list; | ||
| 2839 | ndev->do_ioctl = &emac_ioctl; | ||
| 2840 | if (emac_phy_supports_gige(dev->phy_mode)) { | 2859 | if (emac_phy_supports_gige(dev->phy_mode)) { |
| 2841 | ndev->hard_start_xmit = &emac_start_xmit_sg; | 2860 | ndev->netdev_ops = &emac_gige_netdev_ops; |
| 2842 | ndev->change_mtu = &emac_change_mtu; | ||
| 2843 | dev->commac.ops = &emac_commac_sg_ops; | 2861 | dev->commac.ops = &emac_commac_sg_ops; |
| 2844 | } else { | 2862 | } else |
| 2845 | ndev->hard_start_xmit = &emac_start_xmit; | 2863 | ndev->netdev_ops = &emac_netdev_ops; |
| 2846 | } | ||
| 2847 | SET_ETHTOOL_OPS(ndev, &emac_ethtool_ops); | 2864 | SET_ETHTOOL_OPS(ndev, &emac_ethtool_ops); |
| 2848 | 2865 | ||
| 2849 | netif_carrier_off(ndev); | 2866 | netif_carrier_off(ndev); |
diff --git a/drivers/net/igb/e1000_mac.c b/drivers/net/igb/e1000_mac.c index f4c315b5a900..472f3f124840 100644 --- a/drivers/net/igb/e1000_mac.c +++ b/drivers/net/igb/e1000_mac.c | |||
| @@ -111,7 +111,7 @@ void igb_clear_vfta(struct e1000_hw *hw) | |||
| 111 | * Writes value at the given offset in the register array which stores | 111 | * Writes value at the given offset in the register array which stores |
| 112 | * the VLAN filter table. | 112 | * the VLAN filter table. |
| 113 | **/ | 113 | **/ |
| 114 | void igb_write_vfta(struct e1000_hw *hw, u32 offset, u32 value) | 114 | static void igb_write_vfta(struct e1000_hw *hw, u32 offset, u32 value) |
| 115 | { | 115 | { |
| 116 | array_wr32(E1000_VFTA, offset, value); | 116 | array_wr32(E1000_VFTA, offset, value); |
| 117 | wrfl(); | 117 | wrfl(); |
diff --git a/drivers/net/igb/e1000_mac.h b/drivers/net/igb/e1000_mac.h index a34de5269637..1d690b4c9ae4 100644 --- a/drivers/net/igb/e1000_mac.h +++ b/drivers/net/igb/e1000_mac.h | |||
| @@ -66,7 +66,6 @@ void igb_rar_set(struct e1000_hw *hw, u8 *addr, u32 index); | |||
| 66 | s32 igb_check_alt_mac_addr(struct e1000_hw *hw); | 66 | s32 igb_check_alt_mac_addr(struct e1000_hw *hw); |
| 67 | void igb_reset_adaptive(struct e1000_hw *hw); | 67 | void igb_reset_adaptive(struct e1000_hw *hw); |
| 68 | void igb_update_adaptive(struct e1000_hw *hw); | 68 | void igb_update_adaptive(struct e1000_hw *hw); |
| 69 | void igb_write_vfta(struct e1000_hw *hw, u32 offset, u32 value); | ||
| 70 | 69 | ||
| 71 | bool igb_enable_mng_pass_thru(struct e1000_hw *hw); | 70 | bool igb_enable_mng_pass_thru(struct e1000_hw *hw); |
| 72 | 71 | ||
diff --git a/drivers/net/igb/e1000_mbx.c b/drivers/net/igb/e1000_mbx.c index fe71c7ddaa05..840782fb5736 100644 --- a/drivers/net/igb/e1000_mbx.c +++ b/drivers/net/igb/e1000_mbx.c | |||
| @@ -188,7 +188,7 @@ out: | |||
| 188 | * returns SUCCESS if it successfully received a message notification and | 188 | * returns SUCCESS if it successfully received a message notification and |
| 189 | * copied it into the receive buffer. | 189 | * copied it into the receive buffer. |
| 190 | **/ | 190 | **/ |
| 191 | s32 igb_read_posted_mbx(struct e1000_hw *hw, u32 *msg, u16 size, u16 mbx_id) | 191 | static s32 igb_read_posted_mbx(struct e1000_hw *hw, u32 *msg, u16 size, u16 mbx_id) |
| 192 | { | 192 | { |
| 193 | struct e1000_mbx_info *mbx = &hw->mbx; | 193 | struct e1000_mbx_info *mbx = &hw->mbx; |
| 194 | s32 ret_val = -E1000_ERR_MBX; | 194 | s32 ret_val = -E1000_ERR_MBX; |
| @@ -214,7 +214,7 @@ out: | |||
| 214 | * returns SUCCESS if it successfully copied message into the buffer and | 214 | * returns SUCCESS if it successfully copied message into the buffer and |
| 215 | * received an ack to that message within delay * timeout period | 215 | * received an ack to that message within delay * timeout period |
| 216 | **/ | 216 | **/ |
| 217 | s32 igb_write_posted_mbx(struct e1000_hw *hw, u32 *msg, u16 size, u16 mbx_id) | 217 | static s32 igb_write_posted_mbx(struct e1000_hw *hw, u32 *msg, u16 size, u16 mbx_id) |
| 218 | { | 218 | { |
| 219 | struct e1000_mbx_info *mbx = &hw->mbx; | 219 | struct e1000_mbx_info *mbx = &hw->mbx; |
| 220 | s32 ret_val = 0; | 220 | s32 ret_val = 0; |
| @@ -232,19 +232,6 @@ out: | |||
| 232 | return ret_val; | 232 | return ret_val; |
| 233 | } | 233 | } |
| 234 | 234 | ||
| 235 | /** | ||
| 236 | * e1000_init_mbx_ops_generic - Initialize NVM function pointers | ||
| 237 | * @hw: pointer to the HW structure | ||
| 238 | * | ||
| 239 | * Setups up the function pointers to no-op functions | ||
| 240 | **/ | ||
| 241 | void e1000_init_mbx_ops_generic(struct e1000_hw *hw) | ||
| 242 | { | ||
| 243 | struct e1000_mbx_info *mbx = &hw->mbx; | ||
| 244 | mbx->ops.read_posted = igb_read_posted_mbx; | ||
| 245 | mbx->ops.write_posted = igb_write_posted_mbx; | ||
| 246 | } | ||
| 247 | |||
| 248 | static s32 igb_check_for_bit_pf(struct e1000_hw *hw, u32 mask) | 235 | static s32 igb_check_for_bit_pf(struct e1000_hw *hw, u32 mask) |
| 249 | { | 236 | { |
| 250 | u32 mbvficr = rd32(E1000_MBVFICR); | 237 | u32 mbvficr = rd32(E1000_MBVFICR); |
diff --git a/drivers/net/igb/e1000_mbx.h b/drivers/net/igb/e1000_mbx.h index 6ec9890a8f7a..ebc02ea3f198 100644 --- a/drivers/net/igb/e1000_mbx.h +++ b/drivers/net/igb/e1000_mbx.h | |||
| @@ -67,8 +67,6 @@ | |||
| 67 | 67 | ||
| 68 | s32 igb_read_mbx(struct e1000_hw *, u32 *, u16, u16); | 68 | s32 igb_read_mbx(struct e1000_hw *, u32 *, u16, u16); |
| 69 | s32 igb_write_mbx(struct e1000_hw *, u32 *, u16, u16); | 69 | s32 igb_write_mbx(struct e1000_hw *, u32 *, u16, u16); |
| 70 | s32 igb_read_posted_mbx(struct e1000_hw *, u32 *, u16, u16); | ||
| 71 | s32 igb_write_posted_mbx(struct e1000_hw *, u32 *, u16, u16); | ||
| 72 | s32 igb_check_for_msg(struct e1000_hw *, u16); | 70 | s32 igb_check_for_msg(struct e1000_hw *, u16); |
| 73 | s32 igb_check_for_ack(struct e1000_hw *, u16); | 71 | s32 igb_check_for_ack(struct e1000_hw *, u16); |
| 74 | s32 igb_check_for_rst(struct e1000_hw *, u16); | 72 | s32 igb_check_for_rst(struct e1000_hw *, u16); |
diff --git a/drivers/net/igb/igb_main.c b/drivers/net/igb/igb_main.c index db7274e62228..08c801490c72 100644 --- a/drivers/net/igb/igb_main.c +++ b/drivers/net/igb/igb_main.c | |||
| @@ -1261,25 +1261,32 @@ static int __devinit igb_probe(struct pci_dev *pdev, | |||
| 1261 | int i; | 1261 | int i; |
| 1262 | unsigned char mac_addr[ETH_ALEN]; | 1262 | unsigned char mac_addr[ETH_ALEN]; |
| 1263 | 1263 | ||
| 1264 | if (num_vfs) | 1264 | if (num_vfs) { |
| 1265 | adapter->vf_data = kcalloc(num_vfs, | 1265 | adapter->vf_data = kcalloc(num_vfs, |
| 1266 | sizeof(struct vf_data_storage), | 1266 | sizeof(struct vf_data_storage), |
| 1267 | GFP_KERNEL); | 1267 | GFP_KERNEL); |
| 1268 | if (!adapter->vf_data) { | 1268 | if (!adapter->vf_data) { |
| 1269 | dev_err(&pdev->dev, "Could not allocate VF private " | 1269 | dev_err(&pdev->dev, |
| 1270 | "data - IOV enable failed\n"); | 1270 | "Could not allocate VF private data - " |
| 1271 | } else { | 1271 | "IOV enable failed\n"); |
| 1272 | err = pci_enable_sriov(pdev, num_vfs); | ||
| 1273 | if (!err) { | ||
| 1274 | adapter->vfs_allocated_count = num_vfs; | ||
| 1275 | dev_info(&pdev->dev, "%d vfs allocated\n", num_vfs); | ||
| 1276 | for (i = 0; i < adapter->vfs_allocated_count; i++) { | ||
| 1277 | random_ether_addr(mac_addr); | ||
| 1278 | igb_set_vf_mac(adapter, i, mac_addr); | ||
| 1279 | } | ||
| 1280 | } else { | 1272 | } else { |
| 1281 | kfree(adapter->vf_data); | 1273 | err = pci_enable_sriov(pdev, num_vfs); |
| 1282 | adapter->vf_data = NULL; | 1274 | if (!err) { |
| 1275 | adapter->vfs_allocated_count = num_vfs; | ||
| 1276 | dev_info(&pdev->dev, | ||
| 1277 | "%d vfs allocated\n", | ||
| 1278 | num_vfs); | ||
| 1279 | for (i = 0; | ||
| 1280 | i < adapter->vfs_allocated_count; | ||
| 1281 | i++) { | ||
| 1282 | random_ether_addr(mac_addr); | ||
| 1283 | igb_set_vf_mac(adapter, i, | ||
| 1284 | mac_addr); | ||
| 1285 | } | ||
| 1286 | } else { | ||
| 1287 | kfree(adapter->vf_data); | ||
| 1288 | adapter->vf_data = NULL; | ||
| 1289 | } | ||
| 1283 | } | 1290 | } |
| 1284 | } | 1291 | } |
| 1285 | } | 1292 | } |
diff --git a/drivers/net/igbvf/igbvf.h b/drivers/net/igbvf/igbvf.h index 936ed2a9435f..4bff35e46871 100644 --- a/drivers/net/igbvf/igbvf.h +++ b/drivers/net/igbvf/igbvf.h | |||
| @@ -321,14 +321,11 @@ extern void igbvf_set_ethtool_ops(struct net_device *); | |||
| 321 | extern int igbvf_up(struct igbvf_adapter *); | 321 | extern int igbvf_up(struct igbvf_adapter *); |
| 322 | extern void igbvf_down(struct igbvf_adapter *); | 322 | extern void igbvf_down(struct igbvf_adapter *); |
| 323 | extern void igbvf_reinit_locked(struct igbvf_adapter *); | 323 | extern void igbvf_reinit_locked(struct igbvf_adapter *); |
| 324 | extern void igbvf_reset(struct igbvf_adapter *); | ||
| 325 | extern int igbvf_setup_rx_resources(struct igbvf_adapter *, struct igbvf_ring *); | 324 | extern int igbvf_setup_rx_resources(struct igbvf_adapter *, struct igbvf_ring *); |
| 326 | extern int igbvf_setup_tx_resources(struct igbvf_adapter *, struct igbvf_ring *); | 325 | extern int igbvf_setup_tx_resources(struct igbvf_adapter *, struct igbvf_ring *); |
| 327 | extern void igbvf_free_rx_resources(struct igbvf_ring *); | 326 | extern void igbvf_free_rx_resources(struct igbvf_ring *); |
| 328 | extern void igbvf_free_tx_resources(struct igbvf_ring *); | 327 | extern void igbvf_free_tx_resources(struct igbvf_ring *); |
| 329 | extern void igbvf_update_stats(struct igbvf_adapter *); | 328 | extern void igbvf_update_stats(struct igbvf_adapter *); |
| 330 | extern void igbvf_set_interrupt_capability(struct igbvf_adapter *); | ||
| 331 | extern void igbvf_reset_interrupt_capability(struct igbvf_adapter *); | ||
| 332 | 329 | ||
| 333 | extern unsigned int copybreak; | 330 | extern unsigned int copybreak; |
| 334 | 331 | ||
diff --git a/drivers/net/igbvf/netdev.c b/drivers/net/igbvf/netdev.c index c5648420dedf..b774666ad3cf 100644 --- a/drivers/net/igbvf/netdev.c +++ b/drivers/net/igbvf/netdev.c | |||
| @@ -52,6 +52,9 @@ static const char igbvf_driver_string[] = | |||
| 52 | static const char igbvf_copyright[] = "Copyright (c) 2009 Intel Corporation."; | 52 | static const char igbvf_copyright[] = "Copyright (c) 2009 Intel Corporation."; |
| 53 | 53 | ||
| 54 | static int igbvf_poll(struct napi_struct *napi, int budget); | 54 | static int igbvf_poll(struct napi_struct *napi, int budget); |
| 55 | static void igbvf_reset(struct igbvf_adapter *); | ||
| 56 | static void igbvf_set_interrupt_capability(struct igbvf_adapter *); | ||
| 57 | static void igbvf_reset_interrupt_capability(struct igbvf_adapter *); | ||
| 55 | 58 | ||
| 56 | static struct igbvf_info igbvf_vf_info = { | 59 | static struct igbvf_info igbvf_vf_info = { |
| 57 | .mac = e1000_vfadapt, | 60 | .mac = e1000_vfadapt, |
| @@ -990,7 +993,7 @@ static void igbvf_configure_msix(struct igbvf_adapter *adapter) | |||
| 990 | e1e_flush(); | 993 | e1e_flush(); |
| 991 | } | 994 | } |
| 992 | 995 | ||
| 993 | void igbvf_reset_interrupt_capability(struct igbvf_adapter *adapter) | 996 | static void igbvf_reset_interrupt_capability(struct igbvf_adapter *adapter) |
| 994 | { | 997 | { |
| 995 | if (adapter->msix_entries) { | 998 | if (adapter->msix_entries) { |
| 996 | pci_disable_msix(adapter->pdev); | 999 | pci_disable_msix(adapter->pdev); |
| @@ -1005,7 +1008,7 @@ void igbvf_reset_interrupt_capability(struct igbvf_adapter *adapter) | |||
| 1005 | * Attempt to configure interrupts using the best available | 1008 | * Attempt to configure interrupts using the best available |
| 1006 | * capabilities of the hardware and kernel. | 1009 | * capabilities of the hardware and kernel. |
| 1007 | **/ | 1010 | **/ |
| 1008 | void igbvf_set_interrupt_capability(struct igbvf_adapter *adapter) | 1011 | static void igbvf_set_interrupt_capability(struct igbvf_adapter *adapter) |
| 1009 | { | 1012 | { |
| 1010 | int err = -ENOMEM; | 1013 | int err = -ENOMEM; |
| 1011 | int i; | 1014 | int i; |
| @@ -1447,7 +1450,7 @@ static void igbvf_configure(struct igbvf_adapter *adapter) | |||
| 1447 | * set/changed during runtime. After reset the device needs to be | 1450 | * set/changed during runtime. After reset the device needs to be |
| 1448 | * properly configured for Rx, Tx etc. | 1451 | * properly configured for Rx, Tx etc. |
| 1449 | */ | 1452 | */ |
| 1450 | void igbvf_reset(struct igbvf_adapter *adapter) | 1453 | static void igbvf_reset(struct igbvf_adapter *adapter) |
| 1451 | { | 1454 | { |
| 1452 | struct e1000_mac_info *mac = &adapter->hw.mac; | 1455 | struct e1000_mac_info *mac = &adapter->hw.mac; |
| 1453 | struct net_device *netdev = adapter->netdev; | 1456 | struct net_device *netdev = adapter->netdev; |
diff --git a/drivers/net/igbvf/vf.c b/drivers/net/igbvf/vf.c index aa246c93279d..2a4faf9ade69 100644 --- a/drivers/net/igbvf/vf.c +++ b/drivers/net/igbvf/vf.c | |||
| @@ -44,7 +44,7 @@ static s32 e1000_set_vfta_vf(struct e1000_hw *, u16, bool); | |||
| 44 | * e1000_init_mac_params_vf - Inits MAC params | 44 | * e1000_init_mac_params_vf - Inits MAC params |
| 45 | * @hw: pointer to the HW structure | 45 | * @hw: pointer to the HW structure |
| 46 | **/ | 46 | **/ |
| 47 | s32 e1000_init_mac_params_vf(struct e1000_hw *hw) | 47 | static s32 e1000_init_mac_params_vf(struct e1000_hw *hw) |
| 48 | { | 48 | { |
| 49 | struct e1000_mac_info *mac = &hw->mac; | 49 | struct e1000_mac_info *mac = &hw->mac; |
| 50 | 50 | ||
diff --git a/drivers/net/igbvf/vf.h b/drivers/net/igbvf/vf.h index ec07228f9478..1e8ce3741a67 100644 --- a/drivers/net/igbvf/vf.h +++ b/drivers/net/igbvf/vf.h | |||
| @@ -259,7 +259,6 @@ struct e1000_hw { | |||
| 259 | /* These functions must be implemented by drivers */ | 259 | /* These functions must be implemented by drivers */ |
| 260 | void e1000_rlpml_set_vf(struct e1000_hw *, u16); | 260 | void e1000_rlpml_set_vf(struct e1000_hw *, u16); |
| 261 | void e1000_init_function_pointers_vf(struct e1000_hw *hw); | 261 | void e1000_init_function_pointers_vf(struct e1000_hw *hw); |
| 262 | s32 e1000_init_mac_params_vf(struct e1000_hw *hw); | ||
| 263 | 262 | ||
| 264 | 263 | ||
| 265 | #endif /* _E1000_VF_H_ */ | 264 | #endif /* _E1000_VF_H_ */ |
diff --git a/drivers/net/ioc3-eth.c b/drivers/net/ioc3-eth.c index cbc63ff13add..c5593f4665a4 100644 --- a/drivers/net/ioc3-eth.c +++ b/drivers/net/ioc3-eth.c | |||
| @@ -1214,6 +1214,19 @@ static void __devinit ioc3_serial_probe(struct pci_dev *pdev, struct ioc3 *ioc3) | |||
| 1214 | } | 1214 | } |
| 1215 | #endif | 1215 | #endif |
| 1216 | 1216 | ||
| 1217 | static const struct net_device_ops ioc3_netdev_ops = { | ||
| 1218 | .ndo_open = ioc3_open, | ||
| 1219 | .ndo_stop = ioc3_close, | ||
| 1220 | .ndo_start_xmit = ioc3_start_xmit, | ||
| 1221 | .ndo_tx_timeout = ioc3_timeout, | ||
| 1222 | .ndo_get_stats = ioc3_get_stats, | ||
| 1223 | .ndo_set_multicast_list = ioc3_set_multicast_list, | ||
| 1224 | .ndo_do_ioctl = ioc3_ioctl, | ||
| 1225 | .ndo_validate_addr = eth_validate_addr, | ||
| 1226 | .ndo_set_mac_address = ioc3_set_mac_address, | ||
| 1227 | .ndo_change_mtu = eth_change_mtu, | ||
| 1228 | }; | ||
| 1229 | |||
| 1217 | static int __devinit ioc3_probe(struct pci_dev *pdev, | 1230 | static int __devinit ioc3_probe(struct pci_dev *pdev, |
| 1218 | const struct pci_device_id *ent) | 1231 | const struct pci_device_id *ent) |
| 1219 | { | 1232 | { |
| @@ -1310,15 +1323,8 @@ static int __devinit ioc3_probe(struct pci_dev *pdev, | |||
| 1310 | ioc3_get_eaddr(ip); | 1323 | ioc3_get_eaddr(ip); |
| 1311 | 1324 | ||
| 1312 | /* The IOC3-specific entries in the device structure. */ | 1325 | /* The IOC3-specific entries in the device structure. */ |
| 1313 | dev->open = ioc3_open; | ||
| 1314 | dev->hard_start_xmit = ioc3_start_xmit; | ||
| 1315 | dev->tx_timeout = ioc3_timeout; | ||
| 1316 | dev->watchdog_timeo = 5 * HZ; | 1326 | dev->watchdog_timeo = 5 * HZ; |
| 1317 | dev->stop = ioc3_close; | 1327 | dev->netdev_ops = &ioc3_netdev_ops; |
| 1318 | dev->get_stats = ioc3_get_stats; | ||
| 1319 | dev->do_ioctl = ioc3_ioctl; | ||
| 1320 | dev->set_multicast_list = ioc3_set_multicast_list; | ||
| 1321 | dev->set_mac_address = ioc3_set_mac_address; | ||
| 1322 | dev->ethtool_ops = &ioc3_ethtool_ops; | 1328 | dev->ethtool_ops = &ioc3_ethtool_ops; |
| 1323 | dev->features = NETIF_F_IP_CSUM; | 1329 | dev->features = NETIF_F_IP_CSUM; |
| 1324 | 1330 | ||
diff --git a/drivers/net/isa-skeleton.c b/drivers/net/isa-skeleton.c index 3126678bdd3c..73585fd8f29f 100644 --- a/drivers/net/isa-skeleton.c +++ b/drivers/net/isa-skeleton.c | |||
| @@ -181,6 +181,18 @@ out: | |||
| 181 | } | 181 | } |
| 182 | #endif | 182 | #endif |
| 183 | 183 | ||
| 184 | static const struct net_device_ops netcard_netdev_ops = { | ||
| 185 | .ndo_open = net_open, | ||
| 186 | .ndo_stop = net_close, | ||
| 187 | .ndo_start_xmit = net_send_packet, | ||
| 188 | .ndo_get_stats = net_get_stats, | ||
| 189 | .ndo_set_multicast_list = set_multicast_list, | ||
| 190 | .ndo_tx_timeout = net_tx_timeout, | ||
| 191 | .ndo_validate_addr = eth_validate_addr, | ||
| 192 | .ndo_set_mac_address = eth_mac_addr, | ||
| 193 | .ndo_change_mtu = eth_change_mtu, | ||
| 194 | }; | ||
| 195 | |||
| 184 | /* | 196 | /* |
| 185 | * This is the real probe routine. Linux has a history of friendly device | 197 | * This is the real probe routine. Linux has a history of friendly device |
| 186 | * probes on the ISA bus. A good device probes avoids doing writes, and | 198 | * probes on the ISA bus. A good device probes avoids doing writes, and |
| @@ -303,13 +315,7 @@ static int __init netcard_probe1(struct net_device *dev, int ioaddr) | |||
| 303 | np = netdev_priv(dev); | 315 | np = netdev_priv(dev); |
| 304 | spin_lock_init(&np->lock); | 316 | spin_lock_init(&np->lock); |
| 305 | 317 | ||
| 306 | dev->open = net_open; | 318 | dev->netdev_ops = &netcard_netdev_ops; |
| 307 | dev->stop = net_close; | ||
| 308 | dev->hard_start_xmit = net_send_packet; | ||
| 309 | dev->get_stats = net_get_stats; | ||
| 310 | dev->set_multicast_list = &set_multicast_list; | ||
| 311 | |||
| 312 | dev->tx_timeout = &net_tx_timeout; | ||
| 313 | dev->watchdog_timeo = MY_TX_TIMEOUT; | 319 | dev->watchdog_timeo = MY_TX_TIMEOUT; |
| 314 | 320 | ||
| 315 | err = register_netdev(dev); | 321 | err = register_netdev(dev); |
diff --git a/drivers/net/ixgbe/ixgbe_82598.c b/drivers/net/ixgbe/ixgbe_82598.c index de4db0dc7879..4791238c3f6e 100644 --- a/drivers/net/ixgbe/ixgbe_82598.c +++ b/drivers/net/ixgbe/ixgbe_82598.c | |||
| @@ -885,61 +885,6 @@ static s32 ixgbe_clear_vfta_82598(struct ixgbe_hw *hw) | |||
| 885 | } | 885 | } |
| 886 | 886 | ||
| 887 | /** | 887 | /** |
| 888 | * ixgbe_blink_led_start_82598 - Blink LED based on index. | ||
| 889 | * @hw: pointer to hardware structure | ||
| 890 | * @index: led number to blink | ||
| 891 | **/ | ||
| 892 | static s32 ixgbe_blink_led_start_82598(struct ixgbe_hw *hw, u32 index) | ||
| 893 | { | ||
| 894 | ixgbe_link_speed speed = 0; | ||
| 895 | bool link_up = 0; | ||
| 896 | u32 autoc_reg = IXGBE_READ_REG(hw, IXGBE_AUTOC); | ||
| 897 | u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL); | ||
| 898 | |||
| 899 | /* | ||
| 900 | * Link must be up to auto-blink the LEDs on the 82598EB MAC; | ||
| 901 | * force it if link is down. | ||
| 902 | */ | ||
| 903 | hw->mac.ops.check_link(hw, &speed, &link_up, false); | ||
| 904 | |||
| 905 | if (!link_up) { | ||
| 906 | autoc_reg |= IXGBE_AUTOC_FLU; | ||
| 907 | IXGBE_WRITE_REG(hw, IXGBE_AUTOC, autoc_reg); | ||
| 908 | msleep(10); | ||
| 909 | } | ||
| 910 | |||
| 911 | led_reg &= ~IXGBE_LED_MODE_MASK(index); | ||
| 912 | led_reg |= IXGBE_LED_BLINK(index); | ||
| 913 | IXGBE_WRITE_REG(hw, IXGBE_LEDCTL, led_reg); | ||
| 914 | IXGBE_WRITE_FLUSH(hw); | ||
| 915 | |||
| 916 | return 0; | ||
| 917 | } | ||
| 918 | |||
| 919 | /** | ||
| 920 | * ixgbe_blink_led_stop_82598 - Stop blinking LED based on index. | ||
| 921 | * @hw: pointer to hardware structure | ||
| 922 | * @index: led number to stop blinking | ||
| 923 | **/ | ||
| 924 | static s32 ixgbe_blink_led_stop_82598(struct ixgbe_hw *hw, u32 index) | ||
| 925 | { | ||
| 926 | u32 autoc_reg = IXGBE_READ_REG(hw, IXGBE_AUTOC); | ||
| 927 | u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL); | ||
| 928 | |||
| 929 | autoc_reg &= ~IXGBE_AUTOC_FLU; | ||
| 930 | autoc_reg |= IXGBE_AUTOC_AN_RESTART; | ||
| 931 | IXGBE_WRITE_REG(hw, IXGBE_AUTOC, autoc_reg); | ||
| 932 | |||
| 933 | led_reg &= ~IXGBE_LED_MODE_MASK(index); | ||
| 934 | led_reg &= ~IXGBE_LED_BLINK(index); | ||
| 935 | led_reg |= IXGBE_LED_LINK_ACTIVE << IXGBE_LED_MODE_SHIFT(index); | ||
| 936 | IXGBE_WRITE_REG(hw, IXGBE_LEDCTL, led_reg); | ||
| 937 | IXGBE_WRITE_FLUSH(hw); | ||
| 938 | |||
| 939 | return 0; | ||
| 940 | } | ||
| 941 | |||
| 942 | /** | ||
| 943 | * ixgbe_read_analog_reg8_82598 - Reads 8 bit Atlas analog register | 888 | * ixgbe_read_analog_reg8_82598 - Reads 8 bit Atlas analog register |
| 944 | * @hw: pointer to hardware structure | 889 | * @hw: pointer to hardware structure |
| 945 | * @reg: analog register to read | 890 | * @reg: analog register to read |
| @@ -1128,8 +1073,8 @@ static struct ixgbe_mac_operations mac_ops_82598 = { | |||
| 1128 | .get_link_capabilities = &ixgbe_get_link_capabilities_82598, | 1073 | .get_link_capabilities = &ixgbe_get_link_capabilities_82598, |
| 1129 | .led_on = &ixgbe_led_on_generic, | 1074 | .led_on = &ixgbe_led_on_generic, |
| 1130 | .led_off = &ixgbe_led_off_generic, | 1075 | .led_off = &ixgbe_led_off_generic, |
| 1131 | .blink_led_start = &ixgbe_blink_led_start_82598, | 1076 | .blink_led_start = &ixgbe_blink_led_start_generic, |
| 1132 | .blink_led_stop = &ixgbe_blink_led_stop_82598, | 1077 | .blink_led_stop = &ixgbe_blink_led_stop_generic, |
| 1133 | .set_rar = &ixgbe_set_rar_generic, | 1078 | .set_rar = &ixgbe_set_rar_generic, |
| 1134 | .clear_rar = &ixgbe_clear_rar_generic, | 1079 | .clear_rar = &ixgbe_clear_rar_generic, |
| 1135 | .set_vmdq = &ixgbe_set_vmdq_82598, | 1080 | .set_vmdq = &ixgbe_set_vmdq_82598, |
diff --git a/drivers/net/ixgbe/ixgbe_82599.c b/drivers/net/ixgbe/ixgbe_82599.c index beae7e012609..29771fbaa42d 100644 --- a/drivers/net/ixgbe/ixgbe_82599.c +++ b/drivers/net/ixgbe/ixgbe_82599.c | |||
| @@ -68,8 +68,6 @@ s32 ixgbe_clear_vmdq_82599(struct ixgbe_hw *hw, u32 rar, u32 vmdq); | |||
| 68 | s32 ixgbe_set_vfta_82599(struct ixgbe_hw *hw, u32 vlan, | 68 | s32 ixgbe_set_vfta_82599(struct ixgbe_hw *hw, u32 vlan, |
| 69 | u32 vind, bool vlan_on); | 69 | u32 vind, bool vlan_on); |
| 70 | s32 ixgbe_clear_vfta_82599(struct ixgbe_hw *hw); | 70 | s32 ixgbe_clear_vfta_82599(struct ixgbe_hw *hw); |
| 71 | s32 ixgbe_blink_led_stop_82599(struct ixgbe_hw *hw, u32 index); | ||
| 72 | s32 ixgbe_blink_led_start_82599(struct ixgbe_hw *hw, u32 index); | ||
| 73 | s32 ixgbe_init_uta_tables_82599(struct ixgbe_hw *hw); | 71 | s32 ixgbe_init_uta_tables_82599(struct ixgbe_hw *hw); |
| 74 | s32 ixgbe_read_analog_reg8_82599(struct ixgbe_hw *hw, u32 reg, u8 *val); | 72 | s32 ixgbe_read_analog_reg8_82599(struct ixgbe_hw *hw, u32 reg, u8 *val); |
| 75 | s32 ixgbe_write_analog_reg8_82599(struct ixgbe_hw *hw, u32 reg, u8 val); | 73 | s32 ixgbe_write_analog_reg8_82599(struct ixgbe_hw *hw, u32 reg, u8 val); |
| @@ -991,40 +989,6 @@ s32 ixgbe_clear_vfta_82599(struct ixgbe_hw *hw) | |||
| 991 | } | 989 | } |
| 992 | 990 | ||
| 993 | /** | 991 | /** |
| 994 | * ixgbe_blink_led_start_82599 - Blink LED based on index. | ||
| 995 | * @hw: pointer to hardware structure | ||
| 996 | * @index: led number to blink | ||
| 997 | **/ | ||
| 998 | s32 ixgbe_blink_led_start_82599(struct ixgbe_hw *hw, u32 index) | ||
| 999 | { | ||
| 1000 | u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL); | ||
| 1001 | |||
| 1002 | led_reg &= ~IXGBE_LED_MODE_MASK(index); | ||
| 1003 | led_reg |= IXGBE_LED_BLINK(index); | ||
| 1004 | IXGBE_WRITE_REG(hw, IXGBE_LEDCTL, led_reg); | ||
| 1005 | IXGBE_WRITE_FLUSH(hw); | ||
| 1006 | |||
| 1007 | return 0; | ||
| 1008 | } | ||
| 1009 | |||
| 1010 | /** | ||
| 1011 | * ixgbe_blink_led_stop_82599 - Stop blinking LED based on index. | ||
| 1012 | * @hw: pointer to hardware structure | ||
| 1013 | * @index: led number to stop blinking | ||
| 1014 | **/ | ||
| 1015 | s32 ixgbe_blink_led_stop_82599(struct ixgbe_hw *hw, u32 index) | ||
| 1016 | { | ||
| 1017 | u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL); | ||
| 1018 | |||
| 1019 | led_reg &= ~IXGBE_LED_MODE_MASK(index); | ||
| 1020 | led_reg &= ~IXGBE_LED_BLINK(index); | ||
| 1021 | IXGBE_WRITE_REG(hw, IXGBE_LEDCTL, led_reg); | ||
| 1022 | IXGBE_WRITE_FLUSH(hw); | ||
| 1023 | |||
| 1024 | return 0; | ||
| 1025 | } | ||
| 1026 | |||
| 1027 | /** | ||
| 1028 | * ixgbe_init_uta_tables_82599 - Initialize the Unicast Table Array | 992 | * ixgbe_init_uta_tables_82599 - Initialize the Unicast Table Array |
| 1029 | * @hw: pointer to hardware structure | 993 | * @hw: pointer to hardware structure |
| 1030 | **/ | 994 | **/ |
| @@ -1243,8 +1207,8 @@ static struct ixgbe_mac_operations mac_ops_82599 = { | |||
| 1243 | .get_link_capabilities = &ixgbe_get_link_capabilities_82599, | 1207 | .get_link_capabilities = &ixgbe_get_link_capabilities_82599, |
| 1244 | .led_on = &ixgbe_led_on_generic, | 1208 | .led_on = &ixgbe_led_on_generic, |
| 1245 | .led_off = &ixgbe_led_off_generic, | 1209 | .led_off = &ixgbe_led_off_generic, |
| 1246 | .blink_led_start = &ixgbe_blink_led_start_82599, | 1210 | .blink_led_start = &ixgbe_blink_led_start_generic, |
| 1247 | .blink_led_stop = &ixgbe_blink_led_stop_82599, | 1211 | .blink_led_stop = &ixgbe_blink_led_stop_generic, |
| 1248 | .set_rar = &ixgbe_set_rar_generic, | 1212 | .set_rar = &ixgbe_set_rar_generic, |
| 1249 | .clear_rar = &ixgbe_clear_rar_generic, | 1213 | .clear_rar = &ixgbe_clear_rar_generic, |
| 1250 | .set_vmdq = &ixgbe_set_vmdq_82599, | 1214 | .set_vmdq = &ixgbe_set_vmdq_82599, |
diff --git a/drivers/net/ixgbe/ixgbe_common.c b/drivers/net/ixgbe/ixgbe_common.c index 63ab6671d08e..5567519676d5 100644 --- a/drivers/net/ixgbe/ixgbe_common.c +++ b/drivers/net/ixgbe/ixgbe_common.c | |||
| @@ -2071,3 +2071,58 @@ s32 ixgbe_enable_rx_dma_generic(struct ixgbe_hw *hw, u32 regval) | |||
| 2071 | 2071 | ||
| 2072 | return 0; | 2072 | return 0; |
| 2073 | } | 2073 | } |
| 2074 | |||
| 2075 | /** | ||
| 2076 | * ixgbe_blink_led_start_generic - Blink LED based on index. | ||
| 2077 | * @hw: pointer to hardware structure | ||
| 2078 | * @index: led number to blink | ||
| 2079 | **/ | ||
| 2080 | s32 ixgbe_blink_led_start_generic(struct ixgbe_hw *hw, u32 index) | ||
| 2081 | { | ||
| 2082 | ixgbe_link_speed speed = 0; | ||
| 2083 | bool link_up = 0; | ||
| 2084 | u32 autoc_reg = IXGBE_READ_REG(hw, IXGBE_AUTOC); | ||
| 2085 | u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL); | ||
| 2086 | |||
| 2087 | /* | ||
| 2088 | * Link must be up to auto-blink the LEDs; | ||
| 2089 | * Force it if link is down. | ||
| 2090 | */ | ||
| 2091 | hw->mac.ops.check_link(hw, &speed, &link_up, false); | ||
| 2092 | |||
| 2093 | if (!link_up) { | ||
| 2094 | autoc_reg |= IXGBE_AUTOC_FLU; | ||
| 2095 | IXGBE_WRITE_REG(hw, IXGBE_AUTOC, autoc_reg); | ||
| 2096 | msleep(10); | ||
| 2097 | } | ||
| 2098 | |||
| 2099 | led_reg &= ~IXGBE_LED_MODE_MASK(index); | ||
| 2100 | led_reg |= IXGBE_LED_BLINK(index); | ||
| 2101 | IXGBE_WRITE_REG(hw, IXGBE_LEDCTL, led_reg); | ||
| 2102 | IXGBE_WRITE_FLUSH(hw); | ||
| 2103 | |||
| 2104 | return 0; | ||
| 2105 | } | ||
| 2106 | |||
| 2107 | /** | ||
| 2108 | * ixgbe_blink_led_stop_generic - Stop blinking LED based on index. | ||
| 2109 | * @hw: pointer to hardware structure | ||
| 2110 | * @index: led number to stop blinking | ||
| 2111 | **/ | ||
| 2112 | s32 ixgbe_blink_led_stop_generic(struct ixgbe_hw *hw, u32 index) | ||
| 2113 | { | ||
| 2114 | u32 autoc_reg = IXGBE_READ_REG(hw, IXGBE_AUTOC); | ||
| 2115 | u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL); | ||
| 2116 | |||
| 2117 | autoc_reg &= ~IXGBE_AUTOC_FLU; | ||
| 2118 | autoc_reg |= IXGBE_AUTOC_AN_RESTART; | ||
| 2119 | IXGBE_WRITE_REG(hw, IXGBE_AUTOC, autoc_reg); | ||
| 2120 | |||
| 2121 | led_reg &= ~IXGBE_LED_MODE_MASK(index); | ||
| 2122 | led_reg &= ~IXGBE_LED_BLINK(index); | ||
| 2123 | led_reg |= IXGBE_LED_LINK_ACTIVE << IXGBE_LED_MODE_SHIFT(index); | ||
| 2124 | IXGBE_WRITE_REG(hw, IXGBE_LEDCTL, led_reg); | ||
| 2125 | IXGBE_WRITE_FLUSH(hw); | ||
| 2126 | |||
| 2127 | return 0; | ||
| 2128 | } | ||
diff --git a/drivers/net/ixgbe/ixgbe_common.h b/drivers/net/ixgbe/ixgbe_common.h index 24f73e719c3f..dd260890ad0a 100644 --- a/drivers/net/ixgbe/ixgbe_common.h +++ b/drivers/net/ixgbe/ixgbe_common.h | |||
| @@ -76,6 +76,9 @@ s32 ixgbe_disable_pcie_master(struct ixgbe_hw *hw); | |||
| 76 | s32 ixgbe_read_analog_reg8_generic(struct ixgbe_hw *hw, u32 reg, u8 *val); | 76 | s32 ixgbe_read_analog_reg8_generic(struct ixgbe_hw *hw, u32 reg, u8 *val); |
| 77 | s32 ixgbe_write_analog_reg8_generic(struct ixgbe_hw *hw, u32 reg, u8 val); | 77 | s32 ixgbe_write_analog_reg8_generic(struct ixgbe_hw *hw, u32 reg, u8 val); |
| 78 | 78 | ||
| 79 | s32 ixgbe_blink_led_start_generic(struct ixgbe_hw *hw, u32 index); | ||
| 80 | s32 ixgbe_blink_led_stop_generic(struct ixgbe_hw *hw, u32 index); | ||
| 81 | |||
| 79 | #define IXGBE_WRITE_REG(a, reg, value) writel((value), ((a)->hw_addr + (reg))) | 82 | #define IXGBE_WRITE_REG(a, reg, value) writel((value), ((a)->hw_addr + (reg))) |
| 80 | 83 | ||
| 81 | #ifndef writeq | 84 | #ifndef writeq |
diff --git a/drivers/net/ixgbe/ixgbe_ethtool.c b/drivers/net/ixgbe/ixgbe_ethtool.c index aafc120f164e..f0a20facc650 100644 --- a/drivers/net/ixgbe/ixgbe_ethtool.c +++ b/drivers/net/ixgbe/ixgbe_ethtool.c | |||
| @@ -943,6 +943,24 @@ static void ixgbe_get_strings(struct net_device *netdev, u32 stringset, | |||
| 943 | } | 943 | } |
| 944 | 944 | ||
| 945 | 945 | ||
| 946 | static int ixgbe_wol_exclusion(struct ixgbe_adapter *adapter, | ||
| 947 | struct ethtool_wolinfo *wol) | ||
| 948 | { | ||
| 949 | struct ixgbe_hw *hw = &adapter->hw; | ||
| 950 | int retval = 1; | ||
| 951 | |||
| 952 | switch(hw->device_id) { | ||
| 953 | case IXGBE_DEV_ID_82599_KX4: | ||
| 954 | retval = 0; | ||
| 955 | break; | ||
| 956 | default: | ||
| 957 | wol->supported = 0; | ||
| 958 | retval = 0; | ||
| 959 | } | ||
| 960 | |||
| 961 | return retval; | ||
| 962 | } | ||
| 963 | |||
| 946 | static void ixgbe_get_wol(struct net_device *netdev, | 964 | static void ixgbe_get_wol(struct net_device *netdev, |
| 947 | struct ethtool_wolinfo *wol) | 965 | struct ethtool_wolinfo *wol) |
| 948 | { | 966 | { |
| @@ -952,7 +970,8 @@ static void ixgbe_get_wol(struct net_device *netdev, | |||
| 952 | WAKE_BCAST | WAKE_MAGIC; | 970 | WAKE_BCAST | WAKE_MAGIC; |
| 953 | wol->wolopts = 0; | 971 | wol->wolopts = 0; |
| 954 | 972 | ||
| 955 | if (!device_can_wakeup(&adapter->pdev->dev)) | 973 | if (ixgbe_wol_exclusion(adapter, wol) || |
| 974 | !device_can_wakeup(&adapter->pdev->dev)) | ||
| 956 | return; | 975 | return; |
| 957 | 976 | ||
| 958 | if (adapter->wol & IXGBE_WUFC_EX) | 977 | if (adapter->wol & IXGBE_WUFC_EX) |
| @@ -974,6 +993,9 @@ static int ixgbe_set_wol(struct net_device *netdev, struct ethtool_wolinfo *wol) | |||
| 974 | if (wol->wolopts & (WAKE_PHY | WAKE_ARP | WAKE_MAGICSECURE)) | 993 | if (wol->wolopts & (WAKE_PHY | WAKE_ARP | WAKE_MAGICSECURE)) |
| 975 | return -EOPNOTSUPP; | 994 | return -EOPNOTSUPP; |
| 976 | 995 | ||
| 996 | if (ixgbe_wol_exclusion(adapter, wol)) | ||
| 997 | return wol->wolopts ? -EOPNOTSUPP : 0; | ||
| 998 | |||
| 977 | adapter->wol = 0; | 999 | adapter->wol = 0; |
| 978 | 1000 | ||
| 979 | if (wol->wolopts & WAKE_UCAST) | 1001 | if (wol->wolopts & WAKE_UCAST) |
diff --git a/drivers/net/ixgbe/ixgbe_main.c b/drivers/net/ixgbe/ixgbe_main.c index 9ef128ae6458..febde45cf9fa 100644 --- a/drivers/net/ixgbe/ixgbe_main.c +++ b/drivers/net/ixgbe/ixgbe_main.c | |||
| @@ -2723,17 +2723,21 @@ static inline bool ixgbe_set_rss_queues(struct ixgbe_adapter *adapter) | |||
| 2723 | **/ | 2723 | **/ |
| 2724 | static void ixgbe_set_num_queues(struct ixgbe_adapter *adapter) | 2724 | static void ixgbe_set_num_queues(struct ixgbe_adapter *adapter) |
| 2725 | { | 2725 | { |
| 2726 | /* Start with base case */ | ||
| 2727 | adapter->num_rx_queues = 1; | ||
| 2728 | adapter->num_tx_queues = 1; | ||
| 2729 | |||
| 2730 | #ifdef CONFIG_IXGBE_DCB | 2726 | #ifdef CONFIG_IXGBE_DCB |
| 2731 | if (ixgbe_set_dcb_queues(adapter)) | 2727 | if (ixgbe_set_dcb_queues(adapter)) |
| 2732 | return; | 2728 | goto done; |
| 2733 | 2729 | ||
| 2734 | #endif | 2730 | #endif |
| 2735 | if (ixgbe_set_rss_queues(adapter)) | 2731 | if (ixgbe_set_rss_queues(adapter)) |
| 2736 | return; | 2732 | goto done; |
| 2733 | |||
| 2734 | /* fallback to base case */ | ||
| 2735 | adapter->num_rx_queues = 1; | ||
| 2736 | adapter->num_tx_queues = 1; | ||
| 2737 | |||
| 2738 | done: | ||
| 2739 | /* Notify the stack of the (possibly) reduced Tx Queue count. */ | ||
| 2740 | adapter->netdev->real_num_tx_queues = adapter->num_tx_queues; | ||
| 2737 | } | 2741 | } |
| 2738 | 2742 | ||
| 2739 | static void ixgbe_acquire_msix_vectors(struct ixgbe_adapter *adapter, | 2743 | static void ixgbe_acquire_msix_vectors(struct ixgbe_adapter *adapter, |
| @@ -2992,9 +2996,6 @@ try_msi: | |||
| 2992 | } | 2996 | } |
| 2993 | 2997 | ||
| 2994 | out: | 2998 | out: |
| 2995 | /* Notify the stack of the (possibly) reduced Tx Queue count. */ | ||
| 2996 | adapter->netdev->real_num_tx_queues = adapter->num_tx_queues; | ||
| 2997 | |||
| 2998 | return err; | 2999 | return err; |
| 2999 | } | 3000 | } |
| 3000 | 3001 | ||
| @@ -3611,9 +3612,9 @@ static int ixgbe_resume(struct pci_dev *pdev) | |||
| 3611 | 3612 | ||
| 3612 | return 0; | 3613 | return 0; |
| 3613 | } | 3614 | } |
| 3614 | |||
| 3615 | #endif /* CONFIG_PM */ | 3615 | #endif /* CONFIG_PM */ |
| 3616 | static int ixgbe_suspend(struct pci_dev *pdev, pm_message_t state) | 3616 | |
| 3617 | static int __ixgbe_shutdown(struct pci_dev *pdev, bool *enable_wake) | ||
| 3617 | { | 3618 | { |
| 3618 | struct net_device *netdev = pci_get_drvdata(pdev); | 3619 | struct net_device *netdev = pci_get_drvdata(pdev); |
| 3619 | struct ixgbe_adapter *adapter = netdev_priv(netdev); | 3620 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| @@ -3672,18 +3673,46 @@ static int ixgbe_suspend(struct pci_dev *pdev, pm_message_t state) | |||
| 3672 | pci_enable_wake(pdev, PCI_D3cold, 0); | 3673 | pci_enable_wake(pdev, PCI_D3cold, 0); |
| 3673 | } | 3674 | } |
| 3674 | 3675 | ||
| 3676 | *enable_wake = !!wufc; | ||
| 3677 | |||
| 3675 | ixgbe_release_hw_control(adapter); | 3678 | ixgbe_release_hw_control(adapter); |
| 3676 | 3679 | ||
| 3677 | pci_disable_device(pdev); | 3680 | pci_disable_device(pdev); |
| 3678 | 3681 | ||
| 3679 | pci_set_power_state(pdev, pci_choose_state(pdev, state)); | 3682 | return 0; |
| 3683 | } | ||
| 3684 | |||
| 3685 | #ifdef CONFIG_PM | ||
| 3686 | static int ixgbe_suspend(struct pci_dev *pdev, pm_message_t state) | ||
| 3687 | { | ||
| 3688 | int retval; | ||
| 3689 | bool wake; | ||
| 3690 | |||
| 3691 | retval = __ixgbe_shutdown(pdev, &wake); | ||
| 3692 | if (retval) | ||
| 3693 | return retval; | ||
| 3694 | |||
| 3695 | if (wake) { | ||
| 3696 | pci_prepare_to_sleep(pdev); | ||
| 3697 | } else { | ||
| 3698 | pci_wake_from_d3(pdev, false); | ||
| 3699 | pci_set_power_state(pdev, PCI_D3hot); | ||
| 3700 | } | ||
| 3680 | 3701 | ||
| 3681 | return 0; | 3702 | return 0; |
| 3682 | } | 3703 | } |
| 3704 | #endif /* CONFIG_PM */ | ||
| 3683 | 3705 | ||
| 3684 | static void ixgbe_shutdown(struct pci_dev *pdev) | 3706 | static void ixgbe_shutdown(struct pci_dev *pdev) |
| 3685 | { | 3707 | { |
| 3686 | ixgbe_suspend(pdev, PMSG_SUSPEND); | 3708 | bool wake; |
| 3709 | |||
| 3710 | __ixgbe_shutdown(pdev, &wake); | ||
| 3711 | |||
| 3712 | if (system_state == SYSTEM_POWER_OFF) { | ||
| 3713 | pci_wake_from_d3(pdev, wake); | ||
| 3714 | pci_set_power_state(pdev, PCI_D3hot); | ||
| 3715 | } | ||
| 3687 | } | 3716 | } |
| 3688 | 3717 | ||
| 3689 | /** | 3718 | /** |
| @@ -4342,7 +4371,7 @@ static int ixgbe_xmit_frame(struct sk_buff *skb, struct net_device *netdev) | |||
| 4342 | int count = 0; | 4371 | int count = 0; |
| 4343 | unsigned int f; | 4372 | unsigned int f; |
| 4344 | 4373 | ||
| 4345 | r_idx = (adapter->num_tx_queues - 1) & skb->queue_mapping; | 4374 | r_idx = skb->queue_mapping; |
| 4346 | tx_ring = &adapter->tx_ring[r_idx]; | 4375 | tx_ring = &adapter->tx_ring[r_idx]; |
| 4347 | 4376 | ||
| 4348 | if (adapter->vlgrp && vlan_tx_tag_present(skb)) { | 4377 | if (adapter->vlgrp && vlan_tx_tag_present(skb)) { |
diff --git a/drivers/net/mac89x0.c b/drivers/net/mac89x0.c index 380a1a54d530..384e072de2e7 100644 --- a/drivers/net/mac89x0.c +++ b/drivers/net/mac89x0.c | |||
| @@ -168,6 +168,17 @@ writereg(struct net_device *dev, int portno, int value) | |||
| 168 | nubus_writew(swab16(value), dev->mem_start + portno); | 168 | nubus_writew(swab16(value), dev->mem_start + portno); |
| 169 | } | 169 | } |
| 170 | 170 | ||
| 171 | static const struct net_device_ops mac89x0_netdev_ops = { | ||
| 172 | .ndo_open = net_open, | ||
| 173 | .ndo_stop = net_close, | ||
| 174 | .ndo_start_xmit = net_send_packet, | ||
| 175 | .ndo_get_stats = net_get_stats, | ||
| 176 | .ndo_set_multicast_list = set_multicast_list, | ||
| 177 | .ndo_set_mac_address = set_mac_address, | ||
| 178 | .ndo_validate_addr = eth_validate_addr, | ||
| 179 | .ndo_change_mtu = eth_change_mtu, | ||
| 180 | }; | ||
| 181 | |||
| 171 | /* Probe for the CS8900 card in slot E. We won't bother looking | 182 | /* Probe for the CS8900 card in slot E. We won't bother looking |
| 172 | anywhere else until we have a really good reason to do so. */ | 183 | anywhere else until we have a really good reason to do so. */ |
| 173 | struct net_device * __init mac89x0_probe(int unit) | 184 | struct net_device * __init mac89x0_probe(int unit) |
| @@ -280,12 +291,7 @@ struct net_device * __init mac89x0_probe(int unit) | |||
| 280 | 291 | ||
| 281 | printk(" IRQ %d ADDR %pM\n", dev->irq, dev->dev_addr); | 292 | printk(" IRQ %d ADDR %pM\n", dev->irq, dev->dev_addr); |
| 282 | 293 | ||
| 283 | dev->open = net_open; | 294 | dev->netdev_ops = &mac89x0_netdev_ops; |
| 284 | dev->stop = net_close; | ||
| 285 | dev->hard_start_xmit = net_send_packet; | ||
| 286 | dev->get_stats = net_get_stats; | ||
| 287 | dev->set_multicast_list = &set_multicast_list; | ||
| 288 | dev->set_mac_address = &set_mac_address; | ||
| 289 | 295 | ||
| 290 | err = register_netdev(dev); | 296 | err = register_netdev(dev); |
| 291 | if (err) | 297 | if (err) |
diff --git a/drivers/net/macb.c b/drivers/net/macb.c index f50501013b1c..46073de290cf 100644 --- a/drivers/net/macb.c +++ b/drivers/net/macb.c | |||
| @@ -1100,6 +1100,18 @@ static int macb_ioctl(struct net_device *dev, struct ifreq *rq, int cmd) | |||
| 1100 | return phy_mii_ioctl(phydev, if_mii(rq), cmd); | 1100 | return phy_mii_ioctl(phydev, if_mii(rq), cmd); |
| 1101 | } | 1101 | } |
| 1102 | 1102 | ||
| 1103 | static const struct net_device_ops macb_netdev_ops = { | ||
| 1104 | .ndo_open = macb_open, | ||
| 1105 | .ndo_stop = macb_close, | ||
| 1106 | .ndo_start_xmit = macb_start_xmit, | ||
| 1107 | .ndo_set_multicast_list = macb_set_rx_mode, | ||
| 1108 | .ndo_get_stats = macb_get_stats, | ||
| 1109 | .ndo_do_ioctl = macb_ioctl, | ||
| 1110 | .ndo_validate_addr = eth_validate_addr, | ||
| 1111 | .ndo_change_mtu = eth_change_mtu, | ||
| 1112 | .ndo_set_mac_address = eth_mac_addr, | ||
| 1113 | }; | ||
| 1114 | |||
| 1103 | static int __init macb_probe(struct platform_device *pdev) | 1115 | static int __init macb_probe(struct platform_device *pdev) |
| 1104 | { | 1116 | { |
| 1105 | struct eth_platform_data *pdata; | 1117 | struct eth_platform_data *pdata; |
| @@ -1175,12 +1187,7 @@ static int __init macb_probe(struct platform_device *pdev) | |||
| 1175 | goto err_out_iounmap; | 1187 | goto err_out_iounmap; |
| 1176 | } | 1188 | } |
| 1177 | 1189 | ||
| 1178 | dev->open = macb_open; | 1190 | dev->netdev_ops = &macb_netdev_ops; |
| 1179 | dev->stop = macb_close; | ||
| 1180 | dev->hard_start_xmit = macb_start_xmit; | ||
| 1181 | dev->get_stats = macb_get_stats; | ||
| 1182 | dev->set_multicast_list = macb_set_rx_mode; | ||
| 1183 | dev->do_ioctl = macb_ioctl; | ||
| 1184 | netif_napi_add(dev, &bp->napi, macb_poll, 64); | 1191 | netif_napi_add(dev, &bp->napi, macb_poll, 64); |
| 1185 | dev->ethtool_ops = &macb_ethtool_ops; | 1192 | dev->ethtool_ops = &macb_ethtool_ops; |
| 1186 | 1193 | ||
diff --git a/drivers/net/macsonic.c b/drivers/net/macsonic.c index 527166e35d56..acd143da161d 100644 --- a/drivers/net/macsonic.c +++ b/drivers/net/macsonic.c | |||
| @@ -167,6 +167,18 @@ static int macsonic_close(struct net_device* dev) | |||
| 167 | return err; | 167 | return err; |
| 168 | } | 168 | } |
| 169 | 169 | ||
| 170 | static const struct net_device_ops macsonic_netdev_ops = { | ||
| 171 | .ndo_open = macsonic_open, | ||
| 172 | .ndo_stop = macsonic_close, | ||
| 173 | .ndo_start_xmit = sonic_send_packet, | ||
| 174 | .ndo_set_multicast_list = sonic_multicast_list, | ||
| 175 | .ndo_tx_timeout = sonic_tx_timeout, | ||
| 176 | .ndo_get_stats = sonic_get_stats, | ||
| 177 | .ndo_validate_addr = eth_validate_addr, | ||
| 178 | .ndo_change_mtu = eth_change_mtu, | ||
| 179 | .ndo_set_mac_address = eth_mac_addr, | ||
| 180 | }; | ||
| 181 | |||
| 170 | static int __init macsonic_init(struct net_device *dev) | 182 | static int __init macsonic_init(struct net_device *dev) |
| 171 | { | 183 | { |
| 172 | struct sonic_local* lp = netdev_priv(dev); | 184 | struct sonic_local* lp = netdev_priv(dev); |
| @@ -198,12 +210,7 @@ static int __init macsonic_init(struct net_device *dev) | |||
| 198 | lp->rra_laddr = lp->rda_laddr + (SIZEOF_SONIC_RD * SONIC_NUM_RDS | 210 | lp->rra_laddr = lp->rda_laddr + (SIZEOF_SONIC_RD * SONIC_NUM_RDS |
| 199 | * SONIC_BUS_SCALE(lp->dma_bitmode)); | 211 | * SONIC_BUS_SCALE(lp->dma_bitmode)); |
| 200 | 212 | ||
| 201 | dev->open = macsonic_open; | 213 | dev->netdev_ops = &macsonic_netdev_ops; |
| 202 | dev->stop = macsonic_close; | ||
| 203 | dev->hard_start_xmit = sonic_send_packet; | ||
| 204 | dev->get_stats = sonic_get_stats; | ||
| 205 | dev->set_multicast_list = &sonic_multicast_list; | ||
| 206 | dev->tx_timeout = sonic_tx_timeout; | ||
| 207 | dev->watchdog_timeo = TX_TIMEOUT; | 214 | dev->watchdog_timeo = TX_TIMEOUT; |
| 208 | 215 | ||
| 209 | /* | 216 | /* |
diff --git a/drivers/net/myri10ge/myri10ge.c b/drivers/net/myri10ge/myri10ge.c index 9eed126a82f0..f2c4a665e93f 100644 --- a/drivers/net/myri10ge/myri10ge.c +++ b/drivers/net/myri10ge/myri10ge.c | |||
| @@ -2447,6 +2447,7 @@ static int myri10ge_open(struct net_device *dev) | |||
| 2447 | lro_mgr->lro_arr = ss->rx_done.lro_desc; | 2447 | lro_mgr->lro_arr = ss->rx_done.lro_desc; |
| 2448 | lro_mgr->get_frag_header = myri10ge_get_frag_header; | 2448 | lro_mgr->get_frag_header = myri10ge_get_frag_header; |
| 2449 | lro_mgr->max_aggr = myri10ge_lro_max_pkts; | 2449 | lro_mgr->max_aggr = myri10ge_lro_max_pkts; |
| 2450 | lro_mgr->frag_align_pad = 2; | ||
| 2450 | if (lro_mgr->max_aggr > MAX_SKB_FRAGS) | 2451 | if (lro_mgr->max_aggr > MAX_SKB_FRAGS) |
| 2451 | lro_mgr->max_aggr = MAX_SKB_FRAGS; | 2452 | lro_mgr->max_aggr = MAX_SKB_FRAGS; |
| 2452 | 2453 | ||
diff --git a/drivers/net/phy/fixed.c b/drivers/net/phy/fixed.c index cf24cc34debe..e7070515d2e3 100644 --- a/drivers/net/phy/fixed.c +++ b/drivers/net/phy/fixed.c | |||
| @@ -19,6 +19,7 @@ | |||
| 19 | #include <linux/mii.h> | 19 | #include <linux/mii.h> |
| 20 | #include <linux/phy.h> | 20 | #include <linux/phy.h> |
| 21 | #include <linux/phy_fixed.h> | 21 | #include <linux/phy_fixed.h> |
| 22 | #include <linux/err.h> | ||
| 22 | 23 | ||
| 23 | #define MII_REGS_NUM 29 | 24 | #define MII_REGS_NUM 29 |
| 24 | 25 | ||
| @@ -207,8 +208,8 @@ static int __init fixed_mdio_bus_init(void) | |||
| 207 | int ret; | 208 | int ret; |
| 208 | 209 | ||
| 209 | pdev = platform_device_register_simple("Fixed MDIO bus", 0, NULL, 0); | 210 | pdev = platform_device_register_simple("Fixed MDIO bus", 0, NULL, 0); |
| 210 | if (!pdev) { | 211 | if (IS_ERR(pdev)) { |
| 211 | ret = -ENOMEM; | 212 | ret = PTR_ERR(pdev); |
| 212 | goto err_pdev; | 213 | goto err_pdev; |
| 213 | } | 214 | } |
| 214 | 215 | ||
diff --git a/drivers/net/phy/marvell.c b/drivers/net/phy/marvell.c index eb6411c4694f..7a3ec9d39a9a 100644 --- a/drivers/net/phy/marvell.c +++ b/drivers/net/phy/marvell.c | |||
| @@ -69,6 +69,11 @@ | |||
| 69 | #define MII_M1111_COPPER 0 | 69 | #define MII_M1111_COPPER 0 |
| 70 | #define MII_M1111_FIBER 1 | 70 | #define MII_M1111_FIBER 1 |
| 71 | 71 | ||
| 72 | #define MII_88E1121_PHY_LED_CTRL 16 | ||
| 73 | #define MII_88E1121_PHY_LED_PAGE 3 | ||
| 74 | #define MII_88E1121_PHY_LED_DEF 0x0030 | ||
| 75 | #define MII_88E1121_PHY_PAGE 22 | ||
| 76 | |||
| 72 | #define MII_M1011_PHY_STATUS 0x11 | 77 | #define MII_M1011_PHY_STATUS 0x11 |
| 73 | #define MII_M1011_PHY_STATUS_1000 0x8000 | 78 | #define MII_M1011_PHY_STATUS_1000 0x8000 |
| 74 | #define MII_M1011_PHY_STATUS_100 0x4000 | 79 | #define MII_M1011_PHY_STATUS_100 0x4000 |
| @@ -154,6 +159,30 @@ static int marvell_config_aneg(struct phy_device *phydev) | |||
| 154 | return err; | 159 | return err; |
| 155 | } | 160 | } |
| 156 | 161 | ||
| 162 | static int m88e1121_config_aneg(struct phy_device *phydev) | ||
| 163 | { | ||
| 164 | int err, temp; | ||
| 165 | |||
| 166 | err = phy_write(phydev, MII_BMCR, BMCR_RESET); | ||
| 167 | if (err < 0) | ||
| 168 | return err; | ||
| 169 | |||
| 170 | err = phy_write(phydev, MII_M1011_PHY_SCR, | ||
| 171 | MII_M1011_PHY_SCR_AUTO_CROSS); | ||
| 172 | if (err < 0) | ||
| 173 | return err; | ||
| 174 | |||
| 175 | temp = phy_read(phydev, MII_88E1121_PHY_PAGE); | ||
| 176 | |||
| 177 | phy_write(phydev, MII_88E1121_PHY_PAGE, MII_88E1121_PHY_LED_PAGE); | ||
| 178 | phy_write(phydev, MII_88E1121_PHY_LED_CTRL, MII_88E1121_PHY_LED_DEF); | ||
| 179 | phy_write(phydev, MII_88E1121_PHY_PAGE, temp); | ||
| 180 | |||
| 181 | err = genphy_config_aneg(phydev); | ||
| 182 | |||
| 183 | return err; | ||
| 184 | } | ||
| 185 | |||
| 157 | static int m88e1111_config_init(struct phy_device *phydev) | 186 | static int m88e1111_config_init(struct phy_device *phydev) |
| 158 | { | 187 | { |
| 159 | int err; | 188 | int err; |
| @@ -429,6 +458,18 @@ static int marvell_read_status(struct phy_device *phydev) | |||
| 429 | return 0; | 458 | return 0; |
| 430 | } | 459 | } |
| 431 | 460 | ||
| 461 | static int m88e1121_did_interrupt(struct phy_device *phydev) | ||
| 462 | { | ||
| 463 | int imask; | ||
| 464 | |||
| 465 | imask = phy_read(phydev, MII_M1011_IEVENT); | ||
| 466 | |||
| 467 | if (imask & MII_M1011_IMASK_INIT) | ||
| 468 | return 1; | ||
| 469 | |||
| 470 | return 0; | ||
| 471 | } | ||
| 472 | |||
| 432 | static struct phy_driver marvell_drivers[] = { | 473 | static struct phy_driver marvell_drivers[] = { |
| 433 | { | 474 | { |
| 434 | .phy_id = 0x01410c60, | 475 | .phy_id = 0x01410c60, |
| @@ -482,6 +523,19 @@ static struct phy_driver marvell_drivers[] = { | |||
| 482 | .driver = {.owner = THIS_MODULE,}, | 523 | .driver = {.owner = THIS_MODULE,}, |
| 483 | }, | 524 | }, |
| 484 | { | 525 | { |
| 526 | .phy_id = 0x01410cb0, | ||
| 527 | .phy_id_mask = 0xfffffff0, | ||
| 528 | .name = "Marvell 88E1121R", | ||
| 529 | .features = PHY_GBIT_FEATURES, | ||
| 530 | .flags = PHY_HAS_INTERRUPT, | ||
| 531 | .config_aneg = &m88e1121_config_aneg, | ||
| 532 | .read_status = &marvell_read_status, | ||
| 533 | .ack_interrupt = &marvell_ack_interrupt, | ||
| 534 | .config_intr = &marvell_config_intr, | ||
| 535 | .did_interrupt = &m88e1121_did_interrupt, | ||
| 536 | .driver = { .owner = THIS_MODULE }, | ||
| 537 | }, | ||
| 538 | { | ||
| 485 | .phy_id = 0x01410cd0, | 539 | .phy_id = 0x01410cd0, |
| 486 | .phy_id_mask = 0xfffffff0, | 540 | .phy_id_mask = 0xfffffff0, |
| 487 | .name = "Marvell 88E1145", | 541 | .name = "Marvell 88E1145", |
diff --git a/drivers/net/phy/phy.c b/drivers/net/phy/phy.c index 3ff1f425f1bb..61755cbd978e 100644 --- a/drivers/net/phy/phy.c +++ b/drivers/net/phy/phy.c | |||
| @@ -434,7 +434,7 @@ void phy_start_machine(struct phy_device *phydev, | |||
| 434 | phydev->adjust_state = handler; | 434 | phydev->adjust_state = handler; |
| 435 | 435 | ||
| 436 | INIT_DELAYED_WORK(&phydev->state_queue, phy_state_machine); | 436 | INIT_DELAYED_WORK(&phydev->state_queue, phy_state_machine); |
| 437 | schedule_delayed_work(&phydev->state_queue, jiffies + HZ); | 437 | schedule_delayed_work(&phydev->state_queue, HZ); |
| 438 | } | 438 | } |
| 439 | 439 | ||
| 440 | /** | 440 | /** |
| @@ -655,6 +655,10 @@ static void phy_change(struct work_struct *work) | |||
| 655 | struct phy_device *phydev = | 655 | struct phy_device *phydev = |
| 656 | container_of(work, struct phy_device, phy_queue); | 656 | container_of(work, struct phy_device, phy_queue); |
| 657 | 657 | ||
| 658 | if (phydev->drv->did_interrupt && | ||
| 659 | !phydev->drv->did_interrupt(phydev)) | ||
| 660 | goto ignore; | ||
| 661 | |||
| 658 | err = phy_disable_interrupts(phydev); | 662 | err = phy_disable_interrupts(phydev); |
| 659 | 663 | ||
| 660 | if (err) | 664 | if (err) |
| @@ -681,6 +685,11 @@ static void phy_change(struct work_struct *work) | |||
| 681 | 685 | ||
| 682 | return; | 686 | return; |
| 683 | 687 | ||
| 688 | ignore: | ||
| 689 | atomic_dec(&phydev->irq_disable); | ||
| 690 | enable_irq(phydev->irq); | ||
| 691 | return; | ||
| 692 | |||
| 684 | irq_enable_err: | 693 | irq_enable_err: |
| 685 | disable_irq(phydev->irq); | 694 | disable_irq(phydev->irq); |
| 686 | atomic_inc(&phydev->irq_disable); | 695 | atomic_inc(&phydev->irq_disable); |
| @@ -937,6 +946,5 @@ static void phy_state_machine(struct work_struct *work) | |||
| 937 | if (err < 0) | 946 | if (err < 0) |
| 938 | phy_error(phydev); | 947 | phy_error(phydev); |
| 939 | 948 | ||
| 940 | schedule_delayed_work(&phydev->state_queue, | 949 | schedule_delayed_work(&phydev->state_queue, PHY_STATE_TIME * HZ); |
| 941 | jiffies + PHY_STATE_TIME * HZ); | ||
| 942 | } | 950 | } |
diff --git a/drivers/net/sfc/efx.c b/drivers/net/sfc/efx.c index dee23b159df2..7269a426051c 100644 --- a/drivers/net/sfc/efx.c +++ b/drivers/net/sfc/efx.c | |||
| @@ -448,9 +448,6 @@ static void efx_init_channels(struct efx_nic *efx) | |||
| 448 | 448 | ||
| 449 | WARN_ON(channel->rx_pkt != NULL); | 449 | WARN_ON(channel->rx_pkt != NULL); |
| 450 | efx_rx_strategy(channel); | 450 | efx_rx_strategy(channel); |
| 451 | |||
| 452 | netif_napi_add(channel->napi_dev, &channel->napi_str, | ||
| 453 | efx_poll, napi_weight); | ||
| 454 | } | 451 | } |
| 455 | } | 452 | } |
| 456 | 453 | ||
| @@ -1321,6 +1318,8 @@ static int efx_init_napi(struct efx_nic *efx) | |||
| 1321 | 1318 | ||
| 1322 | efx_for_each_channel(channel, efx) { | 1319 | efx_for_each_channel(channel, efx) { |
| 1323 | channel->napi_dev = efx->net_dev; | 1320 | channel->napi_dev = efx->net_dev; |
| 1321 | netif_napi_add(channel->napi_dev, &channel->napi_str, | ||
| 1322 | efx_poll, napi_weight); | ||
| 1324 | } | 1323 | } |
| 1325 | return 0; | 1324 | return 0; |
| 1326 | } | 1325 | } |
| @@ -1330,6 +1329,8 @@ static void efx_fini_napi(struct efx_nic *efx) | |||
| 1330 | struct efx_channel *channel; | 1329 | struct efx_channel *channel; |
| 1331 | 1330 | ||
| 1332 | efx_for_each_channel(channel, efx) { | 1331 | efx_for_each_channel(channel, efx) { |
| 1332 | if (channel->napi_dev) | ||
| 1333 | netif_napi_del(&channel->napi_str); | ||
| 1333 | channel->napi_dev = NULL; | 1334 | channel->napi_dev = NULL; |
| 1334 | } | 1335 | } |
| 1335 | } | 1336 | } |
diff --git a/drivers/net/sfc/falcon.c b/drivers/net/sfc/falcon.c index d4629ab2c614..466a8abb0053 100644 --- a/drivers/net/sfc/falcon.c +++ b/drivers/net/sfc/falcon.c | |||
| @@ -1176,9 +1176,9 @@ void falcon_sim_phy_event(struct efx_nic *efx) | |||
| 1176 | 1176 | ||
| 1177 | EFX_POPULATE_QWORD_1(phy_event, EV_CODE, GLOBAL_EV_DECODE); | 1177 | EFX_POPULATE_QWORD_1(phy_event, EV_CODE, GLOBAL_EV_DECODE); |
| 1178 | if (EFX_IS10G(efx)) | 1178 | if (EFX_IS10G(efx)) |
| 1179 | EFX_SET_OWORD_FIELD(phy_event, XG_PHY_INTR, 1); | 1179 | EFX_SET_QWORD_FIELD(phy_event, XG_PHY_INTR, 1); |
| 1180 | else | 1180 | else |
| 1181 | EFX_SET_OWORD_FIELD(phy_event, G_PHY0_INTR, 1); | 1181 | EFX_SET_QWORD_FIELD(phy_event, G_PHY0_INTR, 1); |
| 1182 | 1182 | ||
| 1183 | falcon_generate_event(&efx->channel[0], &phy_event); | 1183 | falcon_generate_event(&efx->channel[0], &phy_event); |
| 1184 | } | 1184 | } |
diff --git a/drivers/net/sh_eth.c b/drivers/net/sh_eth.c index 7b1882765a0c..3ab28bb00c12 100644 --- a/drivers/net/sh_eth.c +++ b/drivers/net/sh_eth.c | |||
| @@ -1188,6 +1188,19 @@ out: | |||
| 1188 | return ret; | 1188 | return ret; |
| 1189 | } | 1189 | } |
| 1190 | 1190 | ||
| 1191 | static const struct net_device_ops sh_eth_netdev_ops = { | ||
| 1192 | .ndo_open = sh_eth_open, | ||
| 1193 | .ndo_stop = sh_eth_close, | ||
| 1194 | .ndo_start_xmit = sh_eth_start_xmit, | ||
| 1195 | .ndo_get_stats = sh_eth_get_stats, | ||
| 1196 | .ndo_set_multicast_list = sh_eth_set_multicast_list, | ||
| 1197 | .ndo_tx_timeout = sh_eth_tx_timeout, | ||
| 1198 | .ndo_do_ioctl = sh_eth_do_ioctl, | ||
| 1199 | .ndo_validate_addr = eth_validate_addr, | ||
| 1200 | .ndo_set_mac_address = eth_mac_addr, | ||
| 1201 | .ndo_change_mtu = eth_change_mtu, | ||
| 1202 | }; | ||
| 1203 | |||
| 1191 | static int sh_eth_drv_probe(struct platform_device *pdev) | 1204 | static int sh_eth_drv_probe(struct platform_device *pdev) |
| 1192 | { | 1205 | { |
| 1193 | int ret, i, devno = 0; | 1206 | int ret, i, devno = 0; |
| @@ -1240,13 +1253,7 @@ static int sh_eth_drv_probe(struct platform_device *pdev) | |||
| 1240 | mdp->edmac_endian = pd->edmac_endian; | 1253 | mdp->edmac_endian = pd->edmac_endian; |
| 1241 | 1254 | ||
| 1242 | /* set function */ | 1255 | /* set function */ |
| 1243 | ndev->open = sh_eth_open; | 1256 | ndev->netdev_ops = &sh_eth_netdev_ops; |
| 1244 | ndev->hard_start_xmit = sh_eth_start_xmit; | ||
| 1245 | ndev->stop = sh_eth_close; | ||
| 1246 | ndev->get_stats = sh_eth_get_stats; | ||
| 1247 | ndev->set_multicast_list = sh_eth_set_multicast_list; | ||
| 1248 | ndev->do_ioctl = sh_eth_do_ioctl; | ||
| 1249 | ndev->tx_timeout = sh_eth_tx_timeout; | ||
| 1250 | ndev->watchdog_timeo = TX_TIMEOUT; | 1257 | ndev->watchdog_timeo = TX_TIMEOUT; |
| 1251 | 1258 | ||
| 1252 | mdp->post_rx = POST_RX >> (devno << 1); | 1259 | mdp->post_rx = POST_RX >> (devno << 1); |
diff --git a/drivers/net/skge.c b/drivers/net/skge.c index b8978d4af1b7..c11cdd08ec57 100644 --- a/drivers/net/skge.c +++ b/drivers/net/skge.c | |||
| @@ -2674,7 +2674,7 @@ static int skge_down(struct net_device *dev) | |||
| 2674 | if (netif_msg_ifdown(skge)) | 2674 | if (netif_msg_ifdown(skge)) |
| 2675 | printk(KERN_INFO PFX "%s: disabling interface\n", dev->name); | 2675 | printk(KERN_INFO PFX "%s: disabling interface\n", dev->name); |
| 2676 | 2676 | ||
| 2677 | netif_stop_queue(dev); | 2677 | netif_tx_disable(dev); |
| 2678 | 2678 | ||
| 2679 | if (hw->chip_id == CHIP_ID_GENESIS && hw->phy_type == SK_PHY_XMAC) | 2679 | if (hw->chip_id == CHIP_ID_GENESIS && hw->phy_type == SK_PHY_XMAC) |
| 2680 | del_timer_sync(&skge->link_timer); | 2680 | del_timer_sync(&skge->link_timer); |
| @@ -2881,7 +2881,6 @@ static void skge_tx_clean(struct net_device *dev) | |||
| 2881 | } | 2881 | } |
| 2882 | 2882 | ||
| 2883 | skge->tx_ring.to_clean = e; | 2883 | skge->tx_ring.to_clean = e; |
| 2884 | netif_wake_queue(dev); | ||
| 2885 | } | 2884 | } |
| 2886 | 2885 | ||
| 2887 | static void skge_tx_timeout(struct net_device *dev) | 2886 | static void skge_tx_timeout(struct net_device *dev) |
| @@ -2893,6 +2892,7 @@ static void skge_tx_timeout(struct net_device *dev) | |||
| 2893 | 2892 | ||
| 2894 | skge_write8(skge->hw, Q_ADDR(txqaddr[skge->port], Q_CSR), CSR_STOP); | 2893 | skge_write8(skge->hw, Q_ADDR(txqaddr[skge->port], Q_CSR), CSR_STOP); |
| 2895 | skge_tx_clean(dev); | 2894 | skge_tx_clean(dev); |
| 2895 | netif_wake_queue(dev); | ||
| 2896 | } | 2896 | } |
| 2897 | 2897 | ||
| 2898 | static int skge_change_mtu(struct net_device *dev, int new_mtu) | 2898 | static int skge_change_mtu(struct net_device *dev, int new_mtu) |
diff --git a/drivers/net/sun3_82586.c b/drivers/net/sun3_82586.c index e0d84772771c..a39c0b9ba8b6 100644 --- a/drivers/net/sun3_82586.c +++ b/drivers/net/sun3_82586.c | |||
| @@ -331,6 +331,18 @@ out: | |||
| 331 | return ERR_PTR(err); | 331 | return ERR_PTR(err); |
| 332 | } | 332 | } |
| 333 | 333 | ||
| 334 | static const struct net_device_ops sun3_82586_netdev_ops = { | ||
| 335 | .ndo_open = sun3_82586_open, | ||
| 336 | .ndo_stop = sun3_82586_close, | ||
| 337 | .ndo_start_xmit = sun3_82586_send_packet, | ||
| 338 | .ndo_set_multicast_list = set_multicast_list, | ||
| 339 | .ndo_tx_timeout = sun3_82586_timeout, | ||
| 340 | .ndo_get_stats = sun3_82586_get_stats, | ||
| 341 | .ndo_validate_addr = eth_validate_addr, | ||
| 342 | .ndo_set_mac_address = eth_mac_addr, | ||
| 343 | .ndo_change_mtu = eth_change_mtu, | ||
| 344 | }; | ||
| 345 | |||
| 334 | static int __init sun3_82586_probe1(struct net_device *dev,int ioaddr) | 346 | static int __init sun3_82586_probe1(struct net_device *dev,int ioaddr) |
| 335 | { | 347 | { |
| 336 | int i, size, retval; | 348 | int i, size, retval; |
| @@ -381,13 +393,8 @@ static int __init sun3_82586_probe1(struct net_device *dev,int ioaddr) | |||
| 381 | 393 | ||
| 382 | printk("Memaddr: 0x%lx, Memsize: %d, IRQ %d\n",dev->mem_start,size, dev->irq); | 394 | printk("Memaddr: 0x%lx, Memsize: %d, IRQ %d\n",dev->mem_start,size, dev->irq); |
| 383 | 395 | ||
| 384 | dev->open = sun3_82586_open; | 396 | dev->netdev_ops = &sun3_82586_netdev_ops; |
| 385 | dev->stop = sun3_82586_close; | ||
| 386 | dev->get_stats = sun3_82586_get_stats; | ||
| 387 | dev->tx_timeout = sun3_82586_timeout; | ||
| 388 | dev->watchdog_timeo = HZ/20; | 397 | dev->watchdog_timeo = HZ/20; |
| 389 | dev->hard_start_xmit = sun3_82586_send_packet; | ||
| 390 | dev->set_multicast_list = set_multicast_list; | ||
| 391 | 398 | ||
| 392 | dev->if_port = 0; | 399 | dev->if_port = 0; |
| 393 | return 0; | 400 | return 0; |
diff --git a/drivers/net/tc35815.c b/drivers/net/tc35815.c index d91e95b237b7..0ce2db6ce2bf 100644 --- a/drivers/net/tc35815.c +++ b/drivers/net/tc35815.c | |||
| @@ -862,6 +862,22 @@ static int __devinit tc35815_init_dev_addr(struct net_device *dev) | |||
| 862 | return 0; | 862 | return 0; |
| 863 | } | 863 | } |
| 864 | 864 | ||
| 865 | static const struct net_device_ops tc35815_netdev_ops = { | ||
| 866 | .ndo_open = tc35815_open, | ||
| 867 | .ndo_stop = tc35815_close, | ||
| 868 | .ndo_start_xmit = tc35815_send_packet, | ||
| 869 | .ndo_get_stats = tc35815_get_stats, | ||
| 870 | .ndo_set_multicast_list = tc35815_set_multicast_list, | ||
| 871 | .ndo_tx_timeout = tc35815_tx_timeout, | ||
| 872 | .ndo_do_ioctl = tc35815_ioctl, | ||
| 873 | .ndo_validate_addr = eth_validate_addr, | ||
| 874 | .ndo_change_mtu = eth_change_mtu, | ||
| 875 | .ndo_set_mac_address = eth_mac_addr, | ||
| 876 | #ifdef CONFIG_NET_POLL_CONTROLLER | ||
| 877 | .ndo_poll_controller = tc35815_poll_controller, | ||
| 878 | #endif | ||
| 879 | }; | ||
| 880 | |||
| 865 | static int __devinit tc35815_init_one(struct pci_dev *pdev, | 881 | static int __devinit tc35815_init_one(struct pci_dev *pdev, |
| 866 | const struct pci_device_id *ent) | 882 | const struct pci_device_id *ent) |
| 867 | { | 883 | { |
| @@ -904,21 +920,12 @@ static int __devinit tc35815_init_one(struct pci_dev *pdev, | |||
| 904 | ioaddr = pcim_iomap_table(pdev)[1]; | 920 | ioaddr = pcim_iomap_table(pdev)[1]; |
| 905 | 921 | ||
| 906 | /* Initialize the device structure. */ | 922 | /* Initialize the device structure. */ |
| 907 | dev->open = tc35815_open; | 923 | dev->netdev_ops = &tc35815_netdev_ops; |
| 908 | dev->hard_start_xmit = tc35815_send_packet; | ||
| 909 | dev->stop = tc35815_close; | ||
| 910 | dev->get_stats = tc35815_get_stats; | ||
| 911 | dev->set_multicast_list = tc35815_set_multicast_list; | ||
| 912 | dev->do_ioctl = tc35815_ioctl; | ||
| 913 | dev->ethtool_ops = &tc35815_ethtool_ops; | 924 | dev->ethtool_ops = &tc35815_ethtool_ops; |
| 914 | dev->tx_timeout = tc35815_tx_timeout; | ||
| 915 | dev->watchdog_timeo = TC35815_TX_TIMEOUT; | 925 | dev->watchdog_timeo = TC35815_TX_TIMEOUT; |
| 916 | #ifdef TC35815_NAPI | 926 | #ifdef TC35815_NAPI |
| 917 | netif_napi_add(dev, &lp->napi, tc35815_poll, NAPI_WEIGHT); | 927 | netif_napi_add(dev, &lp->napi, tc35815_poll, NAPI_WEIGHT); |
| 918 | #endif | 928 | #endif |
| 919 | #ifdef CONFIG_NET_POLL_CONTROLLER | ||
| 920 | dev->poll_controller = tc35815_poll_controller; | ||
| 921 | #endif | ||
| 922 | 929 | ||
| 923 | dev->irq = pdev->irq; | 930 | dev->irq = pdev->irq; |
| 924 | dev->base_addr = (unsigned long)ioaddr; | 931 | dev->base_addr = (unsigned long)ioaddr; |
diff --git a/drivers/net/tg3.c b/drivers/net/tg3.c index 6a736dda3ee2..7a837c465960 100644 --- a/drivers/net/tg3.c +++ b/drivers/net/tg3.c | |||
| @@ -12443,8 +12443,13 @@ static int __devinit tg3_get_device_address(struct tg3 *tp) | |||
| 12443 | /* Next, try NVRAM. */ | 12443 | /* Next, try NVRAM. */ |
| 12444 | if (!tg3_nvram_read_be32(tp, mac_offset + 0, &hi) && | 12444 | if (!tg3_nvram_read_be32(tp, mac_offset + 0, &hi) && |
| 12445 | !tg3_nvram_read_be32(tp, mac_offset + 4, &lo)) { | 12445 | !tg3_nvram_read_be32(tp, mac_offset + 4, &lo)) { |
| 12446 | memcpy(&dev->dev_addr[0], ((char *)&hi) + 2, 2); | 12446 | dev->dev_addr[0] = ((hi >> 16) & 0xff); |
| 12447 | memcpy(&dev->dev_addr[2], (char *)&lo, sizeof(lo)); | 12447 | dev->dev_addr[1] = ((hi >> 24) & 0xff); |
| 12448 | dev->dev_addr[2] = ((lo >> 0) & 0xff); | ||
| 12449 | dev->dev_addr[3] = ((lo >> 8) & 0xff); | ||
| 12450 | dev->dev_addr[4] = ((lo >> 16) & 0xff); | ||
| 12451 | dev->dev_addr[5] = ((lo >> 24) & 0xff); | ||
| 12452 | |||
| 12448 | } | 12453 | } |
| 12449 | /* Finally just fetch it out of the MAC control regs. */ | 12454 | /* Finally just fetch it out of the MAC control regs. */ |
| 12450 | else { | 12455 | else { |
diff --git a/drivers/net/tsi108_eth.c b/drivers/net/tsi108_eth.c index bb43e7fb2a50..0f78f99f9b20 100644 --- a/drivers/net/tsi108_eth.c +++ b/drivers/net/tsi108_eth.c | |||
| @@ -1561,6 +1561,18 @@ static const struct ethtool_ops tsi108_ethtool_ops = { | |||
| 1561 | .set_settings = tsi108_set_settings, | 1561 | .set_settings = tsi108_set_settings, |
| 1562 | }; | 1562 | }; |
| 1563 | 1563 | ||
| 1564 | static const struct net_device_ops tsi108_netdev_ops = { | ||
| 1565 | .ndo_open = tsi108_open, | ||
| 1566 | .ndo_stop = tsi108_close, | ||
| 1567 | .ndo_start_xmit = tsi108_send_packet, | ||
| 1568 | .ndo_set_multicast_list = tsi108_set_rx_mode, | ||
| 1569 | .ndo_get_stats = tsi108_get_stats, | ||
| 1570 | .ndo_do_ioctl = tsi108_do_ioctl, | ||
| 1571 | .ndo_set_mac_address = tsi108_set_mac, | ||
| 1572 | .ndo_validate_addr = eth_validate_addr, | ||
| 1573 | .ndo_change_mtu = eth_change_mtu, | ||
| 1574 | }; | ||
| 1575 | |||
| 1564 | static int | 1576 | static int |
| 1565 | tsi108_init_one(struct platform_device *pdev) | 1577 | tsi108_init_one(struct platform_device *pdev) |
| 1566 | { | 1578 | { |
| @@ -1616,14 +1628,8 @@ tsi108_init_one(struct platform_device *pdev) | |||
| 1616 | data->phy_type = einfo->phy_type; | 1628 | data->phy_type = einfo->phy_type; |
| 1617 | data->irq_num = einfo->irq_num; | 1629 | data->irq_num = einfo->irq_num; |
| 1618 | data->id = pdev->id; | 1630 | data->id = pdev->id; |
| 1619 | dev->open = tsi108_open; | ||
| 1620 | dev->stop = tsi108_close; | ||
| 1621 | dev->hard_start_xmit = tsi108_send_packet; | ||
| 1622 | dev->set_mac_address = tsi108_set_mac; | ||
| 1623 | dev->set_multicast_list = tsi108_set_rx_mode; | ||
| 1624 | dev->get_stats = tsi108_get_stats; | ||
| 1625 | netif_napi_add(dev, &data->napi, tsi108_poll, 64); | 1631 | netif_napi_add(dev, &data->napi, tsi108_poll, 64); |
| 1626 | dev->do_ioctl = tsi108_do_ioctl; | 1632 | dev->netdev_ops = &tsi108_netdev_ops; |
| 1627 | dev->ethtool_ops = &tsi108_ethtool_ops; | 1633 | dev->ethtool_ops = &tsi108_ethtool_ops; |
| 1628 | 1634 | ||
| 1629 | /* Apparently, the Linux networking code won't use scatter-gather | 1635 | /* Apparently, the Linux networking code won't use scatter-gather |
diff --git a/drivers/net/tun.c b/drivers/net/tun.c index a1b0697340ba..16716aef184c 100644 --- a/drivers/net/tun.c +++ b/drivers/net/tun.c | |||
| @@ -518,7 +518,7 @@ static inline struct sk_buff *tun_alloc_skb(struct tun_struct *tun, | |||
| 518 | int err; | 518 | int err; |
| 519 | 519 | ||
| 520 | /* Under a page? Don't bother with paged skb. */ | 520 | /* Under a page? Don't bother with paged skb. */ |
| 521 | if (prepad + len < PAGE_SIZE) | 521 | if (prepad + len < PAGE_SIZE || !linear) |
| 522 | linear = len; | 522 | linear = len; |
| 523 | 523 | ||
| 524 | skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock, | 524 | skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock, |
| @@ -565,7 +565,8 @@ static __inline__ ssize_t tun_get_user(struct tun_struct *tun, | |||
| 565 | 565 | ||
| 566 | if ((tun->flags & TUN_TYPE_MASK) == TUN_TAP_DEV) { | 566 | if ((tun->flags & TUN_TYPE_MASK) == TUN_TAP_DEV) { |
| 567 | align = NET_IP_ALIGN; | 567 | align = NET_IP_ALIGN; |
| 568 | if (unlikely(len < ETH_HLEN)) | 568 | if (unlikely(len < ETH_HLEN || |
| 569 | (gso.hdr_len && gso.hdr_len < ETH_HLEN))) | ||
| 569 | return -EINVAL; | 570 | return -EINVAL; |
| 570 | } | 571 | } |
| 571 | 572 | ||
diff --git a/drivers/net/via-velocity.c b/drivers/net/via-velocity.c index fb53ef872df3..754a4b182c1d 100644 --- a/drivers/net/via-velocity.c +++ b/drivers/net/via-velocity.c | |||
| @@ -377,7 +377,7 @@ static void velocity_print_info(struct velocity_info *vptr); | |||
| 377 | static int velocity_open(struct net_device *dev); | 377 | static int velocity_open(struct net_device *dev); |
| 378 | static int velocity_change_mtu(struct net_device *dev, int mtu); | 378 | static int velocity_change_mtu(struct net_device *dev, int mtu); |
| 379 | static int velocity_xmit(struct sk_buff *skb, struct net_device *dev); | 379 | static int velocity_xmit(struct sk_buff *skb, struct net_device *dev); |
| 380 | static int velocity_intr(int irq, void *dev_instance); | 380 | static irqreturn_t velocity_intr(int irq, void *dev_instance); |
| 381 | static void velocity_set_multi(struct net_device *dev); | 381 | static void velocity_set_multi(struct net_device *dev); |
| 382 | static struct net_device_stats *velocity_get_stats(struct net_device *dev); | 382 | static struct net_device_stats *velocity_get_stats(struct net_device *dev); |
| 383 | static int velocity_ioctl(struct net_device *dev, struct ifreq *rq, int cmd); | 383 | static int velocity_ioctl(struct net_device *dev, struct ifreq *rq, int cmd); |
| @@ -2215,7 +2215,7 @@ out: | |||
| 2215 | * efficiently as possible. | 2215 | * efficiently as possible. |
| 2216 | */ | 2216 | */ |
| 2217 | 2217 | ||
| 2218 | static int velocity_intr(int irq, void *dev_instance) | 2218 | static irqreturn_t velocity_intr(int irq, void *dev_instance) |
| 2219 | { | 2219 | { |
| 2220 | struct net_device *dev = dev_instance; | 2220 | struct net_device *dev = dev_instance; |
| 2221 | struct velocity_info *vptr = netdev_priv(dev); | 2221 | struct velocity_info *vptr = netdev_priv(dev); |
diff --git a/drivers/net/xtsonic.c b/drivers/net/xtsonic.c index a12a7211c982..5a4ad156f63e 100644 --- a/drivers/net/xtsonic.c +++ b/drivers/net/xtsonic.c | |||
| @@ -108,6 +108,18 @@ static int xtsonic_close(struct net_device *dev) | |||
| 108 | return err; | 108 | return err; |
| 109 | } | 109 | } |
| 110 | 110 | ||
| 111 | static const struct net_device_ops xtsonic_netdev_ops = { | ||
| 112 | .ndo_open = xtsonic_open, | ||
| 113 | .ndo_stop = xtsonic_close, | ||
| 114 | .ndo_start_xmit = sonic_send_packet, | ||
| 115 | .ndo_get_stats = sonic_get_stats, | ||
| 116 | .ndo_set_multicast_list = sonic_multicast_list, | ||
| 117 | .ndo_tx_timeout = sonic_tx_timeout, | ||
| 118 | .ndo_validate_addr = eth_validate_addr, | ||
| 119 | .ndo_change_mtu = eth_change_mtu, | ||
| 120 | .ndo_set_mac_address = eth_mac_addr, | ||
| 121 | }; | ||
| 122 | |||
| 111 | static int __init sonic_probe1(struct net_device *dev) | 123 | static int __init sonic_probe1(struct net_device *dev) |
| 112 | { | 124 | { |
| 113 | static unsigned version_printed = 0; | 125 | static unsigned version_printed = 0; |
| @@ -205,12 +217,7 @@ static int __init sonic_probe1(struct net_device *dev) | |||
| 205 | lp->rra_laddr = lp->rda_laddr + (SIZEOF_SONIC_RD * SONIC_NUM_RDS | 217 | lp->rra_laddr = lp->rda_laddr + (SIZEOF_SONIC_RD * SONIC_NUM_RDS |
| 206 | * SONIC_BUS_SCALE(lp->dma_bitmode)); | 218 | * SONIC_BUS_SCALE(lp->dma_bitmode)); |
| 207 | 219 | ||
| 208 | dev->open = xtsonic_open; | 220 | dev->netdev_ops = &xtsonic_netdev_ops; |
| 209 | dev->stop = xtsonic_close; | ||
| 210 | dev->hard_start_xmit = sonic_send_packet; | ||
| 211 | dev->get_stats = sonic_get_stats; | ||
| 212 | dev->set_multicast_list = &sonic_multicast_list; | ||
| 213 | dev->tx_timeout = sonic_tx_timeout; | ||
| 214 | dev->watchdog_timeo = TX_TIMEOUT; | 221 | dev->watchdog_timeo = TX_TIMEOUT; |
| 215 | 222 | ||
| 216 | /* | 223 | /* |
diff --git a/include/linux/phy.h b/include/linux/phy.h index 32cf14a4b034..97e40cb6b588 100644 --- a/include/linux/phy.h +++ b/include/linux/phy.h | |||
| @@ -388,6 +388,12 @@ struct phy_driver { | |||
| 388 | /* Enables or disables interrupts */ | 388 | /* Enables or disables interrupts */ |
| 389 | int (*config_intr)(struct phy_device *phydev); | 389 | int (*config_intr)(struct phy_device *phydev); |
| 390 | 390 | ||
| 391 | /* | ||
| 392 | * Checks if the PHY generated an interrupt. | ||
| 393 | * For multi-PHY devices with shared PHY interrupt pin | ||
| 394 | */ | ||
| 395 | int (*did_interrupt)(struct phy_device *phydev); | ||
| 396 | |||
| 391 | /* Clears up any memory if needed */ | 397 | /* Clears up any memory if needed */ |
| 392 | void (*remove)(struct phy_device *phydev); | 398 | void (*remove)(struct phy_device *phydev); |
| 393 | 399 | ||
diff --git a/include/net/udp.h b/include/net/udp.h index 93dbe294d459..90e6ce56be65 100644 --- a/include/net/udp.h +++ b/include/net/udp.h | |||
| @@ -124,8 +124,6 @@ static inline void udp_lib_close(struct sock *sk, long timeout) | |||
| 124 | sk_common_release(sk); | 124 | sk_common_release(sk); |
| 125 | } | 125 | } |
| 126 | 126 | ||
| 127 | extern int ipv4_rcv_saddr_equal(const struct sock *sk1, | ||
| 128 | const struct sock *sk2); | ||
| 129 | extern int udp_lib_get_port(struct sock *sk, unsigned short snum, | 127 | extern int udp_lib_get_port(struct sock *sk, unsigned short snum, |
| 130 | int (*)(const struct sock*,const struct sock*)); | 128 | int (*)(const struct sock*,const struct sock*)); |
| 131 | 129 | ||
diff --git a/net/802/tr.c b/net/802/tr.c index e7eb13084d71..e874447ad144 100644 --- a/net/802/tr.c +++ b/net/802/tr.c | |||
| @@ -561,6 +561,9 @@ static int rif_seq_show(struct seq_file *seq, void *v) | |||
| 561 | } | 561 | } |
| 562 | seq_putc(seq, '\n'); | 562 | seq_putc(seq, '\n'); |
| 563 | } | 563 | } |
| 564 | |||
| 565 | if (dev) | ||
| 566 | dev_put(dev); | ||
| 564 | } | 567 | } |
| 565 | return 0; | 568 | return 0; |
| 566 | } | 569 | } |
diff --git a/net/8021q/vlan_core.c b/net/8021q/vlan_core.c index 654e45f5719d..c67fe6f75653 100644 --- a/net/8021q/vlan_core.c +++ b/net/8021q/vlan_core.c | |||
| @@ -121,8 +121,10 @@ int vlan_gro_frags(struct napi_struct *napi, struct vlan_group *grp, | |||
| 121 | if (!skb) | 121 | if (!skb) |
| 122 | return NET_RX_DROP; | 122 | return NET_RX_DROP; |
| 123 | 123 | ||
| 124 | if (netpoll_rx_on(skb)) | 124 | if (netpoll_rx_on(skb)) { |
| 125 | skb->protocol = eth_type_trans(skb, skb->dev); | ||
| 125 | return vlan_hwaccel_receive_skb(skb, grp, vlan_tci); | 126 | return vlan_hwaccel_receive_skb(skb, grp, vlan_tci); |
| 127 | } | ||
| 126 | 128 | ||
| 127 | return napi_frags_finish(napi, skb, | 129 | return napi_frags_finish(napi, skb, |
| 128 | vlan_gro_common(napi, grp, vlan_tci, skb)); | 130 | vlan_gro_common(napi, grp, vlan_tci, skb)); |
diff --git a/net/core/dev.c b/net/core/dev.c index 91d792d17e09..343883f65ea7 100644 --- a/net/core/dev.c +++ b/net/core/dev.c | |||
| @@ -1430,7 +1430,7 @@ void netif_device_detach(struct net_device *dev) | |||
| 1430 | { | 1430 | { |
| 1431 | if (test_and_clear_bit(__LINK_STATE_PRESENT, &dev->state) && | 1431 | if (test_and_clear_bit(__LINK_STATE_PRESENT, &dev->state) && |
| 1432 | netif_running(dev)) { | 1432 | netif_running(dev)) { |
| 1433 | netif_stop_queue(dev); | 1433 | netif_tx_stop_all_queues(dev); |
| 1434 | } | 1434 | } |
| 1435 | } | 1435 | } |
| 1436 | EXPORT_SYMBOL(netif_device_detach); | 1436 | EXPORT_SYMBOL(netif_device_detach); |
| @@ -1445,7 +1445,7 @@ void netif_device_attach(struct net_device *dev) | |||
| 1445 | { | 1445 | { |
| 1446 | if (!test_and_set_bit(__LINK_STATE_PRESENT, &dev->state) && | 1446 | if (!test_and_set_bit(__LINK_STATE_PRESENT, &dev->state) && |
| 1447 | netif_running(dev)) { | 1447 | netif_running(dev)) { |
| 1448 | netif_wake_queue(dev); | 1448 | netif_tx_wake_all_queues(dev); |
| 1449 | __netdev_watchdog_up(dev); | 1449 | __netdev_watchdog_up(dev); |
| 1450 | } | 1450 | } |
| 1451 | } | 1451 | } |
| @@ -2328,8 +2328,10 @@ static int napi_gro_complete(struct sk_buff *skb) | |||
| 2328 | struct list_head *head = &ptype_base[ntohs(type) & PTYPE_HASH_MASK]; | 2328 | struct list_head *head = &ptype_base[ntohs(type) & PTYPE_HASH_MASK]; |
| 2329 | int err = -ENOENT; | 2329 | int err = -ENOENT; |
| 2330 | 2330 | ||
| 2331 | if (NAPI_GRO_CB(skb)->count == 1) | 2331 | if (NAPI_GRO_CB(skb)->count == 1) { |
| 2332 | skb_shinfo(skb)->gso_size = 0; | ||
| 2332 | goto out; | 2333 | goto out; |
| 2334 | } | ||
| 2333 | 2335 | ||
| 2334 | rcu_read_lock(); | 2336 | rcu_read_lock(); |
| 2335 | list_for_each_entry_rcu(ptype, head, list) { | 2337 | list_for_each_entry_rcu(ptype, head, list) { |
| @@ -2348,7 +2350,6 @@ static int napi_gro_complete(struct sk_buff *skb) | |||
| 2348 | } | 2350 | } |
| 2349 | 2351 | ||
| 2350 | out: | 2352 | out: |
| 2351 | skb_shinfo(skb)->gso_size = 0; | ||
| 2352 | return netif_receive_skb(skb); | 2353 | return netif_receive_skb(skb); |
| 2353 | } | 2354 | } |
| 2354 | 2355 | ||
diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c index 2bc8e27a163d..c96a6bb25430 100644 --- a/net/ipv4/tcp_input.c +++ b/net/ipv4/tcp_input.c | |||
| @@ -928,6 +928,8 @@ static void tcp_init_metrics(struct sock *sk) | |||
| 928 | tcp_set_rto(sk); | 928 | tcp_set_rto(sk); |
| 929 | if (inet_csk(sk)->icsk_rto < TCP_TIMEOUT_INIT && !tp->rx_opt.saw_tstamp) | 929 | if (inet_csk(sk)->icsk_rto < TCP_TIMEOUT_INIT && !tp->rx_opt.saw_tstamp) |
| 930 | goto reset; | 930 | goto reset; |
| 931 | |||
| 932 | cwnd: | ||
| 931 | tp->snd_cwnd = tcp_init_cwnd(tp, dst); | 933 | tp->snd_cwnd = tcp_init_cwnd(tp, dst); |
| 932 | tp->snd_cwnd_stamp = tcp_time_stamp; | 934 | tp->snd_cwnd_stamp = tcp_time_stamp; |
| 933 | return; | 935 | return; |
| @@ -942,6 +944,7 @@ reset: | |||
| 942 | tp->mdev = tp->mdev_max = tp->rttvar = TCP_TIMEOUT_INIT; | 944 | tp->mdev = tp->mdev_max = tp->rttvar = TCP_TIMEOUT_INIT; |
| 943 | inet_csk(sk)->icsk_rto = TCP_TIMEOUT_INIT; | 945 | inet_csk(sk)->icsk_rto = TCP_TIMEOUT_INIT; |
| 944 | } | 946 | } |
| 947 | goto cwnd; | ||
| 945 | } | 948 | } |
| 946 | 949 | ||
| 947 | static void tcp_update_reordering(struct sock *sk, const int metric, | 950 | static void tcp_update_reordering(struct sock *sk, const int metric, |
diff --git a/net/ipv4/udp.c b/net/ipv4/udp.c index bda08a09357d..7a1d1ce22e66 100644 --- a/net/ipv4/udp.c +++ b/net/ipv4/udp.c | |||
| @@ -222,7 +222,7 @@ fail: | |||
| 222 | return error; | 222 | return error; |
| 223 | } | 223 | } |
| 224 | 224 | ||
| 225 | int ipv4_rcv_saddr_equal(const struct sock *sk1, const struct sock *sk2) | 225 | static int ipv4_rcv_saddr_equal(const struct sock *sk1, const struct sock *sk2) |
| 226 | { | 226 | { |
| 227 | struct inet_sock *inet1 = inet_sk(sk1), *inet2 = inet_sk(sk2); | 227 | struct inet_sock *inet1 = inet_sk(sk1), *inet2 = inet_sk(sk2); |
| 228 | 228 | ||
| @@ -1823,7 +1823,6 @@ EXPORT_SYMBOL(udp_lib_getsockopt); | |||
| 1823 | EXPORT_SYMBOL(udp_lib_setsockopt); | 1823 | EXPORT_SYMBOL(udp_lib_setsockopt); |
| 1824 | EXPORT_SYMBOL(udp_poll); | 1824 | EXPORT_SYMBOL(udp_poll); |
| 1825 | EXPORT_SYMBOL(udp_lib_get_port); | 1825 | EXPORT_SYMBOL(udp_lib_get_port); |
| 1826 | EXPORT_SYMBOL(ipv4_rcv_saddr_equal); | ||
| 1827 | 1826 | ||
| 1828 | #ifdef CONFIG_PROC_FS | 1827 | #ifdef CONFIG_PROC_FS |
| 1829 | EXPORT_SYMBOL(udp_proc_register); | 1828 | EXPORT_SYMBOL(udp_proc_register); |
diff --git a/net/ipv6/ipv6_sockglue.c b/net/ipv6/ipv6_sockglue.c index d31df0f4bc9a..a7fdf9a27f15 100644 --- a/net/ipv6/ipv6_sockglue.c +++ b/net/ipv6/ipv6_sockglue.c | |||
| @@ -380,10 +380,6 @@ static int do_ipv6_setsockopt(struct sock *sk, int level, int optname, | |||
| 380 | default: | 380 | default: |
| 381 | goto sticky_done; | 381 | goto sticky_done; |
| 382 | } | 382 | } |
| 383 | |||
| 384 | if ((rthdr->hdrlen & 1) || | ||
| 385 | (rthdr->hdrlen >> 1) != rthdr->segments_left) | ||
| 386 | goto sticky_done; | ||
| 387 | } | 383 | } |
| 388 | 384 | ||
| 389 | retv = 0; | 385 | retv = 0; |
diff --git a/net/ipv6/udp.c b/net/ipv6/udp.c index 6842dd2edd5b..8905712cfbb8 100644 --- a/net/ipv6/udp.c +++ b/net/ipv6/udp.c | |||
| @@ -53,6 +53,8 @@ int ipv6_rcv_saddr_equal(const struct sock *sk, const struct sock *sk2) | |||
| 53 | { | 53 | { |
| 54 | const struct in6_addr *sk_rcv_saddr6 = &inet6_sk(sk)->rcv_saddr; | 54 | const struct in6_addr *sk_rcv_saddr6 = &inet6_sk(sk)->rcv_saddr; |
| 55 | const struct in6_addr *sk2_rcv_saddr6 = inet6_rcv_saddr(sk2); | 55 | const struct in6_addr *sk2_rcv_saddr6 = inet6_rcv_saddr(sk2); |
| 56 | __be32 sk_rcv_saddr = inet_sk(sk)->rcv_saddr; | ||
| 57 | __be32 sk2_rcv_saddr = inet_rcv_saddr(sk2); | ||
| 56 | int sk_ipv6only = ipv6_only_sock(sk); | 58 | int sk_ipv6only = ipv6_only_sock(sk); |
| 57 | int sk2_ipv6only = inet_v6_ipv6only(sk2); | 59 | int sk2_ipv6only = inet_v6_ipv6only(sk2); |
| 58 | int addr_type = ipv6_addr_type(sk_rcv_saddr6); | 60 | int addr_type = ipv6_addr_type(sk_rcv_saddr6); |
| @@ -60,7 +62,9 @@ int ipv6_rcv_saddr_equal(const struct sock *sk, const struct sock *sk2) | |||
| 60 | 62 | ||
| 61 | /* if both are mapped, treat as IPv4 */ | 63 | /* if both are mapped, treat as IPv4 */ |
| 62 | if (addr_type == IPV6_ADDR_MAPPED && addr_type2 == IPV6_ADDR_MAPPED) | 64 | if (addr_type == IPV6_ADDR_MAPPED && addr_type2 == IPV6_ADDR_MAPPED) |
| 63 | return ipv4_rcv_saddr_equal(sk, sk2); | 65 | return (!sk2_ipv6only && |
| 66 | (!sk_rcv_saddr || !sk2_rcv_saddr || | ||
| 67 | sk_rcv_saddr == sk2_rcv_saddr)); | ||
| 64 | 68 | ||
| 65 | if (addr_type2 == IPV6_ADDR_ANY && | 69 | if (addr_type2 == IPV6_ADDR_ANY && |
| 66 | !(sk2_ipv6only && addr_type == IPV6_ADDR_MAPPED)) | 70 | !(sk2_ipv6only && addr_type == IPV6_ADDR_MAPPED)) |
diff --git a/net/packet/af_packet.c b/net/packet/af_packet.c index 74776de523ec..f546e81acc45 100644 --- a/net/packet/af_packet.c +++ b/net/packet/af_packet.c | |||
| @@ -1758,8 +1758,9 @@ static void free_pg_vec(char **pg_vec, unsigned int order, unsigned int len) | |||
| 1758 | 1758 | ||
| 1759 | static inline char *alloc_one_pg_vec_page(unsigned long order) | 1759 | static inline char *alloc_one_pg_vec_page(unsigned long order) |
| 1760 | { | 1760 | { |
| 1761 | return (char *) __get_free_pages(GFP_KERNEL | __GFP_COMP | __GFP_ZERO, | 1761 | gfp_t gfp_flags = GFP_KERNEL | __GFP_COMP | __GFP_ZERO | __GFP_NOWARN; |
| 1762 | order); | 1762 | |
| 1763 | return (char *) __get_free_pages(gfp_flags, order); | ||
| 1763 | } | 1764 | } |
| 1764 | 1765 | ||
| 1765 | static char **alloc_pg_vec(struct tpacket_req *req, int order) | 1766 | static char **alloc_pg_vec(struct tpacket_req *req, int order) |
diff --git a/net/rose/af_rose.c b/net/rose/af_rose.c index 0f36e8d59b29..877a7f65f707 100644 --- a/net/rose/af_rose.c +++ b/net/rose/af_rose.c | |||
| @@ -1072,10 +1072,6 @@ static int rose_sendmsg(struct kiocb *iocb, struct socket *sock, | |||
| 1072 | unsigned char *asmptr; | 1072 | unsigned char *asmptr; |
| 1073 | int n, size, qbit = 0; | 1073 | int n, size, qbit = 0; |
| 1074 | 1074 | ||
| 1075 | /* ROSE empty frame has no meaning : don't send */ | ||
| 1076 | if (len == 0) | ||
| 1077 | return 0; | ||
| 1078 | |||
| 1079 | if (msg->msg_flags & ~(MSG_DONTWAIT|MSG_EOR|MSG_CMSG_COMPAT)) | 1075 | if (msg->msg_flags & ~(MSG_DONTWAIT|MSG_EOR|MSG_CMSG_COMPAT)) |
| 1080 | return -EINVAL; | 1076 | return -EINVAL; |
| 1081 | 1077 | ||
| @@ -1273,12 +1269,6 @@ static int rose_recvmsg(struct kiocb *iocb, struct socket *sock, | |||
| 1273 | skb_reset_transport_header(skb); | 1269 | skb_reset_transport_header(skb); |
| 1274 | copied = skb->len; | 1270 | copied = skb->len; |
| 1275 | 1271 | ||
| 1276 | /* ROSE empty frame has no meaning : ignore it */ | ||
| 1277 | if (copied == 0) { | ||
| 1278 | skb_free_datagram(sk, skb); | ||
| 1279 | return copied; | ||
| 1280 | } | ||
| 1281 | |||
| 1282 | if (copied > size) { | 1272 | if (copied > size) { |
| 1283 | copied = size; | 1273 | copied = size; |
| 1284 | msg->msg_flags |= MSG_TRUNC; | 1274 | msg->msg_flags |= MSG_TRUNC; |
diff --git a/net/sched/em_meta.c b/net/sched/em_meta.c index 72cf86e3c090..fad596bf32d7 100644 --- a/net/sched/em_meta.c +++ b/net/sched/em_meta.c | |||
| @@ -176,8 +176,10 @@ META_COLLECTOR(var_dev) | |||
| 176 | 176 | ||
| 177 | META_COLLECTOR(int_vlan_tag) | 177 | META_COLLECTOR(int_vlan_tag) |
| 178 | { | 178 | { |
| 179 | unsigned short uninitialized_var(tag); | 179 | unsigned short tag; |
| 180 | if (vlan_get_tag(skb, &tag) < 0) | 180 | |
| 181 | tag = vlan_tx_tag_get(skb); | ||
| 182 | if (!tag && __vlan_get_tag(skb, &tag)) | ||
| 181 | *err = -1; | 183 | *err = -1; |
| 182 | else | 184 | else |
| 183 | dst->value = tag; | 185 | dst->value = tag; |
