]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
ibmvnic: remove duplicate napi_schedule call in open function
authorLijun Pan <lijunp213@gmail.com>
Wed, 14 Apr 2021 07:46:16 +0000 (02:46 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 28 Apr 2021 11:16:51 +0000 (13:16 +0200)
commit 7c451f3ef676c805a4b77a743a01a5c21a250a73 upstream.

Remove the unnecessary napi_schedule() call in __ibmvnic_open() since
interrupt_rx() calls napi_schedule_prep/__napi_schedule during every
receive interrupt.

Fixes: ed651a10875f ("ibmvnic: Updated reset handling")
Signed-off-by: Lijun Pan <lijunp213@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/net/ethernet/ibm/ibmvnic.c

index 0eb06750a5d63b263ed42b8b087e4b17322c830a..9f72cd3b1d244a9571d53f77e045362e0a1f05f7 100644 (file)
@@ -1099,11 +1099,6 @@ static int __ibmvnic_open(struct net_device *netdev)
 
        netif_tx_start_all_queues(netdev);
 
-       if (prev_state == VNIC_CLOSED) {
-               for (i = 0; i < adapter->req_rx_queues; i++)
-                       napi_schedule(&adapter->napi[i]);
-       }
-
        adapter->state = VNIC_OPEN;
        return rc;
 }