.\" Automatically generated by Pandoc 3.1.3 .\" .\" Define V font for inline verbatim, using C font in formats .\" that render this, and otherwise B font. .ie "\f[CB]x\f[]"x" \{\ . ftr V B . ftr VI BI . ftr VB B . ftr VBI BI .\} .el \{\ . ftr V CR . ftr VI CI . ftr VB CB . ftr VBI CBI .\} .TH "mlx5dv_create_mkey / mlx5dv_destroy_mkey" "3" "" "" "" .hy .SH NAME .PP mlx5dv_create_mkey - Creates an indirect mkey .PP mlx5dv_destroy_mkey - Destroys an indirect mkey .SH SYNOPSIS .IP .nf \f[C] #include struct mlx5dv_mkey_init_attr { struct ibv_pd *pd; uint32_t create_flags; uint16_t max_entries; }; struct mlx5dv_mkey { uint32_t lkey; uint32_t rkey; }; struct mlx5dv_mkey * mlx5dv_create_mkey(struct mlx5dv_mkey_init_attr *mkey_init_attr); int mlx5dv_destroy_mkey(struct mlx5dv_mkey *mkey); \f[R] .fi .SH DESCRIPTION .PP Create / destroy an indirect mkey. .PP Create an indirect mkey to enable application uses its specific device functionality. .SH ARGUMENTS .PP ##mkey_init_attr## .TP \f[I]pd\f[R] ibv protection domain. .TP \f[I]create_flags\f[R] MLX5DV_MKEY_INIT_ATTR_FLAGS_INDIRECT: Indirect mkey is being created. MLX5DV_MKEY_INIT_ATTR_FLAGS_BLOCK_SIGNATURE: Enable block signature offload support for mkey. MLX5DV_MKEY_INIT_ATTR_FLAGS_CRYPTO: Enable crypto offload support for mkey. Setting this flag means that crypto operations will be done and hence, must be configured. I.e. if this flag is set and the MKey was not configured for crypto properties using \f[B]mlx5dv_wr_set_mkey_crypto()\f[R], then running traffic with the MKey will fail, generating a CQE with error. MLX5DV_MKEY_INIT_ATTR_FLAGS_UPDATE_TAG: Enable update tag support for mkey. Setting this flag allows an application to set the mkey tag post of creating the mkey. If the kernel does not support updating the mkey tag, mkey creation will fail. MLX5DV_MKEY_INIT_ATTR_FLAGS_REMOTE_INVALIDATE: Enable remote invalidation support for mkey. .TP \f[I]max_entries\f[R] Requested max number of pointed entries by this indirect mkey. The function will update the \f[I]mkey_init_attr->max_entries\f[R] with the actual mkey value that was created; it will be greater than or equal to the value requested. .SH RETURN VALUE .PP Upon success \f[I]mlx5dv_create_mkey\f[R] will return a new \f[I]struct mlx5dv_mkey\f[R] on error NULL will be returned and errno will be set. .PP Upon success destroy 0 is returned or the value of errno on a failure. .SH Notes .PP To let this functionality works a DEVX context should be opened by using \f[I]mlx5dv_open_device\f[R]. .PP The created indirect mkey can\[ga]t work with scatter to CQE feature, consider \f[I]mlx5dv_create_qp()\f[R] with MLX5DV_QP_CREATE_DISABLE_SCATTER_TO_CQE for small messages. .SH SEE ALSO .PP \f[B]mlx5dv_open_device\f[R](3), \f[B]mlx5dv_create_qp\f[R](3) .PP #AUTHOR .PP Yishai Hadas