mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-01 10:33:27 +00:00
qeth: Fix retry logic in hardsetup
The previous code did never retry any idx setup unless retries were done for device offline/online at the beginning of the function. Signed-off-by: Stefan Raspl <raspl@linux.vnet.ibm.com> Signed-off-by: Frank Blaschka <frank.blaschka@de.ibm.com> Reviewed-by: Ursula Braun <ursula.braun@de.ibm.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
9acefd17cb
commit
6ebb7f8d79
1 changed files with 3 additions and 3 deletions
|
@ -4765,14 +4765,14 @@ static struct ccw_driver qeth_ccw_driver = {
|
|||
|
||||
int qeth_core_hardsetup_card(struct qeth_card *card)
|
||||
{
|
||||
int retries = 0;
|
||||
int retries = 3;
|
||||
int rc;
|
||||
|
||||
QETH_DBF_TEXT(SETUP, 2, "hrdsetup");
|
||||
atomic_set(&card->force_alloc_skb, 0);
|
||||
qeth_update_from_chp_desc(card);
|
||||
retry:
|
||||
if (retries)
|
||||
if (retries < 3)
|
||||
QETH_DBF_MESSAGE(2, "%s Retrying to do IDX activates.\n",
|
||||
dev_name(&card->gdev->dev));
|
||||
ccw_device_set_offline(CARD_DDEV(card));
|
||||
|
@ -4794,7 +4794,7 @@ retriable:
|
|||
return rc;
|
||||
} else if (rc) {
|
||||
QETH_DBF_TEXT_(SETUP, 2, "1err%d", rc);
|
||||
if (++retries > 3)
|
||||
if (--retries < 0)
|
||||
goto out;
|
||||
else
|
||||
goto retry;
|
||||
|
|
Loading…
Reference in a new issue