]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
NTB: Fix the default port and peer numbers for legacy drivers
authorLogan Gunthorpe <logang@deltatee.com>
Wed, 9 Jan 2019 19:22:28 +0000 (12:22 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 24 Jun 2020 15:48:30 +0000 (17:48 +0200)
[ Upstream commit fc8b086d9dbd57458d136c4fa70ee26f832c3a2e ]

When the commit adding ntb_default_port_number() and
ntb_default_peer_port_number()  entered the kernel there was no
users of it so it was impossible to tell what the API needed.

When a user finally landed a year later (ntb_pingpong) there were
more NTB topologies were created and no consideration was considered
to how other drivers had changed.

Now that there is a user it can be fixed to provide a sensible default
for the legacy drivers that do not implement ntb_{peer_}port_number().
Seeing ntb_pingpong doesn't check error codes returning EINVAL was also
not sensible.

Patches for ntb_pingpong and ntb_perf follow (which are broken
otherwise) to support hardware that doesn't have port numbers. This is
important not only to not break support with existing drivers but for
the cross link topology which, due to its perfect symmetry, cannot
assign unique port numbers to each side.

Fixes: 1e5301196a88 ("NTB: Add indexed ports NTB API")
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>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/ntb/core.c

index 2581ab724c34771e05f137947e71c86d8ccfb886..c9a0912b175fa7fb8593878dbb3537e941b6d1e9 100644 (file)
@@ -214,10 +214,8 @@ int ntb_default_port_number(struct ntb_dev *ntb)
        case NTB_TOPO_B2B_DSD:
                return NTB_PORT_SEC_DSD;
        default:
-               break;
+               return 0;
        }
-
-       return -EINVAL;
 }
 EXPORT_SYMBOL(ntb_default_port_number);
 
@@ -240,10 +238,8 @@ int ntb_default_peer_port_number(struct ntb_dev *ntb, int pidx)
        case NTB_TOPO_B2B_DSD:
                return NTB_PORT_PRI_USD;
        default:
-               break;
+               return 0;
        }
-
-       return -EINVAL;
 }
 EXPORT_SYMBOL(ntb_default_peer_port_number);