freebsd-dev/contrib/ofed/libmlx5/mlx5dv.7
Hans Petter Selasky d6b92ffa99 OFED user-space import and update for use with Linux-4.9 compatible RDMA
kernel APIs.

List of sources used:

1) rdma-core was cloned from "https://github.com/linux-rdma/rdma-core.git"
Top commit d65138ef93af30b3ea249f3a84aa6a24ba7f8a75

2) OpenSM was cloned from git://git.openfabrics.org/~halr/opensm.git
Top commit 85f841cf209f791c89a075048a907020e924528d

3) libibmad was cloned from "git://git.openfabrics.org/~iraweiny/libibmad.git"
Tag 1.3.13 with some additional patches from Mellanox.

4) infiniband-diags was cloned from "git://git.openfabrics.org/~iraweiny/infiniband-diags.git"
Tag 1.6.7 with some additional patches from Mellanox.

Added the required Makefiles for building and installing.

Sponsored by:	Mellanox Technologies
2017-08-02 16:00:30 +00:00

45 lines
1.7 KiB
Groff

.\" -*- nroff -*-
.\" Licensed under the OpenIB.org (MIT) - See COPYING.md
.\"
.TH MLX5DV 7 2017-02-02 1.0.0
.SH "NAME"
mlx5dv \- Direct verbs for mlx5 devices
.br
This is low level access to mlx5 devices to perform data path operations,
without general branching performed by \fBibv_post_send\fR(3).
.SH "DESCRIPTION"
The libibverbs API is an abstract one. It is agnostic to any underlying
provider specific implementation. While this abstraction has the advantage
of user applications portability it has a performance penalty. For some
applications optimizing performance is more important than portability.
The mlx5 direct verbs API is intended for such applications.
It exposes mlx5 specific low level data path (send/receive/completion)
operations, allowing the application to bypass the libibverbs data path API.
This interface consists from one hardware specific header file
with relevant inline functions and conversion logic from ibverbs structures
to mlx5 specific structures.
The direct include of mlx5dv.h together with linkage to mlx5 library will
allow usage of this new interface.
Once an application uses the direct flow the locking scheme is fully managed
by itself. There is an expectation that no mixed flows in the data path for both
direct/non-direct access will be by same application.
.SH "NOTES"
All Mellanox NIC devices starting from Connect-IB (Connect-IB,
ConnectX-4, ConnectX-4Lx, ConnectX-5, ...) implement the mlx5 API,
thus using the mlx5 direct verbs does not limit the applications
to a single NIC HW device thus keeping some level of portability.
.SH "SEE ALSO"
.BR ibv_post_send (3),
.BR verbs (7)
.SH "AUTHORS"
.TP
Leon Romanovsky <leonro@mellanox.com>