Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e876a8a7 authored by Mick Tarsel's avatar Mick Tarsel Committed by David S. Miller
Browse files

ibmvnic: Set state UP



State is initially reported as UNKNOWN. Before register call
netif_carrier_off(). Once the device is opened, call netif_carrier_on() in
order to set the state to UP.

Signed-off-by: default avatarMick Tarsel <mjtarsel@linux.vnet.ibm.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 21a2774e
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -927,6 +927,7 @@ static int ibmvnic_open(struct net_device *netdev)
	}

	rc = __ibmvnic_open(netdev);
	netif_carrier_on(netdev);
	mutex_unlock(&adapter->reset_lock);

	return rc;
@@ -3899,6 +3900,7 @@ static int ibmvnic_probe(struct vio_dev *dev, const struct vio_device_id *id)
	if (rc)
		goto ibmvnic_init_fail;

	netif_carrier_off(netdev);
	rc = register_netdev(netdev);
	if (rc) {
		dev_err(&dev->dev, "failed to register netdev rc=%d\n", rc);