1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
---
layout: page
title: EFADV_CREATE_DRIVER_QP
section: 3
tagline: Verbs
date: 2019-01-23
header: "EFA Direct Verbs Manual"
footer: efa
---
# NAME
efadv_create_driver_qp - Create EFA specific Queue Pair
# SYNOPSIS
```c
#include <infiniband/efadv.h>
struct ibv_qp *efadv_create_driver_qp(struct ibv_pd *ibvpd,
struct ibv_qp_init_attr *attr,
uint32_t driver_qp_type);
```
# DESCRIPTION
**efadv_create_driver_qp()**
Create device-specific Queue Pairs.
Scalable Reliable Datagram (SRD) transport provides reliable out-of-order
delivery, transparently utilizing multiple network paths to reduce network tail
latency. Its interface is similar to UD, in particular it supports message size
up to MTU, with error handling extended to support reliable communication.
*driver_qp_type*
: The type of QP to be created:
EFADV_QP_DRIVER_TYPE_SRD:
Create an SRD QP.
# RETURN VALUE
efadv_create_driver_qp() returns a pointer to the created QP, or NULL if the request fails.
# SEE ALSO
**efadv**(7)
# AUTHORS
Gal Pressman <galpress@amazon.com>
|