]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit
Optimize ibcore RoCE address handle creation from user-space.
authorHans Petter Selasky <hselasky@FreeBSD.org>
Mon, 5 Mar 2018 14:34:52 +0000 (14:34 +0000)
committerHans Petter Selasky <hselasky@FreeBSD.org>
Mon, 5 Mar 2018 14:34:52 +0000 (14:34 +0000)
commit1456d97c013eeae0e6864cc97e3b4666060ede18
tree87d379721b576d1b348f99e3b868a8e9200265c6
parentbf8641fedb55b1121814475c73e745c702791da0
Optimize ibcore RoCE address handle creation from user-space.

Creating a UD address handle from user-space or from the kernel-space,
when the link layer is ethernet, requires resolving the remote L3
address into a L2 address. Doing this from the kernel is easy because
the required ARP(IPv4) and ND6(IPv6) address resolving APIs are readily
available. In userspace such an interface does not exist and kernel
help is required.

It should be noted that in an IP-based GID environment, the GID itself
does not contain all the information needed to resolve the destination
IP address. For example information like VLAN ID and SCOPE ID, is not
part of the GID and must be fetched from the GID attributes. Therefore
a source GID should always be referred to as a GID index. Instead of
going through various racy steps to obtain information about the
GID attributes from user-space, this is now all done by the kernel.

This patch optimises the L3 to L2 address resolving using the existing
create address handle uverbs interface, retrieving back the L2 address
as an additional user-space information structure.

This commit combines the following Linux upstream commits:

IB/core: Let create_ah return extended response to user
IB/core: Change ib_resolve_eth_dmac to use it in create AH
IB/mlx5: Make create/destroy_ah available to userspace
IB/mlx5: Use kernel driver to help userspace create ah
IB/mlx5: Report that device has udata response in create_ah

MFC after: 1 week
Sponsored by: Mellanox Technologies
12 files changed:
sys/dev/cxgbe/iw_cxgbe/provider.c
sys/dev/mlx4/mlx4_ib/mlx4_ib.h
sys/dev/mlx4/mlx4_ib/mlx4_ib_ah.c
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
sys/dev/mlx5/mlx5_ib/mlx5_ib_ah.c
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
sys/dev/mthca/mthca_provider.c
sys/ofed/drivers/infiniband/core/core_priv.h
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
sys/ofed/drivers/infiniband/core/ib_verbs.c
sys/ofed/include/rdma/ib_verbs.h
sys/ofed/include/uapi/rdma/mlx5-abi.h