]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
NTB: ntb_transport: Free MWs in ntb_transport_link_cleanup()
authorJoey Zhang <joey.zhang@microchip.com>
Mon, 7 Jan 2019 03:12:56 +0000 (11:12 +0800)
committerJon Mason <jdmason@kudzu.us>
Mon, 11 Feb 2019 14:26:05 +0000 (09:26 -0500)
If NTB peer host crashes or reboots, the NTB transport link will be
down and the MWs of NTB transport will be invalid. But the
ntb_transport_link_cleanup() does not free these invalid MWs. When
the NTB peer host is recovered later, NTB transport link will be
up and the ntb_set_mw() will not reset up MWs. Because the MWs of
NTB transport are invalid, the NTB transport will not work.

We can fix it by freeing MWs when NTB transport link is down, then
the ntb_set_mw() will reset up MWs when NTB transport link is up.

Signed-off-by: Joey Zhang <joey.zhang@microchip.com>
Reviewed-by: Logan Gunthorpe <logang@deltatee.com>
Signed-off-by: Jon Mason <jdmason@kudzu.us>
drivers/ntb/ntb_transport.c

index 3bfdb4562408879fd04f340b05e84673c4da2232..6e8902d03a690da5feb6ad08ab92829b9adb0c29 100644 (file)
@@ -862,6 +862,9 @@ static void ntb_transport_link_cleanup(struct ntb_transport_ctx *nt)
        if (!nt->link_is_up)
                cancel_delayed_work_sync(&nt->link_work);
 
+       for (i = 0; i < nt->mw_count; i++)
+               ntb_free_mw(nt, i);
+
        /* The scratchpad registers keep the values if the remote side
         * goes down, blast them now to give them a sane value the next
         * time they are accessed