2 * Copyright (c) 2004 Mellanox Technologies Ltd. All rights reserved.
3 * Copyright (c) 2004 Infinicon Corporation. All rights reserved.
4 * Copyright (c) 2004 Intel Corporation. All rights reserved.
5 * Copyright (c) 2004 Topspin Corporation. All rights reserved.
6 * Copyright (c) 2004 Voltaire Corporation. All rights reserved.
7 * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
8 * Copyright (c) 2005, 2006, 2007 Cisco Systems. All rights reserved.
10 * This software is available to you under a choice of one of two
11 * licenses. You may choose to be licensed under the terms of the GNU
12 * General Public License (GPL) Version 2, available from the file
13 * COPYING in the main directory of this source tree, or the
14 * OpenIB.org BSD license below:
16 * Redistribution and use in source and binary forms, with or
17 * without modification, are permitted provided that the following
20 * - Redistributions of source code must retain the above
21 * copyright notice, this list of conditions and the following
24 * - Redistributions in binary form must reproduce the above
25 * copyright notice, this list of conditions and the following
26 * disclaimer in the documentation and/or other materials
27 * provided with the distribution.
29 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
30 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
31 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
32 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
33 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
34 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
35 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
39 #if !defined(IB_VERBS_H)
42 #include <linux/types.h>
43 #include <linux/device.h>
45 #include <linux/dma-mapping.h>
46 #include <linux/kref.h>
47 #include <linux/list.h>
48 #include <linux/rwsem.h>
49 #include <linux/scatterlist.h>
50 #include <linux/workqueue.h>
51 #include <uapi/linux/if_ether.h>
53 #include <linux/atomic.h>
54 #include <asm/uaccess.h>
56 extern struct workqueue_struct
*ib_wq
;
67 /* IB values map to NodeInfo:NodeType. */
76 enum rdma_transport_type
{
80 RDMA_TRANSPORT_USNIC_UDP
83 enum rdma_transport_type
84 rdma_node_get_transport(enum rdma_node_type node_type
) __attribute_const__
;
86 enum rdma_link_layer
{
87 IB_LINK_LAYER_UNSPECIFIED
,
88 IB_LINK_LAYER_INFINIBAND
,
89 IB_LINK_LAYER_ETHERNET
,
92 enum ib_device_cap_flags
{
93 IB_DEVICE_RESIZE_MAX_WR
= 1,
94 IB_DEVICE_BAD_PKEY_CNTR
= (1<<1),
95 IB_DEVICE_BAD_QKEY_CNTR
= (1<<2),
96 IB_DEVICE_RAW_MULTI
= (1<<3),
97 IB_DEVICE_AUTO_PATH_MIG
= (1<<4),
98 IB_DEVICE_CHANGE_PHY_PORT
= (1<<5),
99 IB_DEVICE_UD_AV_PORT_ENFORCE
= (1<<6),
100 IB_DEVICE_CURR_QP_STATE_MOD
= (1<<7),
101 IB_DEVICE_SHUTDOWN_PORT
= (1<<8),
102 IB_DEVICE_INIT_TYPE
= (1<<9),
103 IB_DEVICE_PORT_ACTIVE_EVENT
= (1<<10),
104 IB_DEVICE_SYS_IMAGE_GUID
= (1<<11),
105 IB_DEVICE_RC_RNR_NAK_GEN
= (1<<12),
106 IB_DEVICE_SRQ_RESIZE
= (1<<13),
107 IB_DEVICE_N_NOTIFY_CQ
= (1<<14),
108 IB_DEVICE_LOCAL_DMA_LKEY
= (1<<15),
109 IB_DEVICE_RESERVED
= (1<<16), /* old SEND_W_INV */
110 IB_DEVICE_MEM_WINDOW
= (1<<17),
112 * Devices should set IB_DEVICE_UD_IP_SUM if they support
113 * insertion of UDP and TCP checksum on outgoing UD IPoIB
114 * messages and can verify the validity of checksum for
115 * incoming messages. Setting this flag implies that the
116 * IPoIB driver may set NETIF_F_IP_CSUM for datagram mode.
118 IB_DEVICE_UD_IP_CSUM
= (1<<18),
119 IB_DEVICE_UD_TSO
= (1<<19),
120 IB_DEVICE_XRC
= (1<<20),
121 IB_DEVICE_MEM_MGT_EXTENSIONS
= (1<<21),
122 IB_DEVICE_BLOCK_MULTICAST_LOOPBACK
= (1<<22),
123 IB_DEVICE_MEM_WINDOW_TYPE_2A
= (1<<23),
124 IB_DEVICE_MEM_WINDOW_TYPE_2B
= (1<<24),
125 IB_DEVICE_MANAGED_FLOW_STEERING
= (1<<29)
134 struct ib_device_attr
{
136 __be64 sys_image_guid
;
144 int device_cap_flags
;
154 int max_qp_init_rd_atom
;
155 int max_ee_init_rd_atom
;
156 enum ib_atomic_cap atomic_cap
;
157 enum ib_atomic_cap masked_atomic_cap
;
164 int max_mcast_qp_attach
;
165 int max_total_mcast_qp_attach
;
172 unsigned int max_fast_reg_page_list_len
;
174 u8 local_ca_ack_delay
;
185 static inline int ib_mtu_enum_to_int(enum ib_mtu mtu
)
188 case IB_MTU_256
: return 256;
189 case IB_MTU_512
: return 512;
190 case IB_MTU_1024
: return 1024;
191 case IB_MTU_2048
: return 2048;
192 case IB_MTU_4096
: return 4096;
203 IB_PORT_ACTIVE_DEFER
= 5
206 enum ib_port_cap_flags
{
208 IB_PORT_NOTICE_SUP
= 1 << 2,
209 IB_PORT_TRAP_SUP
= 1 << 3,
210 IB_PORT_OPT_IPD_SUP
= 1 << 4,
211 IB_PORT_AUTO_MIGR_SUP
= 1 << 5,
212 IB_PORT_SL_MAP_SUP
= 1 << 6,
213 IB_PORT_MKEY_NVRAM
= 1 << 7,
214 IB_PORT_PKEY_NVRAM
= 1 << 8,
215 IB_PORT_LED_INFO_SUP
= 1 << 9,
216 IB_PORT_SM_DISABLED
= 1 << 10,
217 IB_PORT_SYS_IMAGE_GUID_SUP
= 1 << 11,
218 IB_PORT_PKEY_SW_EXT_PORT_TRAP_SUP
= 1 << 12,
219 IB_PORT_EXTENDED_SPEEDS_SUP
= 1 << 14,
220 IB_PORT_CM_SUP
= 1 << 16,
221 IB_PORT_SNMP_TUNNEL_SUP
= 1 << 17,
222 IB_PORT_REINIT_SUP
= 1 << 18,
223 IB_PORT_DEVICE_MGMT_SUP
= 1 << 19,
224 IB_PORT_VENDOR_CLASS_SUP
= 1 << 20,
225 IB_PORT_DR_NOTICE_SUP
= 1 << 21,
226 IB_PORT_CAP_MASK_NOTICE_SUP
= 1 << 22,
227 IB_PORT_BOOT_MGMT_SUP
= 1 << 23,
228 IB_PORT_LINK_LATENCY_SUP
= 1 << 24,
229 IB_PORT_CLIENT_REG_SUP
= 1 << 25,
230 IB_PORT_IP_BASED_GIDS
= 1 << 26
240 static inline int ib_width_enum_to_int(enum ib_port_width width
)
243 case IB_WIDTH_1X
: return 1;
244 case IB_WIDTH_4X
: return 4;
245 case IB_WIDTH_8X
: return 8;
246 case IB_WIDTH_12X
: return 12;
260 struct ib_protocol_stats
{
264 struct iw_protocol_stats
{
267 u64 ipInTooBigErrors
;
270 u64 ipInUnknownProtos
;
271 u64 ipInTruncatedPkts
;
274 u64 ipOutForwDatagrams
;
306 union rdma_protocol_stats
{
307 struct ib_protocol_stats ib
;
308 struct iw_protocol_stats iw
;
311 struct ib_port_attr
{
312 enum ib_port_state state
;
314 enum ib_mtu active_mtu
;
333 enum ib_device_modify_flags
{
334 IB_DEVICE_MODIFY_SYS_IMAGE_GUID
= 1 << 0,
335 IB_DEVICE_MODIFY_NODE_DESC
= 1 << 1
338 struct ib_device_modify
{
343 enum ib_port_modify_flags
{
344 IB_PORT_SHUTDOWN
= 1,
345 IB_PORT_INIT_TYPE
= (1<<2),
346 IB_PORT_RESET_QKEY_CNTR
= (1<<3)
349 struct ib_port_modify
{
350 u32 set_port_cap_mask
;
351 u32 clr_port_cap_mask
;
359 IB_EVENT_QP_ACCESS_ERR
,
363 IB_EVENT_PATH_MIG_ERR
,
364 IB_EVENT_DEVICE_FATAL
,
365 IB_EVENT_PORT_ACTIVE
,
368 IB_EVENT_PKEY_CHANGE
,
371 IB_EVENT_SRQ_LIMIT_REACHED
,
372 IB_EVENT_QP_LAST_WQE_REACHED
,
373 IB_EVENT_CLIENT_REREGISTER
,
378 struct ib_device
*device
;
385 enum ib_event_type event
;
388 struct ib_event_handler
{
389 struct ib_device
*device
;
390 void (*handler
)(struct ib_event_handler
*, struct ib_event
*);
391 struct list_head list
;
394 #define INIT_IB_EVENT_HANDLER(_ptr, _device, _handler) \
396 (_ptr)->device = _device; \
397 (_ptr)->handler = _handler; \
398 INIT_LIST_HEAD(&(_ptr)->list); \
401 struct ib_global_route
{
410 __be32 version_tclass_flow
;
419 IB_MULTICAST_QPN
= 0xffffff
422 #define IB_LID_PERMISSIVE cpu_to_be16(0xFFFF)
429 IB_RATE_PORT_CURRENT
= 0,
430 IB_RATE_2_5_GBPS
= 2,
438 IB_RATE_120_GBPS
= 10,
439 IB_RATE_14_GBPS
= 11,
440 IB_RATE_56_GBPS
= 12,
441 IB_RATE_112_GBPS
= 13,
442 IB_RATE_168_GBPS
= 14,
443 IB_RATE_25_GBPS
= 15,
444 IB_RATE_100_GBPS
= 16,
445 IB_RATE_200_GBPS
= 17,
446 IB_RATE_300_GBPS
= 18
450 * ib_rate_to_mult - Convert the IB rate enum to a multiple of the
451 * base rate of 2.5 Gbit/sec. For example, IB_RATE_5_GBPS will be
452 * converted to 2, since 5 Gbit/sec is 2 * 2.5 Gbit/sec.
453 * @rate: rate to convert.
455 int ib_rate_to_mult(enum ib_rate rate
) __attribute_const__
;
458 * ib_rate_to_mbps - Convert the IB rate enum to Mbps.
459 * For example, IB_RATE_2_5_GBPS will be converted to 2500.
460 * @rate: rate to convert.
462 int ib_rate_to_mbps(enum ib_rate rate
) __attribute_const__
;
465 * mult_to_ib_rate - Convert a multiple of 2.5 Gbit/sec to an IB rate
467 * @mult: multiple to convert.
469 enum ib_rate
mult_to_ib_rate(int mult
) __attribute_const__
;
472 struct ib_global_route grh
;
487 IB_WC_LOC_EEC_OP_ERR
,
492 IB_WC_LOC_ACCESS_ERR
,
493 IB_WC_REM_INV_REQ_ERR
,
494 IB_WC_REM_ACCESS_ERR
,
497 IB_WC_RNR_RETRY_EXC_ERR
,
498 IB_WC_LOC_RDD_VIOL_ERR
,
499 IB_WC_REM_INV_RD_REQ_ERR
,
502 IB_WC_INV_EEC_STATE_ERR
,
504 IB_WC_RESP_TIMEOUT_ERR
,
518 IB_WC_MASKED_COMP_SWAP
,
519 IB_WC_MASKED_FETCH_ADD
,
521 * Set value of IB_WC_RECV so consumers can test if a completion is a
522 * receive by testing (opcode & IB_WC_RECV).
525 IB_WC_RECV_RDMA_WITH_IMM
530 IB_WC_WITH_IMM
= (1<<1),
531 IB_WC_WITH_INVALIDATE
= (1<<2),
532 IB_WC_IP_CSUM_OK
= (1<<3),
533 IB_WC_WITH_SMAC
= (1<<4),
534 IB_WC_WITH_VLAN
= (1<<5),
539 enum ib_wc_status status
;
540 enum ib_wc_opcode opcode
;
554 u8 port_num
; /* valid only for DR SMPs on switches */
559 enum ib_cq_notify_flags
{
560 IB_CQ_SOLICITED
= 1 << 0,
561 IB_CQ_NEXT_COMP
= 1 << 1,
562 IB_CQ_SOLICITED_MASK
= IB_CQ_SOLICITED
| IB_CQ_NEXT_COMP
,
563 IB_CQ_REPORT_MISSED_EVENTS
= 1 << 2,
571 enum ib_srq_attr_mask
{
572 IB_SRQ_MAX_WR
= 1 << 0,
573 IB_SRQ_LIMIT
= 1 << 1,
582 struct ib_srq_init_attr
{
583 void (*event_handler
)(struct ib_event
*, void *);
585 struct ib_srq_attr attr
;
586 enum ib_srq_type srq_type
;
590 struct ib_xrcd
*xrcd
;
611 * IB_QPT_SMI and IB_QPT_GSI have to be the first two entries
612 * here (and in that order) since the MAD layer uses them as
613 * indices into a 2-entry table.
622 IB_QPT_RAW_ETHERTYPE
,
623 IB_QPT_RAW_PACKET
= 8,
627 /* Reserve a range for qp types internal to the low level driver.
628 * These qp types will not be visible at the IB core layer, so the
629 * IB_QPT_MAX usages should not be affected in the core layer
631 IB_QPT_RESERVED1
= 0x1000,
643 enum ib_qp_create_flags
{
644 IB_QP_CREATE_IPOIB_UD_LSO
= 1 << 0,
645 IB_QP_CREATE_BLOCK_MULTICAST_LOOPBACK
= 1 << 1,
646 IB_QP_CREATE_NETIF_QP
= 1 << 5,
647 /* reserve bits 26-31 for low level drivers' internal use */
648 IB_QP_CREATE_RESERVED_START
= 1 << 26,
649 IB_QP_CREATE_RESERVED_END
= 1 << 31,
654 * Note: users may not call ib_close_qp or ib_destroy_qp from the event_handler
655 * callback to destroy the passed in QP.
658 struct ib_qp_init_attr
{
659 void (*event_handler
)(struct ib_event
*, void *);
661 struct ib_cq
*send_cq
;
662 struct ib_cq
*recv_cq
;
664 struct ib_xrcd
*xrcd
; /* XRC TGT QPs only */
665 struct ib_qp_cap cap
;
666 enum ib_sig_type sq_sig_type
;
667 enum ib_qp_type qp_type
;
668 enum ib_qp_create_flags create_flags
;
669 u8 port_num
; /* special QP types only */
672 struct ib_qp_open_attr
{
673 void (*event_handler
)(struct ib_event
*, void *);
676 enum ib_qp_type qp_type
;
679 enum ib_rnr_timeout
{
680 IB_RNR_TIMER_655_36
= 0,
681 IB_RNR_TIMER_000_01
= 1,
682 IB_RNR_TIMER_000_02
= 2,
683 IB_RNR_TIMER_000_03
= 3,
684 IB_RNR_TIMER_000_04
= 4,
685 IB_RNR_TIMER_000_06
= 5,
686 IB_RNR_TIMER_000_08
= 6,
687 IB_RNR_TIMER_000_12
= 7,
688 IB_RNR_TIMER_000_16
= 8,
689 IB_RNR_TIMER_000_24
= 9,
690 IB_RNR_TIMER_000_32
= 10,
691 IB_RNR_TIMER_000_48
= 11,
692 IB_RNR_TIMER_000_64
= 12,
693 IB_RNR_TIMER_000_96
= 13,
694 IB_RNR_TIMER_001_28
= 14,
695 IB_RNR_TIMER_001_92
= 15,
696 IB_RNR_TIMER_002_56
= 16,
697 IB_RNR_TIMER_003_84
= 17,
698 IB_RNR_TIMER_005_12
= 18,
699 IB_RNR_TIMER_007_68
= 19,
700 IB_RNR_TIMER_010_24
= 20,
701 IB_RNR_TIMER_015_36
= 21,
702 IB_RNR_TIMER_020_48
= 22,
703 IB_RNR_TIMER_030_72
= 23,
704 IB_RNR_TIMER_040_96
= 24,
705 IB_RNR_TIMER_061_44
= 25,
706 IB_RNR_TIMER_081_92
= 26,
707 IB_RNR_TIMER_122_88
= 27,
708 IB_RNR_TIMER_163_84
= 28,
709 IB_RNR_TIMER_245_76
= 29,
710 IB_RNR_TIMER_327_68
= 30,
711 IB_RNR_TIMER_491_52
= 31
714 enum ib_qp_attr_mask
{
716 IB_QP_CUR_STATE
= (1<<1),
717 IB_QP_EN_SQD_ASYNC_NOTIFY
= (1<<2),
718 IB_QP_ACCESS_FLAGS
= (1<<3),
719 IB_QP_PKEY_INDEX
= (1<<4),
723 IB_QP_PATH_MTU
= (1<<8),
724 IB_QP_TIMEOUT
= (1<<9),
725 IB_QP_RETRY_CNT
= (1<<10),
726 IB_QP_RNR_RETRY
= (1<<11),
727 IB_QP_RQ_PSN
= (1<<12),
728 IB_QP_MAX_QP_RD_ATOMIC
= (1<<13),
729 IB_QP_ALT_PATH
= (1<<14),
730 IB_QP_MIN_RNR_TIMER
= (1<<15),
731 IB_QP_SQ_PSN
= (1<<16),
732 IB_QP_MAX_DEST_RD_ATOMIC
= (1<<17),
733 IB_QP_PATH_MIG_STATE
= (1<<18),
735 IB_QP_DEST_QPN
= (1<<20),
736 IB_QP_SMAC
= (1<<21),
737 IB_QP_ALT_SMAC
= (1<<22),
739 IB_QP_ALT_VID
= (1<<24),
764 enum ib_qp_state qp_state
;
765 enum ib_qp_state cur_qp_state
;
766 enum ib_mtu path_mtu
;
767 enum ib_mig_state path_mig_state
;
773 struct ib_qp_cap cap
;
774 struct ib_ah_attr ah_attr
;
775 struct ib_ah_attr alt_ah_attr
;
778 u8 en_sqd_async_notify
;
781 u8 max_dest_rd_atomic
;
790 u8 alt_smac
[ETH_ALEN
];
797 IB_WR_RDMA_WRITE_WITH_IMM
,
801 IB_WR_ATOMIC_CMP_AND_SWP
,
802 IB_WR_ATOMIC_FETCH_AND_ADD
,
805 IB_WR_RDMA_READ_WITH_INV
,
808 IB_WR_MASKED_ATOMIC_CMP_AND_SWP
,
809 IB_WR_MASKED_ATOMIC_FETCH_AND_ADD
,
811 /* reserve values for low level drivers' internal use.
812 * These values will not be used at all in the ib core layer.
814 IB_WR_RESERVED1
= 0xf0,
828 IB_SEND_SIGNALED
= (1<<1),
829 IB_SEND_SOLICITED
= (1<<2),
830 IB_SEND_INLINE
= (1<<3),
831 IB_SEND_IP_CSUM
= (1<<4),
833 /* reserve bits 26-31 for low level drivers' internal use */
834 IB_SEND_RESERVED_START
= (1 << 26),
835 IB_SEND_RESERVED_END
= (1 << 31),
844 struct ib_fast_reg_page_list
{
845 struct ib_device
*device
;
847 unsigned int max_page_list_len
;
851 * struct ib_mw_bind_info - Parameters for a memory window bind operation.
852 * @mr: A memory region to bind the memory window to.
853 * @addr: The address where the memory window should begin.
854 * @length: The length of the memory window, in bytes.
855 * @mw_access_flags: Access flags from enum ib_access_flags for the window.
857 * This struct contains the shared parameters for type 1 and type 2
858 * memory window bind operations.
860 struct ib_mw_bind_info
{
868 struct ib_send_wr
*next
;
870 struct ib_sge
*sg_list
;
872 enum ib_wr_opcode opcode
;
887 u64 compare_add_mask
;
898 u16 pkey_index
; /* valid for GSI only */
899 u8 port_num
; /* valid for DR SMPs on switch only */
903 struct ib_fast_reg_page_list
*page_list
;
904 unsigned int page_shift
;
905 unsigned int page_list_len
;
912 /* The new rkey for the memory window. */
914 struct ib_mw_bind_info bind_info
;
917 u32 xrc_remote_srq_num
; /* XRC TGT QPs only */
921 struct ib_recv_wr
*next
;
923 struct ib_sge
*sg_list
;
927 enum ib_access_flags
{
928 IB_ACCESS_LOCAL_WRITE
= 1,
929 IB_ACCESS_REMOTE_WRITE
= (1<<1),
930 IB_ACCESS_REMOTE_READ
= (1<<2),
931 IB_ACCESS_REMOTE_ATOMIC
= (1<<3),
932 IB_ACCESS_MW_BIND
= (1<<4),
933 IB_ZERO_BASED
= (1<<5)
943 u64 device_virt_addr
;
950 enum ib_mr_rereg_flags
{
951 IB_MR_REREG_TRANS
= 1,
952 IB_MR_REREG_PD
= (1<<1),
953 IB_MR_REREG_ACCESS
= (1<<2)
957 * struct ib_mw_bind - Parameters for a type 1 memory window bind operation.
958 * @wr_id: Work request id.
959 * @send_flags: Flags from ib_send_flags enum.
960 * @bind_info: More parameters of the bind operation.
965 struct ib_mw_bind_info bind_info
;
975 struct ib_device
*device
;
976 struct list_head pd_list
;
977 struct list_head mr_list
;
978 struct list_head mw_list
;
979 struct list_head cq_list
;
980 struct list_head qp_list
;
981 struct list_head srq_list
;
982 struct list_head ah_list
;
983 struct list_head xrcd_list
;
984 struct list_head rule_list
;
989 u64 user_handle
; /* handle given to us by userspace */
990 struct ib_ucontext
*context
; /* associated user context */
991 void *object
; /* containing object */
992 struct list_head list
; /* link to context's list */
993 int id
; /* index into kernel idr */
995 struct rw_semaphore mutex
; /* protects .live */
1000 const void __user
*inbuf
;
1001 void __user
*outbuf
;
1007 struct ib_device
*device
;
1008 struct ib_uobject
*uobject
;
1009 atomic_t usecnt
; /* count all resources */
1013 struct ib_device
*device
;
1014 atomic_t usecnt
; /* count all exposed resources */
1015 struct inode
*inode
;
1017 struct mutex tgt_qp_mutex
;
1018 struct list_head tgt_qp_list
;
1022 struct ib_device
*device
;
1024 struct ib_uobject
*uobject
;
1027 typedef void (*ib_comp_handler
)(struct ib_cq
*cq
, void *cq_context
);
1030 struct ib_device
*device
;
1031 struct ib_uobject
*uobject
;
1032 ib_comp_handler comp_handler
;
1033 void (*event_handler
)(struct ib_event
*, void *);
1036 atomic_t usecnt
; /* count number of work queues */
1040 struct ib_device
*device
;
1042 struct ib_uobject
*uobject
;
1043 void (*event_handler
)(struct ib_event
*, void *);
1045 enum ib_srq_type srq_type
;
1050 struct ib_xrcd
*xrcd
;
1058 struct ib_device
*device
;
1060 struct ib_cq
*send_cq
;
1061 struct ib_cq
*recv_cq
;
1063 struct ib_xrcd
*xrcd
; /* XRC TGT QPs only */
1064 struct list_head xrcd_list
;
1065 /* count times opened, mcast attaches, flow attaches */
1067 struct list_head open_list
;
1068 struct ib_qp
*real_qp
;
1069 struct ib_uobject
*uobject
;
1070 void (*event_handler
)(struct ib_event
*, void *);
1073 enum ib_qp_type qp_type
;
1077 struct ib_device
*device
;
1079 struct ib_uobject
*uobject
;
1082 atomic_t usecnt
; /* count number of MWs */
1086 struct ib_device
*device
;
1088 struct ib_uobject
*uobject
;
1090 enum ib_mw_type type
;
1094 struct ib_device
*device
;
1096 struct list_head list
;
1101 /* Supported steering options */
1102 enum ib_flow_attr_type
{
1103 /* steering according to rule specifications */
1104 IB_FLOW_ATTR_NORMAL
= 0x0,
1105 /* default unicast and multicast rule -
1106 * receive all Eth traffic which isn't steered to any QP
1108 IB_FLOW_ATTR_ALL_DEFAULT
= 0x1,
1109 /* default multicast rule -
1110 * receive all Eth multicast traffic which isn't steered to any QP
1112 IB_FLOW_ATTR_MC_DEFAULT
= 0x2,
1113 /* sniffer rule - receive all port traffic */
1114 IB_FLOW_ATTR_SNIFFER
= 0x3
1117 /* Supported steering header types */
1118 enum ib_flow_spec_type
{
1120 IB_FLOW_SPEC_ETH
= 0x20,
1121 IB_FLOW_SPEC_IB
= 0x22,
1123 IB_FLOW_SPEC_IPV4
= 0x30,
1125 IB_FLOW_SPEC_TCP
= 0x40,
1126 IB_FLOW_SPEC_UDP
= 0x41
1128 #define IB_FLOW_SPEC_LAYER_MASK 0xF0
1129 #define IB_FLOW_SPEC_SUPPORT_LAYERS 4
1131 /* Flow steering rule priority is set according to it's domain.
1132 * Lower domain value means higher priority.
1134 enum ib_flow_domain
{
1135 IB_FLOW_DOMAIN_USER
,
1136 IB_FLOW_DOMAIN_ETHTOOL
,
1139 IB_FLOW_DOMAIN_NUM
/* Must be last */
1142 struct ib_flow_eth_filter
{
1149 struct ib_flow_spec_eth
{
1150 enum ib_flow_spec_type type
;
1152 struct ib_flow_eth_filter val
;
1153 struct ib_flow_eth_filter mask
;
1156 struct ib_flow_ib_filter
{
1161 struct ib_flow_spec_ib
{
1162 enum ib_flow_spec_type type
;
1164 struct ib_flow_ib_filter val
;
1165 struct ib_flow_ib_filter mask
;
1168 struct ib_flow_ipv4_filter
{
1173 struct ib_flow_spec_ipv4
{
1174 enum ib_flow_spec_type type
;
1176 struct ib_flow_ipv4_filter val
;
1177 struct ib_flow_ipv4_filter mask
;
1180 struct ib_flow_tcp_udp_filter
{
1185 struct ib_flow_spec_tcp_udp
{
1186 enum ib_flow_spec_type type
;
1188 struct ib_flow_tcp_udp_filter val
;
1189 struct ib_flow_tcp_udp_filter mask
;
1192 union ib_flow_spec
{
1194 enum ib_flow_spec_type type
;
1197 struct ib_flow_spec_eth eth
;
1198 struct ib_flow_spec_ib ib
;
1199 struct ib_flow_spec_ipv4 ipv4
;
1200 struct ib_flow_spec_tcp_udp tcp_udp
;
1203 struct ib_flow_attr
{
1204 enum ib_flow_attr_type type
;
1210 /* Following are the optional layers according to user request
1211 * struct ib_flow_spec_xxx
1212 * struct ib_flow_spec_yyy
1218 struct ib_uobject
*uobject
;
1224 enum ib_process_mad_flags
{
1225 IB_MAD_IGNORE_MKEY
= 1,
1226 IB_MAD_IGNORE_BKEY
= 2,
1227 IB_MAD_IGNORE_ALL
= IB_MAD_IGNORE_MKEY
| IB_MAD_IGNORE_BKEY
1230 enum ib_mad_result
{
1231 IB_MAD_RESULT_FAILURE
= 0, /* (!SUCCESS is the important flag) */
1232 IB_MAD_RESULT_SUCCESS
= 1 << 0, /* MAD was successfully processed */
1233 IB_MAD_RESULT_REPLY
= 1 << 1, /* Reply packet needs to be sent */
1234 IB_MAD_RESULT_CONSUMED
= 1 << 2 /* Packet consumed: stop processing */
1237 #define IB_DEVICE_NAME_MAX 64
1241 struct ib_event_handler event_handler
;
1242 struct ib_pkey_cache
**pkey_cache
;
1243 struct ib_gid_cache
**gid_cache
;
1247 struct ib_dma_mapping_ops
{
1248 int (*mapping_error
)(struct ib_device
*dev
,
1250 u64 (*map_single
)(struct ib_device
*dev
,
1251 void *ptr
, size_t size
,
1252 enum dma_data_direction direction
);
1253 void (*unmap_single
)(struct ib_device
*dev
,
1254 u64 addr
, size_t size
,
1255 enum dma_data_direction direction
);
1256 u64 (*map_page
)(struct ib_device
*dev
,
1257 struct page
*page
, unsigned long offset
,
1259 enum dma_data_direction direction
);
1260 void (*unmap_page
)(struct ib_device
*dev
,
1261 u64 addr
, size_t size
,
1262 enum dma_data_direction direction
);
1263 int (*map_sg
)(struct ib_device
*dev
,
1264 struct scatterlist
*sg
, int nents
,
1265 enum dma_data_direction direction
);
1266 void (*unmap_sg
)(struct ib_device
*dev
,
1267 struct scatterlist
*sg
, int nents
,
1268 enum dma_data_direction direction
);
1269 u64 (*dma_address
)(struct ib_device
*dev
,
1270 struct scatterlist
*sg
);
1271 unsigned int (*dma_len
)(struct ib_device
*dev
,
1272 struct scatterlist
*sg
);
1273 void (*sync_single_for_cpu
)(struct ib_device
*dev
,
1276 enum dma_data_direction dir
);
1277 void (*sync_single_for_device
)(struct ib_device
*dev
,
1280 enum dma_data_direction dir
);
1281 void *(*alloc_coherent
)(struct ib_device
*dev
,
1285 void (*free_coherent
)(struct ib_device
*dev
,
1286 size_t size
, void *cpu_addr
,
1293 struct device
*dma_device
;
1295 char name
[IB_DEVICE_NAME_MAX
];
1297 struct list_head event_handler_list
;
1298 spinlock_t event_handler_lock
;
1300 spinlock_t client_data_lock
;
1301 struct list_head core_list
;
1302 struct list_head client_data_list
;
1304 struct ib_cache cache
;
1308 int num_comp_vectors
;
1310 struct iw_cm_verbs
*iwcm
;
1312 int (*get_protocol_stats
)(struct ib_device
*device
,
1313 union rdma_protocol_stats
*stats
);
1314 int (*query_device
)(struct ib_device
*device
,
1315 struct ib_device_attr
*device_attr
);
1316 int (*query_port
)(struct ib_device
*device
,
1318 struct ib_port_attr
*port_attr
);
1319 enum rdma_link_layer (*get_link_layer
)(struct ib_device
*device
,
1321 int (*query_gid
)(struct ib_device
*device
,
1322 u8 port_num
, int index
,
1324 int (*query_pkey
)(struct ib_device
*device
,
1325 u8 port_num
, u16 index
, u16
*pkey
);
1326 int (*modify_device
)(struct ib_device
*device
,
1327 int device_modify_mask
,
1328 struct ib_device_modify
*device_modify
);
1329 int (*modify_port
)(struct ib_device
*device
,
1330 u8 port_num
, int port_modify_mask
,
1331 struct ib_port_modify
*port_modify
);
1332 struct ib_ucontext
* (*alloc_ucontext
)(struct ib_device
*device
,
1333 struct ib_udata
*udata
);
1334 int (*dealloc_ucontext
)(struct ib_ucontext
*context
);
1335 int (*mmap
)(struct ib_ucontext
*context
,
1336 struct vm_area_struct
*vma
);
1337 struct ib_pd
* (*alloc_pd
)(struct ib_device
*device
,
1338 struct ib_ucontext
*context
,
1339 struct ib_udata
*udata
);
1340 int (*dealloc_pd
)(struct ib_pd
*pd
);
1341 struct ib_ah
* (*create_ah
)(struct ib_pd
*pd
,
1342 struct ib_ah_attr
*ah_attr
);
1343 int (*modify_ah
)(struct ib_ah
*ah
,
1344 struct ib_ah_attr
*ah_attr
);
1345 int (*query_ah
)(struct ib_ah
*ah
,
1346 struct ib_ah_attr
*ah_attr
);
1347 int (*destroy_ah
)(struct ib_ah
*ah
);
1348 struct ib_srq
* (*create_srq
)(struct ib_pd
*pd
,
1349 struct ib_srq_init_attr
*srq_init_attr
,
1350 struct ib_udata
*udata
);
1351 int (*modify_srq
)(struct ib_srq
*srq
,
1352 struct ib_srq_attr
*srq_attr
,
1353 enum ib_srq_attr_mask srq_attr_mask
,
1354 struct ib_udata
*udata
);
1355 int (*query_srq
)(struct ib_srq
*srq
,
1356 struct ib_srq_attr
*srq_attr
);
1357 int (*destroy_srq
)(struct ib_srq
*srq
);
1358 int (*post_srq_recv
)(struct ib_srq
*srq
,
1359 struct ib_recv_wr
*recv_wr
,
1360 struct ib_recv_wr
**bad_recv_wr
);
1361 struct ib_qp
* (*create_qp
)(struct ib_pd
*pd
,
1362 struct ib_qp_init_attr
*qp_init_attr
,
1363 struct ib_udata
*udata
);
1364 int (*modify_qp
)(struct ib_qp
*qp
,
1365 struct ib_qp_attr
*qp_attr
,
1367 struct ib_udata
*udata
);
1368 int (*query_qp
)(struct ib_qp
*qp
,
1369 struct ib_qp_attr
*qp_attr
,
1371 struct ib_qp_init_attr
*qp_init_attr
);
1372 int (*destroy_qp
)(struct ib_qp
*qp
);
1373 int (*post_send
)(struct ib_qp
*qp
,
1374 struct ib_send_wr
*send_wr
,
1375 struct ib_send_wr
**bad_send_wr
);
1376 int (*post_recv
)(struct ib_qp
*qp
,
1377 struct ib_recv_wr
*recv_wr
,
1378 struct ib_recv_wr
**bad_recv_wr
);
1379 struct ib_cq
* (*create_cq
)(struct ib_device
*device
, int cqe
,
1381 struct ib_ucontext
*context
,
1382 struct ib_udata
*udata
);
1383 int (*modify_cq
)(struct ib_cq
*cq
, u16 cq_count
,
1385 int (*destroy_cq
)(struct ib_cq
*cq
);
1386 int (*resize_cq
)(struct ib_cq
*cq
, int cqe
,
1387 struct ib_udata
*udata
);
1388 int (*poll_cq
)(struct ib_cq
*cq
, int num_entries
,
1390 int (*peek_cq
)(struct ib_cq
*cq
, int wc_cnt
);
1391 int (*req_notify_cq
)(struct ib_cq
*cq
,
1392 enum ib_cq_notify_flags flags
);
1393 int (*req_ncomp_notif
)(struct ib_cq
*cq
,
1395 struct ib_mr
* (*get_dma_mr
)(struct ib_pd
*pd
,
1396 int mr_access_flags
);
1397 struct ib_mr
* (*reg_phys_mr
)(struct ib_pd
*pd
,
1398 struct ib_phys_buf
*phys_buf_array
,
1400 int mr_access_flags
,
1402 struct ib_mr
* (*reg_user_mr
)(struct ib_pd
*pd
,
1403 u64 start
, u64 length
,
1405 int mr_access_flags
,
1406 struct ib_udata
*udata
);
1407 int (*query_mr
)(struct ib_mr
*mr
,
1408 struct ib_mr_attr
*mr_attr
);
1409 int (*dereg_mr
)(struct ib_mr
*mr
);
1410 struct ib_mr
* (*alloc_fast_reg_mr
)(struct ib_pd
*pd
,
1411 int max_page_list_len
);
1412 struct ib_fast_reg_page_list
* (*alloc_fast_reg_page_list
)(struct ib_device
*device
,
1414 void (*free_fast_reg_page_list
)(struct ib_fast_reg_page_list
*page_list
);
1415 int (*rereg_phys_mr
)(struct ib_mr
*mr
,
1418 struct ib_phys_buf
*phys_buf_array
,
1420 int mr_access_flags
,
1422 struct ib_mw
* (*alloc_mw
)(struct ib_pd
*pd
,
1423 enum ib_mw_type type
);
1424 int (*bind_mw
)(struct ib_qp
*qp
,
1426 struct ib_mw_bind
*mw_bind
);
1427 int (*dealloc_mw
)(struct ib_mw
*mw
);
1428 struct ib_fmr
* (*alloc_fmr
)(struct ib_pd
*pd
,
1429 int mr_access_flags
,
1430 struct ib_fmr_attr
*fmr_attr
);
1431 int (*map_phys_fmr
)(struct ib_fmr
*fmr
,
1432 u64
*page_list
, int list_len
,
1434 int (*unmap_fmr
)(struct list_head
*fmr_list
);
1435 int (*dealloc_fmr
)(struct ib_fmr
*fmr
);
1436 int (*attach_mcast
)(struct ib_qp
*qp
,
1439 int (*detach_mcast
)(struct ib_qp
*qp
,
1442 int (*process_mad
)(struct ib_device
*device
,
1443 int process_mad_flags
,
1445 struct ib_wc
*in_wc
,
1446 struct ib_grh
*in_grh
,
1447 struct ib_mad
*in_mad
,
1448 struct ib_mad
*out_mad
);
1449 struct ib_xrcd
* (*alloc_xrcd
)(struct ib_device
*device
,
1450 struct ib_ucontext
*ucontext
,
1451 struct ib_udata
*udata
);
1452 int (*dealloc_xrcd
)(struct ib_xrcd
*xrcd
);
1453 struct ib_flow
* (*create_flow
)(struct ib_qp
*qp
,
1457 int (*destroy_flow
)(struct ib_flow
*flow_id
);
1459 struct ib_dma_mapping_ops
*dma_ops
;
1461 struct module
*owner
;
1463 struct kobject
*ports_parent
;
1464 struct list_head port_list
;
1467 IB_DEV_UNINITIALIZED
,
1473 u64 uverbs_cmd_mask
;
1474 u64 uverbs_ex_cmd_mask
;
1485 void (*add
) (struct ib_device
*);
1486 void (*remove
)(struct ib_device
*);
1488 struct list_head list
;
1491 struct ib_device
*ib_alloc_device(size_t size
);
1492 void ib_dealloc_device(struct ib_device
*device
);
1494 int ib_register_device(struct ib_device
*device
,
1495 int (*port_callback
)(struct ib_device
*,
1496 u8
, struct kobject
*));
1497 void ib_unregister_device(struct ib_device
*device
);
1499 int ib_register_client (struct ib_client
*client
);
1500 void ib_unregister_client(struct ib_client
*client
);
1502 void *ib_get_client_data(struct ib_device
*device
, struct ib_client
*client
);
1503 void ib_set_client_data(struct ib_device
*device
, struct ib_client
*client
,
1506 static inline int ib_copy_from_udata(void *dest
, struct ib_udata
*udata
, size_t len
)
1508 return copy_from_user(dest
, udata
->inbuf
, len
) ? -EFAULT
: 0;
1511 static inline int ib_copy_to_udata(struct ib_udata
*udata
, void *src
, size_t len
)
1513 return copy_to_user(udata
->outbuf
, src
, len
) ? -EFAULT
: 0;
1517 * ib_modify_qp_is_ok - Check that the supplied attribute mask
1518 * contains all required attributes and no attributes not allowed for
1519 * the given QP state transition.
1520 * @cur_state: Current QP state
1521 * @next_state: Next QP state
1523 * @mask: Mask of supplied QP attributes
1524 * @ll : link layer of port
1526 * This function is a helper function that a low-level driver's
1527 * modify_qp method can use to validate the consumer's input. It
1528 * checks that cur_state and next_state are valid QP states, that a
1529 * transition from cur_state to next_state is allowed by the IB spec,
1530 * and that the attribute mask supplied is allowed for the transition.
1532 int ib_modify_qp_is_ok(enum ib_qp_state cur_state
, enum ib_qp_state next_state
,
1533 enum ib_qp_type type
, enum ib_qp_attr_mask mask
,
1534 enum rdma_link_layer ll
);
1536 int ib_register_event_handler (struct ib_event_handler
*event_handler
);
1537 int ib_unregister_event_handler(struct ib_event_handler
*event_handler
);
1538 void ib_dispatch_event(struct ib_event
*event
);
1540 int ib_query_device(struct ib_device
*device
,
1541 struct ib_device_attr
*device_attr
);
1543 int ib_query_port(struct ib_device
*device
,
1544 u8 port_num
, struct ib_port_attr
*port_attr
);
1546 enum rdma_link_layer
rdma_port_get_link_layer(struct ib_device
*device
,
1549 int ib_query_gid(struct ib_device
*device
,
1550 u8 port_num
, int index
, union ib_gid
*gid
);
1552 int ib_query_pkey(struct ib_device
*device
,
1553 u8 port_num
, u16 index
, u16
*pkey
);
1555 int ib_modify_device(struct ib_device
*device
,
1556 int device_modify_mask
,
1557 struct ib_device_modify
*device_modify
);
1559 int ib_modify_port(struct ib_device
*device
,
1560 u8 port_num
, int port_modify_mask
,
1561 struct ib_port_modify
*port_modify
);
1563 int ib_find_gid(struct ib_device
*device
, union ib_gid
*gid
,
1564 u8
*port_num
, u16
*index
);
1566 int ib_find_pkey(struct ib_device
*device
,
1567 u8 port_num
, u16 pkey
, u16
*index
);
1570 * ib_alloc_pd - Allocates an unused protection domain.
1571 * @device: The device on which to allocate the protection domain.
1573 * A protection domain object provides an association between QPs, shared
1574 * receive queues, address handles, memory regions, and memory windows.
1576 struct ib_pd
*ib_alloc_pd(struct ib_device
*device
);
1579 * ib_dealloc_pd - Deallocates a protection domain.
1580 * @pd: The protection domain to deallocate.
1582 int ib_dealloc_pd(struct ib_pd
*pd
);
1585 * ib_create_ah - Creates an address handle for the given address vector.
1586 * @pd: The protection domain associated with the address handle.
1587 * @ah_attr: The attributes of the address vector.
1589 * The address handle is used to reference a local or global destination
1590 * in all UD QP post sends.
1592 struct ib_ah
*ib_create_ah(struct ib_pd
*pd
, struct ib_ah_attr
*ah_attr
);
1595 * ib_init_ah_from_wc - Initializes address handle attributes from a
1597 * @device: Device on which the received message arrived.
1598 * @port_num: Port on which the received message arrived.
1599 * @wc: Work completion associated with the received message.
1600 * @grh: References the received global route header. This parameter is
1601 * ignored unless the work completion indicates that the GRH is valid.
1602 * @ah_attr: Returned attributes that can be used when creating an address
1603 * handle for replying to the message.
1605 int ib_init_ah_from_wc(struct ib_device
*device
, u8 port_num
, struct ib_wc
*wc
,
1606 struct ib_grh
*grh
, struct ib_ah_attr
*ah_attr
);
1609 * ib_create_ah_from_wc - Creates an address handle associated with the
1610 * sender of the specified work completion.
1611 * @pd: The protection domain associated with the address handle.
1612 * @wc: Work completion information associated with a received message.
1613 * @grh: References the received global route header. This parameter is
1614 * ignored unless the work completion indicates that the GRH is valid.
1615 * @port_num: The outbound port number to associate with the address.
1617 * The address handle is used to reference a local or global destination
1618 * in all UD QP post sends.
1620 struct ib_ah
*ib_create_ah_from_wc(struct ib_pd
*pd
, struct ib_wc
*wc
,
1621 struct ib_grh
*grh
, u8 port_num
);
1624 * ib_modify_ah - Modifies the address vector associated with an address
1626 * @ah: The address handle to modify.
1627 * @ah_attr: The new address vector attributes to associate with the
1630 int ib_modify_ah(struct ib_ah
*ah
, struct ib_ah_attr
*ah_attr
);
1633 * ib_query_ah - Queries the address vector associated with an address
1635 * @ah: The address handle to query.
1636 * @ah_attr: The address vector attributes associated with the address
1639 int ib_query_ah(struct ib_ah
*ah
, struct ib_ah_attr
*ah_attr
);
1642 * ib_destroy_ah - Destroys an address handle.
1643 * @ah: The address handle to destroy.
1645 int ib_destroy_ah(struct ib_ah
*ah
);
1648 * ib_create_srq - Creates a SRQ associated with the specified protection
1650 * @pd: The protection domain associated with the SRQ.
1651 * @srq_init_attr: A list of initial attributes required to create the
1652 * SRQ. If SRQ creation succeeds, then the attributes are updated to
1653 * the actual capabilities of the created SRQ.
1655 * srq_attr->max_wr and srq_attr->max_sge are read the determine the
1656 * requested size of the SRQ, and set to the actual values allocated
1657 * on return. If ib_create_srq() succeeds, then max_wr and max_sge
1658 * will always be at least as large as the requested values.
1660 struct ib_srq
*ib_create_srq(struct ib_pd
*pd
,
1661 struct ib_srq_init_attr
*srq_init_attr
);
1664 * ib_modify_srq - Modifies the attributes for the specified SRQ.
1665 * @srq: The SRQ to modify.
1666 * @srq_attr: On input, specifies the SRQ attributes to modify. On output,
1667 * the current values of selected SRQ attributes are returned.
1668 * @srq_attr_mask: A bit-mask used to specify which attributes of the SRQ
1669 * are being modified.
1671 * The mask may contain IB_SRQ_MAX_WR to resize the SRQ and/or
1672 * IB_SRQ_LIMIT to set the SRQ's limit and request notification when
1673 * the number of receives queued drops below the limit.
1675 int ib_modify_srq(struct ib_srq
*srq
,
1676 struct ib_srq_attr
*srq_attr
,
1677 enum ib_srq_attr_mask srq_attr_mask
);
1680 * ib_query_srq - Returns the attribute list and current values for the
1682 * @srq: The SRQ to query.
1683 * @srq_attr: The attributes of the specified SRQ.
1685 int ib_query_srq(struct ib_srq
*srq
,
1686 struct ib_srq_attr
*srq_attr
);
1689 * ib_destroy_srq - Destroys the specified SRQ.
1690 * @srq: The SRQ to destroy.
1692 int ib_destroy_srq(struct ib_srq
*srq
);
1695 * ib_post_srq_recv - Posts a list of work requests to the specified SRQ.
1696 * @srq: The SRQ to post the work request on.
1697 * @recv_wr: A list of work requests to post on the receive queue.
1698 * @bad_recv_wr: On an immediate failure, this parameter will reference
1699 * the work request that failed to be posted on the QP.
1701 static inline int ib_post_srq_recv(struct ib_srq
*srq
,
1702 struct ib_recv_wr
*recv_wr
,
1703 struct ib_recv_wr
**bad_recv_wr
)
1705 return srq
->device
->post_srq_recv(srq
, recv_wr
, bad_recv_wr
);
1709 * ib_create_qp - Creates a QP associated with the specified protection
1711 * @pd: The protection domain associated with the QP.
1712 * @qp_init_attr: A list of initial attributes required to create the
1713 * QP. If QP creation succeeds, then the attributes are updated to
1714 * the actual capabilities of the created QP.
1716 struct ib_qp
*ib_create_qp(struct ib_pd
*pd
,
1717 struct ib_qp_init_attr
*qp_init_attr
);
1720 * ib_modify_qp - Modifies the attributes for the specified QP and then
1721 * transitions the QP to the given state.
1722 * @qp: The QP to modify.
1723 * @qp_attr: On input, specifies the QP attributes to modify. On output,
1724 * the current values of selected QP attributes are returned.
1725 * @qp_attr_mask: A bit-mask used to specify which attributes of the QP
1726 * are being modified.
1728 int ib_modify_qp(struct ib_qp
*qp
,
1729 struct ib_qp_attr
*qp_attr
,
1733 * ib_query_qp - Returns the attribute list and current values for the
1735 * @qp: The QP to query.
1736 * @qp_attr: The attributes of the specified QP.
1737 * @qp_attr_mask: A bit-mask used to select specific attributes to query.
1738 * @qp_init_attr: Additional attributes of the selected QP.
1740 * The qp_attr_mask may be used to limit the query to gathering only the
1741 * selected attributes.
1743 int ib_query_qp(struct ib_qp
*qp
,
1744 struct ib_qp_attr
*qp_attr
,
1746 struct ib_qp_init_attr
*qp_init_attr
);
1749 * ib_destroy_qp - Destroys the specified QP.
1750 * @qp: The QP to destroy.
1752 int ib_destroy_qp(struct ib_qp
*qp
);
1755 * ib_open_qp - Obtain a reference to an existing sharable QP.
1756 * @xrcd - XRC domain
1757 * @qp_open_attr: Attributes identifying the QP to open.
1759 * Returns a reference to a sharable QP.
1761 struct ib_qp
*ib_open_qp(struct ib_xrcd
*xrcd
,
1762 struct ib_qp_open_attr
*qp_open_attr
);
1765 * ib_close_qp - Release an external reference to a QP.
1766 * @qp: The QP handle to release
1768 * The opened QP handle is released by the caller. The underlying
1769 * shared QP is not destroyed until all internal references are released.
1771 int ib_close_qp(struct ib_qp
*qp
);
1774 * ib_post_send - Posts a list of work requests to the send queue of
1776 * @qp: The QP to post the work request on.
1777 * @send_wr: A list of work requests to post on the send queue.
1778 * @bad_send_wr: On an immediate failure, this parameter will reference
1779 * the work request that failed to be posted on the QP.
1781 * While IBA Vol. 1 section 11.4.1.1 specifies that if an immediate
1782 * error is returned, the QP state shall not be affected,
1783 * ib_post_send() will return an immediate error after queueing any
1784 * earlier work requests in the list.
1786 static inline int ib_post_send(struct ib_qp
*qp
,
1787 struct ib_send_wr
*send_wr
,
1788 struct ib_send_wr
**bad_send_wr
)
1790 return qp
->device
->post_send(qp
, send_wr
, bad_send_wr
);
1794 * ib_post_recv - Posts a list of work requests to the receive queue of
1796 * @qp: The QP to post the work request on.
1797 * @recv_wr: A list of work requests to post on the receive queue.
1798 * @bad_recv_wr: On an immediate failure, this parameter will reference
1799 * the work request that failed to be posted on the QP.
1801 static inline int ib_post_recv(struct ib_qp
*qp
,
1802 struct ib_recv_wr
*recv_wr
,
1803 struct ib_recv_wr
**bad_recv_wr
)
1805 return qp
->device
->post_recv(qp
, recv_wr
, bad_recv_wr
);
1809 * ib_create_cq - Creates a CQ on the specified device.
1810 * @device: The device on which to create the CQ.
1811 * @comp_handler: A user-specified callback that is invoked when a
1812 * completion event occurs on the CQ.
1813 * @event_handler: A user-specified callback that is invoked when an
1814 * asynchronous event not associated with a completion occurs on the CQ.
1815 * @cq_context: Context associated with the CQ returned to the user via
1816 * the associated completion and event handlers.
1817 * @cqe: The minimum size of the CQ.
1818 * @comp_vector - Completion vector used to signal completion events.
1819 * Must be >= 0 and < context->num_comp_vectors.
1821 * Users can examine the cq structure to determine the actual CQ size.
1823 struct ib_cq
*ib_create_cq(struct ib_device
*device
,
1824 ib_comp_handler comp_handler
,
1825 void (*event_handler
)(struct ib_event
*, void *),
1826 void *cq_context
, int cqe
, int comp_vector
);
1829 * ib_resize_cq - Modifies the capacity of the CQ.
1830 * @cq: The CQ to resize.
1831 * @cqe: The minimum size of the CQ.
1833 * Users can examine the cq structure to determine the actual CQ size.
1835 int ib_resize_cq(struct ib_cq
*cq
, int cqe
);
1838 * ib_modify_cq - Modifies moderation params of the CQ
1839 * @cq: The CQ to modify.
1840 * @cq_count: number of CQEs that will trigger an event
1841 * @cq_period: max period of time in usec before triggering an event
1844 int ib_modify_cq(struct ib_cq
*cq
, u16 cq_count
, u16 cq_period
);
1847 * ib_destroy_cq - Destroys the specified CQ.
1848 * @cq: The CQ to destroy.
1850 int ib_destroy_cq(struct ib_cq
*cq
);
1853 * ib_poll_cq - poll a CQ for completion(s)
1854 * @cq:the CQ being polled
1855 * @num_entries:maximum number of completions to return
1856 * @wc:array of at least @num_entries &struct ib_wc where completions
1859 * Poll a CQ for (possibly multiple) completions. If the return value
1860 * is < 0, an error occurred. If the return value is >= 0, it is the
1861 * number of completions returned. If the return value is
1862 * non-negative and < num_entries, then the CQ was emptied.
1864 static inline int ib_poll_cq(struct ib_cq
*cq
, int num_entries
,
1867 return cq
->device
->poll_cq(cq
, num_entries
, wc
);
1871 * ib_peek_cq - Returns the number of unreaped completions currently
1872 * on the specified CQ.
1873 * @cq: The CQ to peek.
1874 * @wc_cnt: A minimum number of unreaped completions to check for.
1876 * If the number of unreaped completions is greater than or equal to wc_cnt,
1877 * this function returns wc_cnt, otherwise, it returns the actual number of
1878 * unreaped completions.
1880 int ib_peek_cq(struct ib_cq
*cq
, int wc_cnt
);
1883 * ib_req_notify_cq - Request completion notification on a CQ.
1884 * @cq: The CQ to generate an event for.
1886 * Must contain exactly one of %IB_CQ_SOLICITED or %IB_CQ_NEXT_COMP
1887 * to request an event on the next solicited event or next work
1888 * completion at any type, respectively. %IB_CQ_REPORT_MISSED_EVENTS
1889 * may also be |ed in to request a hint about missed events, as
1893 * < 0 means an error occurred while requesting notification
1894 * == 0 means notification was requested successfully, and if
1895 * IB_CQ_REPORT_MISSED_EVENTS was passed in, then no events
1896 * were missed and it is safe to wait for another event. In
1897 * this case is it guaranteed that any work completions added
1898 * to the CQ since the last CQ poll will trigger a completion
1899 * notification event.
1900 * > 0 is only returned if IB_CQ_REPORT_MISSED_EVENTS was passed
1901 * in. It means that the consumer must poll the CQ again to
1902 * make sure it is empty to avoid missing an event because of a
1903 * race between requesting notification and an entry being
1904 * added to the CQ. This return value means it is possible
1905 * (but not guaranteed) that a work completion has been added
1906 * to the CQ since the last poll without triggering a
1907 * completion notification event.
1909 static inline int ib_req_notify_cq(struct ib_cq
*cq
,
1910 enum ib_cq_notify_flags flags
)
1912 return cq
->device
->req_notify_cq(cq
, flags
);
1916 * ib_req_ncomp_notif - Request completion notification when there are
1917 * at least the specified number of unreaped completions on the CQ.
1918 * @cq: The CQ to generate an event for.
1919 * @wc_cnt: The number of unreaped completions that should be on the
1920 * CQ before an event is generated.
1922 static inline int ib_req_ncomp_notif(struct ib_cq
*cq
, int wc_cnt
)
1924 return cq
->device
->req_ncomp_notif
?
1925 cq
->device
->req_ncomp_notif(cq
, wc_cnt
) :
1930 * ib_get_dma_mr - Returns a memory region for system memory that is
1932 * @pd: The protection domain associated with the memory region.
1933 * @mr_access_flags: Specifies the memory access rights.
1935 * Note that the ib_dma_*() functions defined below must be used
1936 * to create/destroy addresses used with the Lkey or Rkey returned
1937 * by ib_get_dma_mr().
1939 struct ib_mr
*ib_get_dma_mr(struct ib_pd
*pd
, int mr_access_flags
);
1942 * ib_dma_mapping_error - check a DMA addr for error
1943 * @dev: The device for which the dma_addr was created
1944 * @dma_addr: The DMA address to check
1946 static inline int ib_dma_mapping_error(struct ib_device
*dev
, u64 dma_addr
)
1949 return dev
->dma_ops
->mapping_error(dev
, dma_addr
);
1950 return dma_mapping_error(dev
->dma_device
, dma_addr
);
1954 * ib_dma_map_single - Map a kernel virtual address to DMA address
1955 * @dev: The device for which the dma_addr is to be created
1956 * @cpu_addr: The kernel virtual address
1957 * @size: The size of the region in bytes
1958 * @direction: The direction of the DMA
1960 static inline u64
ib_dma_map_single(struct ib_device
*dev
,
1961 void *cpu_addr
, size_t size
,
1962 enum dma_data_direction direction
)
1965 return dev
->dma_ops
->map_single(dev
, cpu_addr
, size
, direction
);
1966 return dma_map_single(dev
->dma_device
, cpu_addr
, size
, direction
);
1970 * ib_dma_unmap_single - Destroy a mapping created by ib_dma_map_single()
1971 * @dev: The device for which the DMA address was created
1972 * @addr: The DMA address
1973 * @size: The size of the region in bytes
1974 * @direction: The direction of the DMA
1976 static inline void ib_dma_unmap_single(struct ib_device
*dev
,
1977 u64 addr
, size_t size
,
1978 enum dma_data_direction direction
)
1981 dev
->dma_ops
->unmap_single(dev
, addr
, size
, direction
);
1983 dma_unmap_single(dev
->dma_device
, addr
, size
, direction
);
1986 static inline u64
ib_dma_map_single_attrs(struct ib_device
*dev
,
1987 void *cpu_addr
, size_t size
,
1988 enum dma_data_direction direction
,
1989 struct dma_attrs
*attrs
)
1991 return dma_map_single_attrs(dev
->dma_device
, cpu_addr
, size
,
1995 static inline void ib_dma_unmap_single_attrs(struct ib_device
*dev
,
1996 u64 addr
, size_t size
,
1997 enum dma_data_direction direction
,
1998 struct dma_attrs
*attrs
)
2000 return dma_unmap_single_attrs(dev
->dma_device
, addr
, size
,
2005 * ib_dma_map_page - Map a physical page to DMA address
2006 * @dev: The device for which the dma_addr is to be created
2007 * @page: The page to be mapped
2008 * @offset: The offset within the page
2009 * @size: The size of the region in bytes
2010 * @direction: The direction of the DMA
2012 static inline u64
ib_dma_map_page(struct ib_device
*dev
,
2014 unsigned long offset
,
2016 enum dma_data_direction direction
)
2019 return dev
->dma_ops
->map_page(dev
, page
, offset
, size
, direction
);
2020 return dma_map_page(dev
->dma_device
, page
, offset
, size
, direction
);
2024 * ib_dma_unmap_page - Destroy a mapping created by ib_dma_map_page()
2025 * @dev: The device for which the DMA address was created
2026 * @addr: The DMA address
2027 * @size: The size of the region in bytes
2028 * @direction: The direction of the DMA
2030 static inline void ib_dma_unmap_page(struct ib_device
*dev
,
2031 u64 addr
, size_t size
,
2032 enum dma_data_direction direction
)
2035 dev
->dma_ops
->unmap_page(dev
, addr
, size
, direction
);
2037 dma_unmap_page(dev
->dma_device
, addr
, size
, direction
);
2041 * ib_dma_map_sg - Map a scatter/gather list to DMA addresses
2042 * @dev: The device for which the DMA addresses are to be created
2043 * @sg: The array of scatter/gather entries
2044 * @nents: The number of scatter/gather entries
2045 * @direction: The direction of the DMA
2047 static inline int ib_dma_map_sg(struct ib_device
*dev
,
2048 struct scatterlist
*sg
, int nents
,
2049 enum dma_data_direction direction
)
2052 return dev
->dma_ops
->map_sg(dev
, sg
, nents
, direction
);
2053 return dma_map_sg(dev
->dma_device
, sg
, nents
, direction
);
2057 * ib_dma_unmap_sg - Unmap a scatter/gather list of DMA addresses
2058 * @dev: The device for which the DMA addresses were created
2059 * @sg: The array of scatter/gather entries
2060 * @nents: The number of scatter/gather entries
2061 * @direction: The direction of the DMA
2063 static inline void ib_dma_unmap_sg(struct ib_device
*dev
,
2064 struct scatterlist
*sg
, int nents
,
2065 enum dma_data_direction direction
)
2068 dev
->dma_ops
->unmap_sg(dev
, sg
, nents
, direction
);
2070 dma_unmap_sg(dev
->dma_device
, sg
, nents
, direction
);
2073 static inline int ib_dma_map_sg_attrs(struct ib_device
*dev
,
2074 struct scatterlist
*sg
, int nents
,
2075 enum dma_data_direction direction
,
2076 struct dma_attrs
*attrs
)
2078 return dma_map_sg_attrs(dev
->dma_device
, sg
, nents
, direction
, attrs
);
2081 static inline void ib_dma_unmap_sg_attrs(struct ib_device
*dev
,
2082 struct scatterlist
*sg
, int nents
,
2083 enum dma_data_direction direction
,
2084 struct dma_attrs
*attrs
)
2086 dma_unmap_sg_attrs(dev
->dma_device
, sg
, nents
, direction
, attrs
);
2089 * ib_sg_dma_address - Return the DMA address from a scatter/gather entry
2090 * @dev: The device for which the DMA addresses were created
2091 * @sg: The scatter/gather entry
2093 static inline u64
ib_sg_dma_address(struct ib_device
*dev
,
2094 struct scatterlist
*sg
)
2097 return dev
->dma_ops
->dma_address(dev
, sg
);
2098 return sg_dma_address(sg
);
2102 * ib_sg_dma_len - Return the DMA length from a scatter/gather entry
2103 * @dev: The device for which the DMA addresses were created
2104 * @sg: The scatter/gather entry
2106 static inline unsigned int ib_sg_dma_len(struct ib_device
*dev
,
2107 struct scatterlist
*sg
)
2110 return dev
->dma_ops
->dma_len(dev
, sg
);
2111 return sg_dma_len(sg
);
2115 * ib_dma_sync_single_for_cpu - Prepare DMA region to be accessed by CPU
2116 * @dev: The device for which the DMA address was created
2117 * @addr: The DMA address
2118 * @size: The size of the region in bytes
2119 * @dir: The direction of the DMA
2121 static inline void ib_dma_sync_single_for_cpu(struct ib_device
*dev
,
2124 enum dma_data_direction dir
)
2127 dev
->dma_ops
->sync_single_for_cpu(dev
, addr
, size
, dir
);
2129 dma_sync_single_for_cpu(dev
->dma_device
, addr
, size
, dir
);
2133 * ib_dma_sync_single_for_device - Prepare DMA region to be accessed by device
2134 * @dev: The device for which the DMA address was created
2135 * @addr: The DMA address
2136 * @size: The size of the region in bytes
2137 * @dir: The direction of the DMA
2139 static inline void ib_dma_sync_single_for_device(struct ib_device
*dev
,
2142 enum dma_data_direction dir
)
2145 dev
->dma_ops
->sync_single_for_device(dev
, addr
, size
, dir
);
2147 dma_sync_single_for_device(dev
->dma_device
, addr
, size
, dir
);
2151 * ib_dma_alloc_coherent - Allocate memory and map it for DMA
2152 * @dev: The device for which the DMA address is requested
2153 * @size: The size of the region to allocate in bytes
2154 * @dma_handle: A pointer for returning the DMA address of the region
2155 * @flag: memory allocator flags
2157 static inline void *ib_dma_alloc_coherent(struct ib_device
*dev
,
2163 return dev
->dma_ops
->alloc_coherent(dev
, size
, dma_handle
, flag
);
2168 ret
= dma_alloc_coherent(dev
->dma_device
, size
, &handle
, flag
);
2169 *dma_handle
= handle
;
2175 * ib_dma_free_coherent - Free memory allocated by ib_dma_alloc_coherent()
2176 * @dev: The device for which the DMA addresses were allocated
2177 * @size: The size of the region
2178 * @cpu_addr: the address returned by ib_dma_alloc_coherent()
2179 * @dma_handle: the DMA address returned by ib_dma_alloc_coherent()
2181 static inline void ib_dma_free_coherent(struct ib_device
*dev
,
2182 size_t size
, void *cpu_addr
,
2186 dev
->dma_ops
->free_coherent(dev
, size
, cpu_addr
, dma_handle
);
2188 dma_free_coherent(dev
->dma_device
, size
, cpu_addr
, dma_handle
);
2192 * ib_reg_phys_mr - Prepares a virtually addressed memory region for use
2194 * @pd: The protection domain associated assigned to the registered region.
2195 * @phys_buf_array: Specifies a list of physical buffers to use in the
2197 * @num_phys_buf: Specifies the size of the phys_buf_array.
2198 * @mr_access_flags: Specifies the memory access rights.
2199 * @iova_start: The offset of the region's starting I/O virtual address.
2201 struct ib_mr
*ib_reg_phys_mr(struct ib_pd
*pd
,
2202 struct ib_phys_buf
*phys_buf_array
,
2204 int mr_access_flags
,
2208 * ib_rereg_phys_mr - Modifies the attributes of an existing memory region.
2209 * Conceptually, this call performs the functions deregister memory region
2210 * followed by register physical memory region. Where possible,
2211 * resources are reused instead of deallocated and reallocated.
2212 * @mr: The memory region to modify.
2213 * @mr_rereg_mask: A bit-mask used to indicate which of the following
2214 * properties of the memory region are being modified.
2215 * @pd: If %IB_MR_REREG_PD is set in mr_rereg_mask, this field specifies
2216 * the new protection domain to associated with the memory region,
2217 * otherwise, this parameter is ignored.
2218 * @phys_buf_array: If %IB_MR_REREG_TRANS is set in mr_rereg_mask, this
2219 * field specifies a list of physical buffers to use in the new
2220 * translation, otherwise, this parameter is ignored.
2221 * @num_phys_buf: If %IB_MR_REREG_TRANS is set in mr_rereg_mask, this
2222 * field specifies the size of the phys_buf_array, otherwise, this
2223 * parameter is ignored.
2224 * @mr_access_flags: If %IB_MR_REREG_ACCESS is set in mr_rereg_mask, this
2225 * field specifies the new memory access rights, otherwise, this
2226 * parameter is ignored.
2227 * @iova_start: The offset of the region's starting I/O virtual address.
2229 int ib_rereg_phys_mr(struct ib_mr
*mr
,
2232 struct ib_phys_buf
*phys_buf_array
,
2234 int mr_access_flags
,
2238 * ib_query_mr - Retrieves information about a specific memory region.
2239 * @mr: The memory region to retrieve information about.
2240 * @mr_attr: The attributes of the specified memory region.
2242 int ib_query_mr(struct ib_mr
*mr
, struct ib_mr_attr
*mr_attr
);
2245 * ib_dereg_mr - Deregisters a memory region and removes it from the
2246 * HCA translation table.
2247 * @mr: The memory region to deregister.
2249 * This function can fail, if the memory region has memory windows bound to it.
2251 int ib_dereg_mr(struct ib_mr
*mr
);
2254 * ib_alloc_fast_reg_mr - Allocates memory region usable with the
2255 * IB_WR_FAST_REG_MR send work request.
2256 * @pd: The protection domain associated with the region.
2257 * @max_page_list_len: requested max physical buffer list length to be
2258 * used with fast register work requests for this MR.
2260 struct ib_mr
*ib_alloc_fast_reg_mr(struct ib_pd
*pd
, int max_page_list_len
);
2263 * ib_alloc_fast_reg_page_list - Allocates a page list array
2264 * @device - ib device pointer.
2265 * @page_list_len - size of the page list array to be allocated.
2267 * This allocates and returns a struct ib_fast_reg_page_list * and a
2268 * page_list array that is at least page_list_len in size. The actual
2269 * size is returned in max_page_list_len. The caller is responsible
2270 * for initializing the contents of the page_list array before posting
2271 * a send work request with the IB_WC_FAST_REG_MR opcode.
2273 * The page_list array entries must be translated using one of the
2274 * ib_dma_*() functions just like the addresses passed to
2275 * ib_map_phys_fmr(). Once the ib_post_send() is issued, the struct
2276 * ib_fast_reg_page_list must not be modified by the caller until the
2277 * IB_WC_FAST_REG_MR work request completes.
2279 struct ib_fast_reg_page_list
*ib_alloc_fast_reg_page_list(
2280 struct ib_device
*device
, int page_list_len
);
2283 * ib_free_fast_reg_page_list - Deallocates a previously allocated
2285 * @page_list - struct ib_fast_reg_page_list pointer to be deallocated.
2287 void ib_free_fast_reg_page_list(struct ib_fast_reg_page_list
*page_list
);
2290 * ib_update_fast_reg_key - updates the key portion of the fast_reg MR
2292 * @mr - struct ib_mr pointer to be updated.
2293 * @newkey - new key to be used.
2295 static inline void ib_update_fast_reg_key(struct ib_mr
*mr
, u8 newkey
)
2297 mr
->lkey
= (mr
->lkey
& 0xffffff00) | newkey
;
2298 mr
->rkey
= (mr
->rkey
& 0xffffff00) | newkey
;
2302 * ib_inc_rkey - increments the key portion of the given rkey. Can be used
2303 * for calculating a new rkey for type 2 memory windows.
2304 * @rkey - the rkey to increment.
2306 static inline u32
ib_inc_rkey(u32 rkey
)
2308 const u32 mask
= 0x000000ff;
2309 return ((rkey
+ 1) & mask
) | (rkey
& ~mask
);
2313 * ib_alloc_mw - Allocates a memory window.
2314 * @pd: The protection domain associated with the memory window.
2315 * @type: The type of the memory window (1 or 2).
2317 struct ib_mw
*ib_alloc_mw(struct ib_pd
*pd
, enum ib_mw_type type
);
2320 * ib_bind_mw - Posts a work request to the send queue of the specified
2321 * QP, which binds the memory window to the given address range and
2322 * remote access attributes.
2323 * @qp: QP to post the bind work request on.
2324 * @mw: The memory window to bind.
2325 * @mw_bind: Specifies information about the memory window, including
2326 * its address range, remote access rights, and associated memory region.
2328 * If there is no immediate error, the function will update the rkey member
2329 * of the mw parameter to its new value. The bind operation can still fail
2332 static inline int ib_bind_mw(struct ib_qp
*qp
,
2334 struct ib_mw_bind
*mw_bind
)
2336 /* XXX reference counting in corresponding MR? */
2337 return mw
->device
->bind_mw
?
2338 mw
->device
->bind_mw(qp
, mw
, mw_bind
) :
2343 * ib_dealloc_mw - Deallocates a memory window.
2344 * @mw: The memory window to deallocate.
2346 int ib_dealloc_mw(struct ib_mw
*mw
);
2349 * ib_alloc_fmr - Allocates a unmapped fast memory region.
2350 * @pd: The protection domain associated with the unmapped region.
2351 * @mr_access_flags: Specifies the memory access rights.
2352 * @fmr_attr: Attributes of the unmapped region.
2354 * A fast memory region must be mapped before it can be used as part of
2357 struct ib_fmr
*ib_alloc_fmr(struct ib_pd
*pd
,
2358 int mr_access_flags
,
2359 struct ib_fmr_attr
*fmr_attr
);
2362 * ib_map_phys_fmr - Maps a list of physical pages to a fast memory region.
2363 * @fmr: The fast memory region to associate with the pages.
2364 * @page_list: An array of physical pages to map to the fast memory region.
2365 * @list_len: The number of pages in page_list.
2366 * @iova: The I/O virtual address to use with the mapped region.
2368 static inline int ib_map_phys_fmr(struct ib_fmr
*fmr
,
2369 u64
*page_list
, int list_len
,
2372 return fmr
->device
->map_phys_fmr(fmr
, page_list
, list_len
, iova
);
2376 * ib_unmap_fmr - Removes the mapping from a list of fast memory regions.
2377 * @fmr_list: A linked list of fast memory regions to unmap.
2379 int ib_unmap_fmr(struct list_head
*fmr_list
);
2382 * ib_dealloc_fmr - Deallocates a fast memory region.
2383 * @fmr: The fast memory region to deallocate.
2385 int ib_dealloc_fmr(struct ib_fmr
*fmr
);
2388 * ib_attach_mcast - Attaches the specified QP to a multicast group.
2389 * @qp: QP to attach to the multicast group. The QP must be type
2391 * @gid: Multicast group GID.
2392 * @lid: Multicast group LID in host byte order.
2394 * In order to send and receive multicast packets, subnet
2395 * administration must have created the multicast group and configured
2396 * the fabric appropriately. The port associated with the specified
2397 * QP must also be a member of the multicast group.
2399 int ib_attach_mcast(struct ib_qp
*qp
, union ib_gid
*gid
, u16 lid
);
2402 * ib_detach_mcast - Detaches the specified QP from a multicast group.
2403 * @qp: QP to detach from the multicast group.
2404 * @gid: Multicast group GID.
2405 * @lid: Multicast group LID in host byte order.
2407 int ib_detach_mcast(struct ib_qp
*qp
, union ib_gid
*gid
, u16 lid
);
2410 * ib_alloc_xrcd - Allocates an XRC domain.
2411 * @device: The device on which to allocate the XRC domain.
2413 struct ib_xrcd
*ib_alloc_xrcd(struct ib_device
*device
);
2416 * ib_dealloc_xrcd - Deallocates an XRC domain.
2417 * @xrcd: The XRC domain to deallocate.
2419 int ib_dealloc_xrcd(struct ib_xrcd
*xrcd
);
2421 struct ib_flow
*ib_create_flow(struct ib_qp
*qp
,
2422 struct ib_flow_attr
*flow_attr
, int domain
);
2423 int ib_destroy_flow(struct ib_flow
*flow_id
);
2425 static inline int ib_check_mr_access(int flags
)
2428 * Local write permission is required if remote write or
2429 * remote atomic permission is also requested.
2431 if (flags
& (IB_ACCESS_REMOTE_ATOMIC
| IB_ACCESS_REMOTE_WRITE
) &&
2432 !(flags
& IB_ACCESS_LOCAL_WRITE
))
2438 #endif /* IB_VERBS_H */