diff options
author | Glenn Elliott <gelliott@cs.unc.edu> | 2012-03-04 19:47:13 -0500 |
---|---|---|
committer | Glenn Elliott <gelliott@cs.unc.edu> | 2012-03-04 19:47:13 -0500 |
commit | c71c03bda1e86c9d5198c5d83f712e695c4f2a1e (patch) | |
tree | ecb166cb3e2b7e2adb3b5e292245fefd23381ac8 /drivers/net/ioc3-eth.c | |
parent | ea53c912f8a86a8567697115b6a0d8152beee5c8 (diff) | |
parent | 6a00f206debf8a5c8899055726ad127dbeeed098 (diff) |
Merge branch 'mpi-master' into wip-k-fmlpwip-k-fmlp
Conflicts:
litmus/sched_cedf.c
Diffstat (limited to 'drivers/net/ioc3-eth.c')
-rw-r--r-- | drivers/net/ioc3-eth.c | 34 |
1 files changed, 4 insertions, 30 deletions
diff --git a/drivers/net/ioc3-eth.c b/drivers/net/ioc3-eth.c index 0b3f6df5cff7..32f07f868d89 100644 --- a/drivers/net/ioc3-eth.c +++ b/drivers/net/ioc3-eth.c | |||
@@ -90,8 +90,6 @@ struct ioc3_private { | |||
90 | u32 emcr, ehar_h, ehar_l; | 90 | u32 emcr, ehar_h, ehar_l; |
91 | spinlock_t ioc3_lock; | 91 | spinlock_t ioc3_lock; |
92 | struct mii_if_info mii; | 92 | struct mii_if_info mii; |
93 | unsigned long flags; | ||
94 | #define IOC3_FLAG_RX_CHECKSUMS 1 | ||
95 | 93 | ||
96 | struct pci_dev *pdev; | 94 | struct pci_dev *pdev; |
97 | 95 | ||
@@ -609,7 +607,7 @@ static inline void ioc3_rx(struct net_device *dev) | |||
609 | goto next; | 607 | goto next; |
610 | } | 608 | } |
611 | 609 | ||
612 | if (likely(ip->flags & IOC3_FLAG_RX_CHECKSUMS)) | 610 | if (likely(dev->features & NETIF_F_RXCSUM)) |
613 | ioc3_tcpudp_checksum(skb, | 611 | ioc3_tcpudp_checksum(skb, |
614 | w0 & ERXBUF_IPCKSUM_MASK, len); | 612 | w0 & ERXBUF_IPCKSUM_MASK, len); |
615 | 613 | ||
@@ -827,7 +825,7 @@ static void ioc3_mii_start(struct ioc3_private *ip) | |||
827 | { | 825 | { |
828 | ip->ioc3_timer.expires = jiffies + (12 * HZ)/10; /* 1.2 sec. */ | 826 | ip->ioc3_timer.expires = jiffies + (12 * HZ)/10; /* 1.2 sec. */ |
829 | ip->ioc3_timer.data = (unsigned long) ip; | 827 | ip->ioc3_timer.data = (unsigned long) ip; |
830 | ip->ioc3_timer.function = &ioc3_timer; | 828 | ip->ioc3_timer.function = ioc3_timer; |
831 | add_timer(&ip->ioc3_timer); | 829 | add_timer(&ip->ioc3_timer); |
832 | } | 830 | } |
833 | 831 | ||
@@ -917,7 +915,7 @@ static void ioc3_alloc_rings(struct net_device *dev) | |||
917 | 915 | ||
918 | skb = ioc3_alloc_skb(RX_BUF_ALLOC_SIZE, GFP_ATOMIC); | 916 | skb = ioc3_alloc_skb(RX_BUF_ALLOC_SIZE, GFP_ATOMIC); |
919 | if (!skb) { | 917 | if (!skb) { |
920 | show_free_areas(); | 918 | show_free_areas(0); |
921 | continue; | 919 | continue; |
922 | } | 920 | } |
923 | 921 | ||
@@ -1328,6 +1326,7 @@ static int __devinit ioc3_probe(struct pci_dev *pdev, | |||
1328 | dev->watchdog_timeo = 5 * HZ; | 1326 | dev->watchdog_timeo = 5 * HZ; |
1329 | dev->netdev_ops = &ioc3_netdev_ops; | 1327 | dev->netdev_ops = &ioc3_netdev_ops; |
1330 | dev->ethtool_ops = &ioc3_ethtool_ops; | 1328 | dev->ethtool_ops = &ioc3_ethtool_ops; |
1329 | dev->hw_features = NETIF_F_IP_CSUM | NETIF_F_RXCSUM; | ||
1331 | dev->features = NETIF_F_IP_CSUM; | 1330 | dev->features = NETIF_F_IP_CSUM; |
1332 | 1331 | ||
1333 | sw_physid1 = ioc3_mdio_read(dev, ip->mii.phy_id, MII_PHYSID1); | 1332 | sw_physid1 = ioc3_mdio_read(dev, ip->mii.phy_id, MII_PHYSID1); |
@@ -1618,37 +1617,12 @@ static u32 ioc3_get_link(struct net_device *dev) | |||
1618 | return rc; | 1617 | return rc; |
1619 | } | 1618 | } |
1620 | 1619 | ||
1621 | static u32 ioc3_get_rx_csum(struct net_device *dev) | ||
1622 | { | ||
1623 | struct ioc3_private *ip = netdev_priv(dev); | ||
1624 | |||
1625 | return ip->flags & IOC3_FLAG_RX_CHECKSUMS; | ||
1626 | } | ||
1627 | |||
1628 | static int ioc3_set_rx_csum(struct net_device *dev, u32 data) | ||
1629 | { | ||
1630 | struct ioc3_private *ip = netdev_priv(dev); | ||
1631 | |||
1632 | spin_lock_bh(&ip->ioc3_lock); | ||
1633 | if (data) | ||
1634 | ip->flags |= IOC3_FLAG_RX_CHECKSUMS; | ||
1635 | else | ||
1636 | ip->flags &= ~IOC3_FLAG_RX_CHECKSUMS; | ||
1637 | spin_unlock_bh(&ip->ioc3_lock); | ||
1638 | |||
1639 | return 0; | ||
1640 | } | ||
1641 | |||
1642 | static const struct ethtool_ops ioc3_ethtool_ops = { | 1620 | static const struct ethtool_ops ioc3_ethtool_ops = { |
1643 | .get_drvinfo = ioc3_get_drvinfo, | 1621 | .get_drvinfo = ioc3_get_drvinfo, |
1644 | .get_settings = ioc3_get_settings, | 1622 | .get_settings = ioc3_get_settings, |
1645 | .set_settings = ioc3_set_settings, | 1623 | .set_settings = ioc3_set_settings, |
1646 | .nway_reset = ioc3_nway_reset, | 1624 | .nway_reset = ioc3_nway_reset, |
1647 | .get_link = ioc3_get_link, | 1625 | .get_link = ioc3_get_link, |
1648 | .get_rx_csum = ioc3_get_rx_csum, | ||
1649 | .set_rx_csum = ioc3_set_rx_csum, | ||
1650 | .get_tx_csum = ethtool_op_get_tx_csum, | ||
1651 | .set_tx_csum = ethtool_op_set_tx_csum | ||
1652 | }; | 1626 | }; |
1653 | 1627 | ||
1654 | static int ioc3_ioctl(struct net_device *dev, struct ifreq *rq, int cmd) | 1628 | static int ioc3_ioctl(struct net_device *dev, struct ifreq *rq, int cmd) |