]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
NTB: perf: Fix support for hardware that doesn't have port numbers
authorLogan Gunthorpe <logang@deltatee.com>
Wed, 9 Jan 2019 19:22:31 +0000 (12:22 -0700)
committerJon Mason <jdmason@kudzu.us>
Sat, 6 Jun 2020 00:02:09 +0000 (20:02 -0400)
Legacy drivers do not have port numbers (but is reliably only two ports)
and was broken by the recent commit that added mult-port support to
ntb_perf. This is especially important to support the cross link
topology which is perfectly symmetric and cannot assign unique port
numbers easily.

Hardware that returns zero for both the local port and the peer should
just always use gidx=0 for the only peer.

Fixes: 5648e56d03fa ("NTB: ntb_perf: Add full multi-port NTB API support")
Signed-off-by: Logan Gunthorpe <logang@deltatee.com>
Acked-by: Allen Hubbe <allenbh@gmail.com>
Tested-by: Alexander Fomichev <fomichev.ru@gmail.com>
Signed-off-by: Jon Mason <jdmason@kudzu.us>
drivers/ntb/test/ntb_perf.c

index ec87a28ae239c46cfc910d826e9bde237e86c989..e38dc695d57f0004214157491dc9568efc0a361e 100644 (file)
@@ -1453,6 +1453,16 @@ static int perf_init_peers(struct perf_ctx *perf)
        if (perf->gidx == -1)
                perf->gidx = pidx;
 
+       /*
+        * Hardware with only two ports may not have unique port
+        * numbers. In this case, the gidxs should all be zero.
+        */
+       if (perf->pcnt == 1 &&  ntb_port_number(perf->ntb) == 0 &&
+           ntb_peer_port_number(perf->ntb, 0) == 0) {
+               perf->gidx = 0;
+               perf->peers[0].gidx = 0;
+       }
+
        for (pidx = 0; pidx < perf->pcnt; pidx++) {
                ret = perf_setup_peer_mw(&perf->peers[pidx]);
                if (ret)