aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/iseries_veth.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/iseries_veth.c')
-rw-r--r--drivers/net/iseries_veth.c29
1 files changed, 7 insertions, 22 deletions
diff --git a/drivers/net/iseries_veth.c b/drivers/net/iseries_veth.c
index ba1de5973fb2..9ece1fd9889d 100644
--- a/drivers/net/iseries_veth.c
+++ b/drivers/net/iseries_veth.c
@@ -885,17 +885,8 @@ static void veth_stop_connection(struct veth_lpar_connection *cnx)
885 veth_kick_statemachine(cnx); 885 veth_kick_statemachine(cnx);
886 spin_unlock_irq(&cnx->lock); 886 spin_unlock_irq(&cnx->lock);
887 887
888 /* There's a slim chance the reset code has just queued the 888 /* ensure the statemachine runs now and waits for its completion */
889 * statemachine to run in five seconds. If so we need to cancel 889 flush_delayed_work_sync(&cnx->statemachine_wq);
890 * that and requeue the work to run now. */
891 if (cancel_delayed_work(&cnx->statemachine_wq)) {
892 spin_lock_irq(&cnx->lock);
893 veth_kick_statemachine(cnx);
894 spin_unlock_irq(&cnx->lock);
895 }
896
897 /* Wait for the state machine to run. */
898 flush_scheduled_work();
899} 890}
900 891
901static void veth_destroy_connection(struct veth_lpar_connection *cnx) 892static void veth_destroy_connection(struct veth_lpar_connection *cnx)
@@ -1009,15 +1000,10 @@ static int veth_get_settings(struct net_device *dev, struct ethtool_cmd *ecmd)
1009 return 0; 1000 return 0;
1010} 1001}
1011 1002
1012static u32 veth_get_link(struct net_device *dev)
1013{
1014 return 1;
1015}
1016
1017static const struct ethtool_ops ops = { 1003static const struct ethtool_ops ops = {
1018 .get_drvinfo = veth_get_drvinfo, 1004 .get_drvinfo = veth_get_drvinfo,
1019 .get_settings = veth_get_settings, 1005 .get_settings = veth_get_settings,
1020 .get_link = veth_get_link, 1006 .get_link = ethtool_op_get_link,
1021}; 1007};
1022 1008
1023static const struct net_device_ops veth_netdev_ops = { 1009static const struct net_device_ops veth_netdev_ops = {
@@ -1524,7 +1510,7 @@ static void veth_receive(struct veth_lpar_connection *cnx,
1524 1510
1525 skb_put(skb, length); 1511 skb_put(skb, length);
1526 skb->protocol = eth_type_trans(skb, dev); 1512 skb->protocol = eth_type_trans(skb, dev);
1527 skb->ip_summed = CHECKSUM_NONE; 1513 skb_checksum_none_assert(skb);
1528 netif_rx(skb); /* send it up */ 1514 netif_rx(skb); /* send it up */
1529 dev->stats.rx_packets++; 1515 dev->stats.rx_packets++;
1530 dev->stats.rx_bytes += length; 1516 dev->stats.rx_bytes += length;
@@ -1605,7 +1591,7 @@ static int veth_probe(struct vio_dev *vdev, const struct vio_device_id *id)
1605 } 1591 }
1606 veth_dev[i] = dev; 1592 veth_dev[i] = dev;
1607 1593
1608 port = (struct veth_port*)netdev_priv(dev); 1594 port = netdev_priv(dev);
1609 1595
1610 /* Start the state machine on each connection on this vlan. If we're 1596 /* Start the state machine on each connection on this vlan. If we're
1611 * the first dev to do so this will commence link negotiation */ 1597 * the first dev to do so this will commence link negotiation */
@@ -1658,15 +1644,14 @@ static void __exit veth_module_cleanup(void)
1658 /* Disconnect our "irq" to stop events coming from the Hypervisor. */ 1644 /* Disconnect our "irq" to stop events coming from the Hypervisor. */
1659 HvLpEvent_unregisterHandler(HvLpEvent_Type_VirtualLan); 1645 HvLpEvent_unregisterHandler(HvLpEvent_Type_VirtualLan);
1660 1646
1661 /* Make sure any work queued from Hypervisor callbacks is finished. */
1662 flush_scheduled_work();
1663
1664 for (i = 0; i < HVMAXARCHITECTEDLPS; ++i) { 1647 for (i = 0; i < HVMAXARCHITECTEDLPS; ++i) {
1665 cnx = veth_cnx[i]; 1648 cnx = veth_cnx[i];
1666 1649
1667 if (!cnx) 1650 if (!cnx)
1668 continue; 1651 continue;
1669 1652
1653 /* Cancel work queued from Hypervisor callbacks */
1654 cancel_delayed_work_sync(&cnx->statemachine_wq);
1670 /* Remove the connection from sysfs */ 1655 /* Remove the connection from sysfs */
1671 kobject_del(&cnx->kobject); 1656 kobject_del(&cnx->kobject);
1672 /* Drop the driver's reference to the connection */ 1657 /* Drop the driver's reference to the connection */