Skip to content

Commit

Permalink
net: hns3: split hclge_reset() into preparing and rebuilding part
Browse files Browse the repository at this point in the history
hclge_reset() is a little bloated, and the process of PF FLR will
be separated from the reset task later. So this patch splits
hclge_reset() into hclge_reset_prepare() and hclge_reset_rebuild(),
then FLR can also reuse these two functions.

BTW, since hclge_clear_reset_cause() and hclge_reset_prepare_up()
will not affect the device, so in hclge_reset_rebuild(), these
functions are called without rtnl_lock.

Signed-off-by: Huazhong Tan <tanhuazhong@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Huazhong Tan authored and David S. Miller committed Jan 11, 2020
1 parent 6821af8 commit d4fa065
Showing 1 changed file with 34 additions and 25 deletions.
59 changes: 34 additions & 25 deletions drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -3782,10 +3782,9 @@ static int hclge_reset_stack(struct hclge_dev *hdev)
return hclge_notify_client(hdev, HNAE3_RESTORE_CLIENT);
}

static void hclge_reset(struct hclge_dev *hdev)
static int hclge_reset_prepare(struct hclge_dev *hdev)
{
struct hnae3_ae_dev *ae_dev = pci_get_drvdata(hdev->pdev);
enum hnae3_reset_type reset_level;
int ret;

/* Initialize ae_dev reset status as well, in case enet layer wants to
Expand All @@ -3796,65 +3795,63 @@ static void hclge_reset(struct hclge_dev *hdev)
/* perform reset of the stack & ae device for a client */
ret = hclge_notify_roce_client(hdev, HNAE3_DOWN_CLIENT);
if (ret)
goto err_reset;
return ret;

ret = hclge_reset_prepare_down(hdev);
if (ret)
goto err_reset;
return ret;

rtnl_lock();
ret = hclge_notify_client(hdev, HNAE3_DOWN_CLIENT);
if (ret)
goto err_reset_lock;

rtnl_unlock();

ret = hclge_reset_prepare_wait(hdev);
if (ret)
goto err_reset;
return ret;

if (hclge_reset_wait(hdev))
goto err_reset;
return hclge_reset_prepare_wait(hdev);
}

static int hclge_reset_rebuild(struct hclge_dev *hdev)
{
struct hnae3_ae_dev *ae_dev = pci_get_drvdata(hdev->pdev);
enum hnae3_reset_type reset_level;
int ret;

hdev->rst_stats.hw_reset_done_cnt++;

ret = hclge_notify_roce_client(hdev, HNAE3_UNINIT_CLIENT);
if (ret)
goto err_reset;
return ret;

rtnl_lock();

ret = hclge_reset_stack(hdev);
rtnl_unlock();
if (ret)
goto err_reset_lock;
return ret;

hclge_clear_reset_cause(hdev);

ret = hclge_reset_prepare_up(hdev);
if (ret)
goto err_reset_lock;
return ret;

rtnl_unlock();

ret = hclge_notify_roce_client(hdev, HNAE3_INIT_CLIENT);
/* ignore RoCE notify error if it fails HCLGE_RESET_MAX_FAIL_CNT - 1
* times
*/
if (ret &&
hdev->rst_stats.reset_fail_cnt < HCLGE_RESET_MAX_FAIL_CNT - 1)
goto err_reset;
return ret;

rtnl_lock();

ret = hclge_notify_client(hdev, HNAE3_UP_CLIENT);
if (ret)
goto err_reset_lock;

rtnl_unlock();
if (ret)
return ret;

ret = hclge_notify_roce_client(hdev, HNAE3_UP_CLIENT);
if (ret)
goto err_reset;
return ret;

hdev->last_reset_time = jiffies;
hdev->rst_stats.reset_fail_cnt = 0;
Expand All @@ -3871,10 +3868,22 @@ static void hclge_reset(struct hclge_dev *hdev)
if (reset_level != HNAE3_NONE_RESET)
set_bit(reset_level, &hdev->reset_request);

return 0;
}

static void hclge_reset(struct hclge_dev *hdev)
{
if (hclge_reset_prepare(hdev))
goto err_reset;

if (hclge_reset_wait(hdev))
goto err_reset;

if (hclge_reset_rebuild(hdev))
goto err_reset;

return;

err_reset_lock:
rtnl_unlock();
err_reset:
if (hclge_reset_err_handle(hdev))
hclge_reset_task_schedule(hdev);
Expand Down

0 comments on commit d4fa065

Please sign in to comment.