Lines Matching +full:supports +full:- +full:cqe

7  * based on code maintained by open-iscsi@googlegroups.com
11 * Copyright (c) 2013-2014 Mellanox Technologies. All rights reserved.
23 * - Redistributions of source code must retain the above
27 * - Redistributions in binary form must reproduce the above
58 #include <linux/dma-mapping.h>
127 * supports -EAGAIN scheme where tx is suspended till the QP has room for more *
147 - ISER_MAX_TX_MISC_PDUS \
148 - ISER_MAX_RX_MISC_PDUS) / \
185 * struct iser_data_buf - iSER data buffer
206 * struct iser_mem_reg - iSER memory registration info
225 * struct iser_tx_desc - iSER TX descriptor
233 * unsolicited data-out or control
235 * @cqe: completion handler
248 struct ib_cqe cqe; member
255 #define ISER_RX_PAD_SIZE (256 - (ISER_RX_PAYLOAD_SIZE + \
259 * struct iser_rx_desc - iSER RX descriptor
266 * @cqe: completion handler
275 struct ib_cqe cqe; member
280 * struct iser_login_desc - iSER login descriptor
287 * @cqe: completion handler
295 struct ib_cqe cqe; member
303 * struct iser_device - iSER device handle
321 * struct iser_reg_resources - Fast registration resources
334 * struct iser_fr_desc - Fast registration descriptor
349 * struct iser_fr_pool - connection fast registration pool
364 * struct ib_conn - Infiniband related objects
367 * @qp: Connection Queue-pair
375 * @pi_support: Indicate device T10-PI support
393 * struct iser_conn - iSER connection context
401 * @qp_max_recv_dtos_mask: (qp_max_recv_dtos - 1)
446 * struct iscsi_iser_task - iser task context
471 * struct iser_global - iSER global context
578 iser_rx(struct ib_cqe *cqe) in iser_rx() argument
580 return container_of(cqe, struct iser_rx_desc, cqe); in iser_rx()
584 iser_tx(struct ib_cqe *cqe) in iser_tx() argument
586 return container_of(cqe, struct iser_tx_desc, cqe); in iser_tx()
590 iser_login(struct ib_cqe *cqe) in iser_login() argument
592 return container_of(cqe, struct iser_login_desc, cqe); in iser_login()