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

Commit 152ce47d authored by Nathan Fontenot's avatar Nathan Fontenot Committed by David S. Miller
Browse files

ibmvnic: Check adapter state during ibmvnic_poll



We do not want to process any receive frames if the ibmvnic_poll
routine is invoked while a reset is in process. Also, before
replenishing the rx pools in the ibmvnic_poll, we want to
make sure the adapter is not in the process of closing.

Signed-off-by: default avatarNathan Fontenot <nfont@linux.vnet.ibm.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent f185a49a
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -1435,6 +1435,10 @@ static int ibmvnic_poll(struct napi_struct *napi, int budget)
	struct ibmvnic_adapter *adapter = netdev_priv(netdev);
	int scrq_num = (int)(napi - adapter->napi);
	int frames_processed = 0;

	if (adapter->resetting)
		return 0;

restart_poll:
	while (frames_processed < budget) {
		struct sk_buff *skb;
@@ -1493,6 +1497,8 @@ static int ibmvnic_poll(struct napi_struct *napi, int budget)
		netdev->stats.rx_bytes += length;
		frames_processed++;
	}

	if (adapter->state != VNIC_CLOSING)
		replenish_rx_pool(adapter, &adapter->rx_pool[scrq_num]);

	if (frames_processed < budget) {