ibmvnic: fix missing unlock on error in __ibmvnic_reset()
authorWei Yongjun <weiyongjun1@huawei.com>
Thu, 18 May 2017 15:24:52 +0000 (15:24 +0000)
committerDavid S. Miller <davem@davemloft.net>
Thu, 18 May 2017 19:18:31 +0000 (15:18 -0400)
Add the missing unlock before return from function __ibmvnic_reset()
in the error handling case.

Fixes: ed651a10875f ("ibmvnic: Updated reset handling")
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Reviewed-by: Nathan Fontenot <nfont@linux.vnet.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/ibm/ibmvnic.c

index 4f2d329..27f7933 100644 (file)
@@ -1313,6 +1313,7 @@ static void __ibmvnic_reset(struct work_struct *work)
 
        if (rc) {
                free_all_rwi(adapter);
+               mutex_unlock(&adapter->reset_lock);
                return;
        }