Skip to content

Commit

Permalink
ibmvnic: Replace is_closed with state field
Browse files Browse the repository at this point in the history
Replace the is_closed flag in the ibmvnic adapter strcut with a
more comprehensive state field that tracks the current state of
the driver.

Signed-off-by: Nathan Fontenot <nfont@linux.vnet.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Nathan Fontenot authored and David S. Miller committed May 3, 2017
1 parent bfc32f2 commit 90c8014
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 9 deletions.
20 changes: 13 additions & 7 deletions drivers/net/ethernet/ibm/ibmvnic.c
Original file line number Diff line number Diff line change
Expand Up @@ -669,7 +669,9 @@ static int ibmvnic_open(struct net_device *netdev)
struct ibmvnic_adapter *adapter = netdev_priv(netdev);
int i, rc;

if (adapter->is_closed) {
adapter->state = VNIC_OPENING;

if (adapter->state == VNIC_CLOSED) {
rc = ibmvnic_init(adapter);
if (rc)
return rc;
Expand Down Expand Up @@ -704,7 +706,7 @@ static int ibmvnic_open(struct net_device *netdev)
release_resources(adapter);
} else {
netif_tx_start_all_queues(netdev);
adapter->is_closed = false;
adapter->state = VNIC_OPEN;
}

return rc;
Expand Down Expand Up @@ -733,7 +735,7 @@ static int ibmvnic_close(struct net_device *netdev)
int rc = 0;
int i;

adapter->closing = true;
adapter->state = VNIC_CLOSING;
disable_sub_crqs(adapter);

if (adapter->napi) {
Expand All @@ -748,8 +750,7 @@ static int ibmvnic_close(struct net_device *netdev)

release_resources(adapter);

adapter->is_closed = true;
adapter->closing = false;
adapter->state = VNIC_CLOSED;
return rc;
}

Expand Down Expand Up @@ -1860,7 +1861,8 @@ static int pending_scrq(struct ibmvnic_adapter *adapter,
{
union sub_crq *entry = &scrq->msgs[scrq->cur];

if (entry->generic.first & IBMVNIC_CRQ_CMD_RSP || adapter->closing)
if (entry->generic.first & IBMVNIC_CRQ_CMD_RSP ||
adapter->state == VNIC_CLOSING)
return 1;
else
return 0;
Expand Down Expand Up @@ -3353,6 +3355,7 @@ static int ibmvnic_probe(struct vio_dev *dev, const struct vio_device_id *id)
return -ENOMEM;

adapter = netdev_priv(netdev);
adapter->state = VNIC_PROBING;
dev_set_drvdata(&dev->dev, netdev);
adapter->vdev = dev;
adapter->netdev = netdev;
Expand Down Expand Up @@ -3380,7 +3383,6 @@ static int ibmvnic_probe(struct vio_dev *dev, const struct vio_device_id *id)
}

netdev->mtu = adapter->req_mtu - ETH_HLEN;
adapter->is_closed = false;

rc = register_netdev(netdev);
if (rc) {
Expand All @@ -3390,6 +3392,7 @@ static int ibmvnic_probe(struct vio_dev *dev, const struct vio_device_id *id)
}
dev_info(&dev->dev, "ibmvnic registered\n");

adapter->state = VNIC_PROBED;
return 0;
}

Expand All @@ -3398,12 +3401,15 @@ static int ibmvnic_remove(struct vio_dev *dev)
struct net_device *netdev = dev_get_drvdata(&dev->dev);
struct ibmvnic_adapter *adapter = netdev_priv(netdev);

adapter->state = VNIC_REMOVING;
unregister_netdev(netdev);

release_resources(adapter);
release_sub_crqs(adapter);
release_crq_queue(adapter);

adapter->state = VNIC_REMOVED;

free_netdev(netdev);
dev_set_drvdata(&dev->dev, NULL);

Expand Down
12 changes: 10 additions & 2 deletions drivers/net/ethernet/ibm/ibmvnic.h
Original file line number Diff line number Diff line change
Expand Up @@ -913,6 +913,15 @@ struct ibmvnic_error_buff {
__be32 error_id;
};

enum vnic_state {VNIC_PROBING = 1,
VNIC_PROBED,
VNIC_OPENING,
VNIC_OPEN,
VNIC_CLOSING,
VNIC_CLOSED,
VNIC_REMOVING,
VNIC_REMOVED};

struct ibmvnic_adapter {
struct vio_dev *vdev;
struct net_device *netdev;
Expand Down Expand Up @@ -962,7 +971,6 @@ struct ibmvnic_adapter {
u64 promisc;

struct ibmvnic_tx_pool *tx_pool;
bool closing;
struct completion init_done;
int init_done_rc;

Expand Down Expand Up @@ -1011,5 +1019,5 @@ struct ibmvnic_adapter {
struct work_struct ibmvnic_xport;
struct tasklet_struct tasklet;
bool failover;
bool is_closed;
enum vnic_state state;
};

0 comments on commit 90c8014

Please sign in to comment.