Go to main content

man pages section 3: Library Interfaces and Headers

Exit Print View

Updated: Wednesday, July 27, 2022
 
 

ibv_create_ah_from_wc (3)

Name

ibv_create_ah_from_wc - initialize or create an address handle (AH) from a work completion

Synopsis

#include <infiniband/verbs.h>

int ibv_init_ah_from_wc(struct ibv_context *context, uint8_t port_num,
struct ibv_wc *wc, struct ibv_grh *grh,
struct ibv_ah_attr *ah_attr);

struct ibv_ah *ibv_create_ah_from_wc(struct ibv_pd *pd,
struct ibv_wc *wc,
struct ibv_grh *grh,
uint8_t port_num);

Description

Libibverbs Programmer's Manual                        IBV_CREATE_AH_FROM_WC(3)



NAME
       ibv_init_ah_from_wc,  ibv_create_ah_from_wc  -  initialize or create an
       address handle (AH) from a work completion

SYNOPSIS
       #include <infiniband/verbs.h>

       int ibv_init_ah_from_wc(struct ibv_context *context, uint8_t port_num,
                               struct ibv_wc *wc, struct ibv_grh *grh,
                               struct ibv_ah_attr *ah_attr);

       struct ibv_ah *ibv_create_ah_from_wc(struct ibv_pd *pd,
                                            struct ibv_wc *wc,
                                            struct ibv_grh *grh,
                                            uint8_t port_num);

DESCRIPTION
       ibv_init_ah_from_wc() initializes the  address  handle  (AH)  attribute
       structure  ah_attr  for  the RDMA device context context using the port
       number port_num, using attributes from the work completion wc  and  the
       Global Routing Header (GRH) structure grh.

       ibv_create_ah_from_wc()  creates  an  AH associated with the protection
       domain pd using the port number port_num,  using  attributes  from  the
       work completion wc and the Global Routing Header (GRH) structure grh.

RETURN VALUE
       ibv_init_ah_from_wc() returns 0 on success, and -1 on error.

       ibv_create_ah_from_wc() returns a pointer to the created AH, or NULL if
       the request fails.


ATTRIBUTES
       See attributes(7) for descriptions of the following attributes:


       +---------------+-----------------------+
       |ATTRIBUTE TYPE |   ATTRIBUTE VALUE     |
       +---------------+-----------------------+
       |Availability   | network/open-fabrics  |
       +---------------+-----------------------+
       |Stability      | Pass-through volatile |
       +---------------+-----------------------+

NOTES
       The filled structure ah_attr returned from ibv_init_ah_from_wc() can be
       used to create a new AH using ibv_create_ah().

       Source  code  for open source software components in Oracle Solaris can
       be found at https://www.oracle.com/downloads/opensource/solaris-source-
       code-downloads.html.

       This     software     was    built    from    source    available    at
       https://github.com/oracle/solaris-userland.   The  original   community
       source   was   downloaded   from    ['https://www.openfabrics.org/down-
       loads/ibutils/ibutils-1.5.7-0.2.gbd7e502.tar.gz', 'https://www.openfab-
       rics.org/downloads/libibverbs/libibverbs-1.1.8.tar.gz',
       'https://www.openfabrics.org/downloads/libmlx4/libmlx4-1.0.6.tar.gz',
       'https://www.openfabrics.org/downloads/libsdp/lib-
       sdp-1.1.108-0.15.gd7fdb72.tar.gz',   'https://www.openfabrics.org/down-
       loads/management/infiniband-diags-1.6.5.tar.gz',  'https://www.openfab-
       rics.org/downloads/management/libibmad-1.3.12.tar.gz',
       'https://www.openfabrics.org/downloads/management/libibu-
       mad-1.3.10.2.tar.gz',    'https://www.openfabrics.org/downloads/manage-
       ment/opensm-3.3.19.tar.gz',          'https://www.openfabrics.org/down-
       loads/perftest/perftest-1.3.0-0.42.gf350d3d.tar.gz', 'https://www.open-
       fabrics.org/downloads/qperf/qperf-0.4.9.tar.gz',  'https://www.openfab-
       rics.org/downloads/rdmacm/librdmacm-1.0.21.tar.gz',  'https://www.open-
       fabrics.org/downloads/rds-tools/rds-tools-2.0.4.tar.gz'].

       Further information about this software can be found on the open source
       community website at http://www.openfabrics.org/.

SEE ALSO
       ibv_open_device(3),         ibv_alloc_pd(3),          ibv_create_ah(3),
       ibv_destroy_ah(3), ibv_poll_cq(3)

AUTHORS
       Dotan Barak <dotanba@gmail.com>




libibverbs                        2006-10-31          IBV_CREATE_AH_FROM_WC(3)