mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
ntb_hw_switchtec: Remove redundant steps of switchtec_ntb_reinit_peer() function
When a re-initialization is caused by a link event, the driver will re-setup the shared memory window. But at that time, the shared memory is still valid, and it's unnecessary to free, reallocate and then initialize it again. We only need to reconfigure the hardware registers. Remove the redundant steps from switchtec_ntb_reinit_peer() function. Signed-off-by: Joey Zhang <joey.zhang@microchip.com> Signed-off-by: Wesley Sheng <wesley.sheng@microchip.com> Reviewed-by: Logan Gunthorpe <logang@deltatee.com> Signed-off-by: Jon Mason <jdmason@kudzu.us>
This commit is contained in:
parent
18c8c0954d
commit
28e339f100
1 changed files with 7 additions and 4 deletions
|
@ -1457,10 +1457,13 @@ static void switchtec_ntb_deinit_db_msg_irq(struct switchtec_ntb *sndev)
|
|||
|
||||
static int switchtec_ntb_reinit_peer(struct switchtec_ntb *sndev)
|
||||
{
|
||||
dev_info(&sndev->stdev->dev, "peer reinitialized\n");
|
||||
switchtec_ntb_deinit_shared_mw(sndev);
|
||||
switchtec_ntb_init_mw(sndev);
|
||||
return switchtec_ntb_init_shared_mw(sndev);
|
||||
int rc;
|
||||
|
||||
dev_info(&sndev->stdev->dev, "reinitialize shared memory window\n");
|
||||
rc = config_rsvd_lut_win(sndev, sndev->mmio_peer_ctrl, 0,
|
||||
sndev->self_partition,
|
||||
sndev->self_shared_dma);
|
||||
return rc;
|
||||
}
|
||||
|
||||
static int switchtec_ntb_add(struct device *dev,
|
||||
|
|
Loading…
Reference in a new issue