]> git.baikalelectronics.ru Git - kernel.git/commit
RDMA/core: Do not use invalid destination in determining port reuse
authorTatyana Nikolova <tatyana.e.nikolova@intel.com>
Mon, 12 Mar 2018 22:14:02 +0000 (17:14 -0500)
committerDoug Ledford <dledford@redhat.com>
Wed, 14 Mar 2018 19:57:05 +0000 (15:57 -0400)
commit550851bc7ef6d0a769955f72230182d2a3cff248
treeed513ca3e4cc328a449d3e4351bbbfad0c9408e5
parent98956077dc8b23c75ab98a0fa9c06ddccb47dd28
RDMA/core: Do not use invalid destination in determining port reuse

cma_port_is_unique() allows local port reuse if the quad (source
address and port, destination address and port) for this connection
is unique. However, if the destination info is zero or unspecified, it
can't make a correct decision but still allows port reuse. For example,
sometimes rdma_bind_addr() is called with unspecified destination and
reusing the port can lead to creating a connection with a duplicate quad,
after the destination is resolved. The issue manifests when MPI scale-up
tests hang after the duplicate quad is used.

Set the destination address family and add checks for zero destination
address and port to prevent source port reuse based on invalid destination.

Fixes: faaae24920e4 ("IB/cma: Allow port reuse for rdma_id")
Reviewed-by: Sean Hefty <sean.hefty@intel.com>
Signed-off-by: Tatyana Nikolova <tatyana.e.nikolova@intel.com>
Signed-off-by: Shiraz Saleem <shiraz.saleem@intel.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
drivers/infiniband/core/cma.c