mirror of
https://github.com/torvalds/linux.git
synced 2026-09-25 21:21:09 -04:00
net/ibmvnic: Fix typo in retry check
This conditional is missing a bang, with the intent
being to break when the retry count reaches zero.
Fixes: 476d96ca9c ("ibmvnic: Bound waits for device queries")
Suggested-by: Juliet Kim <[email protected]>
Signed-off-by: Thomas Falcon <[email protected]>
Signed-off-by: Jakub Kicinski <[email protected]>
This commit is contained in:
committed by
Jakub Kicinski
parent
2beb6d2901
commit
8f9cc1ee29
@@ -184,7 +184,7 @@ static int ibmvnic_wait_for_completion(struct ibmvnic_adapter *adapter,
|
||||
netdev_err(netdev, "Device down!\n");
|
||||
return -ENODEV;
|
||||
}
|
||||
if (retry--)
|
||||
if (!retry--)
|
||||
break;
|
||||
if (wait_for_completion_timeout(comp_done, div_timeout))
|
||||
return 0;
|
||||
|
||||
Reference in New Issue
Block a user