IB/iser: Unify fast memory registration flows
[linux-2.6/btrfs-unstable.git] / drivers / infiniband / ulp / iser / iscsi_iser.h
blobe6105d25e6c8fd575198dce2ff6782dca7f8ea33
1 /*
2 * iSER transport for the Open iSCSI Initiator & iSER transport internals
4 * Copyright (C) 2004 Dmitry Yusupov
5 * Copyright (C) 2004 Alex Aizman
6 * Copyright (C) 2005 Mike Christie
7 * based on code maintained by open-iscsi@googlegroups.com
9 * Copyright (c) 2004, 2005, 2006 Voltaire, Inc. All rights reserved.
10 * Copyright (c) 2005, 2006 Cisco Systems. All rights reserved.
11 * Copyright (c) 2013-2014 Mellanox Technologies. All rights reserved.
13 * This software is available to you under a choice of one of two
14 * licenses. You may choose to be licensed under the terms of the GNU
15 * General Public License (GPL) Version 2, available from the file
16 * COPYING in the main directory of this source tree, or the
17 * OpenIB.org BSD license below:
19 * Redistribution and use in source and binary forms, with or
20 * without modification, are permitted provided that the following
21 * conditions are met:
23 * - Redistributions of source code must retain the above
24 * copyright notice, this list of conditions and the following
25 * disclaimer.
27 * - Redistributions in binary form must reproduce the above
28 * copyright notice, this list of conditions and the following
29 * disclaimer in the documentation and/or other materials
30 * provided with the distribution.
32 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
33 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
34 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
35 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
36 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
37 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
38 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
39 * SOFTWARE.
41 #ifndef __ISCSI_ISER_H__
42 #define __ISCSI_ISER_H__
44 #include <linux/types.h>
45 #include <linux/net.h>
46 #include <linux/printk.h>
47 #include <scsi/libiscsi.h>
48 #include <scsi/scsi_transport_iscsi.h>
49 #include <scsi/scsi_cmnd.h>
50 #include <scsi/scsi_device.h>
52 #include <linux/interrupt.h>
53 #include <linux/wait.h>
54 #include <linux/sched.h>
55 #include <linux/list.h>
56 #include <linux/slab.h>
57 #include <linux/dma-mapping.h>
58 #include <linux/mutex.h>
59 #include <linux/mempool.h>
60 #include <linux/uio.h>
62 #include <linux/socket.h>
63 #include <linux/in.h>
64 #include <linux/in6.h>
66 #include <rdma/ib_verbs.h>
67 #include <rdma/ib_fmr_pool.h>
68 #include <rdma/rdma_cm.h>
70 #define DRV_NAME "iser"
71 #define PFX DRV_NAME ": "
72 #define DRV_VER "1.6"
74 #define iser_dbg(fmt, arg...) \
75 do { \
76 if (unlikely(iser_debug_level > 2)) \
77 printk(KERN_DEBUG PFX "%s: " fmt,\
78 __func__ , ## arg); \
79 } while (0)
81 #define iser_warn(fmt, arg...) \
82 do { \
83 if (unlikely(iser_debug_level > 0)) \
84 pr_warn(PFX "%s: " fmt, \
85 __func__ , ## arg); \
86 } while (0)
88 #define iser_info(fmt, arg...) \
89 do { \
90 if (unlikely(iser_debug_level > 1)) \
91 pr_info(PFX "%s: " fmt, \
92 __func__ , ## arg); \
93 } while (0)
95 #define iser_err(fmt, arg...) \
96 pr_err(PFX "%s: " fmt, __func__ , ## arg)
98 #define SHIFT_4K 12
99 #define SIZE_4K (1ULL << SHIFT_4K)
100 #define MASK_4K (~(SIZE_4K-1))
101 /* support up to 512KB in one RDMA */
102 #define ISCSI_ISER_SG_TABLESIZE (0x80000 >> SHIFT_4K)
103 #define ISER_DEF_XMIT_CMDS_DEFAULT 512
104 #if ISCSI_DEF_XMIT_CMDS_MAX > ISER_DEF_XMIT_CMDS_DEFAULT
105 #define ISER_DEF_XMIT_CMDS_MAX ISCSI_DEF_XMIT_CMDS_MAX
106 #else
107 #define ISER_DEF_XMIT_CMDS_MAX ISER_DEF_XMIT_CMDS_DEFAULT
108 #endif
109 #define ISER_DEF_CMD_PER_LUN ISER_DEF_XMIT_CMDS_MAX
111 /* QP settings */
112 /* Maximal bounds on received asynchronous PDUs */
113 #define ISER_MAX_RX_MISC_PDUS 4 /* NOOP_IN(2) , ASYNC_EVENT(2) */
115 #define ISER_MAX_TX_MISC_PDUS 6 /* NOOP_OUT(2), TEXT(1), *
116 * SCSI_TMFUNC(2), LOGOUT(1) */
118 #define ISER_QP_MAX_RECV_DTOS (ISER_DEF_XMIT_CMDS_MAX)
120 #define ISER_MIN_POSTED_RX (ISER_DEF_XMIT_CMDS_MAX >> 2)
122 /* the max TX (send) WR supported by the iSER QP is defined by *
123 * max_send_wr = T * (1 + D) + C ; D is how many inflight dataouts we expect *
124 * to have at max for SCSI command. The tx posting & completion handling code *
125 * supports -EAGAIN scheme where tx is suspended till the QP has room for more *
126 * send WR. D=8 comes from 64K/8K */
128 #define ISER_INFLIGHT_DATAOUTS 8
130 #define ISER_QP_MAX_REQ_DTOS (ISER_DEF_XMIT_CMDS_MAX * \
131 (1 + ISER_INFLIGHT_DATAOUTS) + \
132 ISER_MAX_TX_MISC_PDUS + \
133 ISER_MAX_RX_MISC_PDUS)
135 /* Max registration work requests per command */
136 #define ISER_MAX_REG_WR_PER_CMD 5
138 /* For Signature we don't support DATAOUTs so no need to make room for them */
139 #define ISER_QP_SIG_MAX_REQ_DTOS (ISER_DEF_XMIT_CMDS_MAX * \
140 (1 + ISER_MAX_REG_WR_PER_CMD) + \
141 ISER_MAX_TX_MISC_PDUS + \
142 ISER_MAX_RX_MISC_PDUS)
144 #define ISER_GET_MAX_XMIT_CMDS(send_wr) ((send_wr \
145 - ISER_MAX_TX_MISC_PDUS \
146 - ISER_MAX_RX_MISC_PDUS) / \
147 (1 + ISER_INFLIGHT_DATAOUTS))
149 #define ISER_WC_BATCH_COUNT 16
150 #define ISER_SIGNAL_CMD_COUNT 32
152 #define ISER_VER 0x10
153 #define ISER_WSV 0x08
154 #define ISER_RSV 0x04
156 #define ISER_FASTREG_LI_WRID 0xffffffffffffffffULL
157 #define ISER_BEACON_WRID 0xfffffffffffffffeULL
160 * struct iser_hdr - iSER header
162 * @flags: flags support (zbva, remote_inv)
163 * @rsvd: reserved
164 * @write_stag: write rkey
165 * @write_va: write virtual address
166 * @reaf_stag: read rkey
167 * @read_va: read virtual address
169 struct iser_hdr {
170 u8 flags;
171 u8 rsvd[3];
172 __be32 write_stag;
173 __be64 write_va;
174 __be32 read_stag;
175 __be64 read_va;
176 } __attribute__((packed));
179 #define ISER_ZBVA_NOT_SUPPORTED 0x80
180 #define ISER_SEND_W_INV_NOT_SUPPORTED 0x40
182 struct iser_cm_hdr {
183 u8 flags;
184 u8 rsvd[3];
185 } __packed;
187 /* Constant PDU lengths calculations */
188 #define ISER_HEADERS_LEN (sizeof(struct iser_hdr) + sizeof(struct iscsi_hdr))
190 #define ISER_RECV_DATA_SEG_LEN 128
191 #define ISER_RX_PAYLOAD_SIZE (ISER_HEADERS_LEN + ISER_RECV_DATA_SEG_LEN)
192 #define ISER_RX_LOGIN_SIZE (ISER_HEADERS_LEN + ISCSI_DEF_MAX_RECV_SEG_LEN)
194 /* Length of an object name string */
195 #define ISER_OBJECT_NAME_SIZE 64
197 enum iser_conn_state {
198 ISER_CONN_INIT, /* descriptor allocd, no conn */
199 ISER_CONN_PENDING, /* in the process of being established */
200 ISER_CONN_UP, /* up and running */
201 ISER_CONN_TERMINATING, /* in the process of being terminated */
202 ISER_CONN_DOWN, /* shut down */
203 ISER_CONN_STATES_NUM
206 enum iser_task_status {
207 ISER_TASK_STATUS_INIT = 0,
208 ISER_TASK_STATUS_STARTED,
209 ISER_TASK_STATUS_COMPLETED
212 enum iser_data_dir {
213 ISER_DIR_IN = 0, /* to initiator */
214 ISER_DIR_OUT, /* from initiator */
215 ISER_DIRS_NUM
219 * struct iser_data_buf - iSER data buffer
221 * @sg: pointer to the sg list
222 * @size: num entries of this sg
223 * @data_len: total beffer byte len
224 * @dma_nents: returned by dma_map_sg
225 * @orig_sg: pointer to the original sg list (in case
226 * we used a copy)
227 * @orig_size: num entris of orig sg list
229 struct iser_data_buf {
230 struct scatterlist *sg;
231 unsigned int size;
232 unsigned long data_len;
233 unsigned int dma_nents;
234 struct scatterlist *orig_sg;
235 unsigned int orig_size;
238 /* fwd declarations */
239 struct iser_device;
240 struct iscsi_iser_task;
241 struct iscsi_endpoint;
242 struct iser_reg_resources;
245 * struct iser_mem_reg - iSER memory registration info
247 * @sge: memory region sg element
248 * @rkey: memory region remote key
249 * @mem_h: pointer to registration context (FMR/Fastreg)
251 struct iser_mem_reg {
252 struct ib_sge sge;
253 u32 rkey;
254 void *mem_h;
257 enum iser_desc_type {
258 ISCSI_TX_CONTROL ,
259 ISCSI_TX_SCSI_COMMAND,
260 ISCSI_TX_DATAOUT
264 * struct iser_tx_desc - iSER TX descriptor (for send wr_id)
266 * @iser_header: iser header
267 * @iscsi_header: iscsi header
268 * @type: command/control/dataout
269 * @dam_addr: header buffer dma_address
270 * @tx_sg: sg[0] points to iser/iscsi headers
271 * sg[1] optionally points to either of immediate data
272 * unsolicited data-out or control
273 * @num_sge: number sges used on this TX task
274 * @mapped: Is the task header mapped
276 struct iser_tx_desc {
277 struct iser_hdr iser_header;
278 struct iscsi_hdr iscsi_header;
279 enum iser_desc_type type;
280 u64 dma_addr;
281 struct ib_sge tx_sg[2];
282 int num_sge;
283 bool mapped;
286 #define ISER_RX_PAD_SIZE (256 - (ISER_RX_PAYLOAD_SIZE + \
287 sizeof(u64) + sizeof(struct ib_sge)))
289 * struct iser_rx_desc - iSER RX descriptor (for recv wr_id)
291 * @iser_header: iser header
292 * @iscsi_header: iscsi header
293 * @data: received data segment
294 * @dma_addr: receive buffer dma address
295 * @rx_sg: ib_sge of receive buffer
296 * @pad: for sense data TODO: Modify to maximum sense length supported
298 struct iser_rx_desc {
299 struct iser_hdr iser_header;
300 struct iscsi_hdr iscsi_header;
301 char data[ISER_RECV_DATA_SEG_LEN];
302 u64 dma_addr;
303 struct ib_sge rx_sg;
304 char pad[ISER_RX_PAD_SIZE];
305 } __attribute__((packed));
307 struct iser_conn;
308 struct ib_conn;
309 struct iscsi_iser_task;
312 * struct iser_comp - iSER completion context
314 * @device: pointer to device handle
315 * @cq: completion queue
316 * @wcs: work completion array
317 * @tasklet: Tasklet handle
318 * @active_qps: Number of active QPs attached
319 * to completion context
321 struct iser_comp {
322 struct iser_device *device;
323 struct ib_cq *cq;
324 struct ib_wc wcs[ISER_WC_BATCH_COUNT];
325 struct tasklet_struct tasklet;
326 int active_qps;
330 * struct iser_device - Memory registration operations
331 * per-device registration schemes
333 * @alloc_reg_res: Allocate registration resources
334 * @free_reg_res: Free registration resources
335 * @fast_reg_mem: Register memory buffers
336 * @unreg_mem: Un-register memory buffers
337 * @reg_desc_get: Get a registration descriptor for pool
338 * @reg_desc_put: Get a registration descriptor to pool
340 struct iser_reg_ops {
341 int (*alloc_reg_res)(struct ib_conn *ib_conn,
342 unsigned cmds_max);
343 void (*free_reg_res)(struct ib_conn *ib_conn);
344 int (*reg_mem)(struct iscsi_iser_task *iser_task,
345 struct iser_data_buf *mem,
346 struct iser_reg_resources *rsc,
347 struct iser_mem_reg *reg);
348 void (*unreg_mem)(struct iscsi_iser_task *iser_task,
349 enum iser_data_dir cmd_dir);
350 struct iser_fr_desc * (*reg_desc_get)(struct ib_conn *ib_conn);
351 void (*reg_desc_put)(struct ib_conn *ib_conn,
352 struct iser_fr_desc *desc);
356 * struct iser_device - iSER device handle
358 * @ib_device: RDMA device
359 * @pd: Protection Domain for this device
360 * @dev_attr: Device attributes container
361 * @mr: Global DMA memory region
362 * @event_handler: IB events handle routine
363 * @ig_list: entry in devices list
364 * @refcount: Reference counter, dominated by open iser connections
365 * @comps_used: Number of completion contexts used, Min between online
366 * cpus and device max completion vectors
367 * @comps: Dinamically allocated array of completion handlers
368 * @reg_ops: Registration ops
370 struct iser_device {
371 struct ib_device *ib_device;
372 struct ib_pd *pd;
373 struct ib_device_attr dev_attr;
374 struct ib_mr *mr;
375 struct ib_event_handler event_handler;
376 struct list_head ig_list;
377 int refcount;
378 int comps_used;
379 struct iser_comp *comps;
380 struct iser_reg_ops *reg_ops;
383 #define ISER_CHECK_GUARD 0xc0
384 #define ISER_CHECK_REFTAG 0x0f
385 #define ISER_CHECK_APPTAG 0x30
388 * struct iser_reg_resources - Fast registration recources
390 * @mr: memory region
391 * @fmr_pool: pool of fmrs
392 * @frpl: fast reg page list used by frwrs
393 * @page_vec: fast reg page list used by fmr pool
394 * @mr_valid: is mr valid indicator
396 struct iser_reg_resources {
397 union {
398 struct ib_mr *mr;
399 struct ib_fmr_pool *fmr_pool;
401 union {
402 struct ib_fast_reg_page_list *frpl;
403 struct iser_page_vec *page_vec;
405 u8 mr_valid:1;
409 * struct iser_pi_context - Protection information context
411 * @rsc: protection buffer registration resources
412 * @sig_mr: signature enable memory region
413 * @sig_mr_valid: is sig_mr valid indicator
414 * @sig_protected: is region protected indicator
416 struct iser_pi_context {
417 struct iser_reg_resources rsc;
418 struct ib_mr *sig_mr;
419 u8 sig_mr_valid:1;
420 u8 sig_protected:1;
424 * struct iser_fr_desc - Fast registration descriptor
426 * @list: entry in connection fastreg pool
427 * @rsc: data buffer registration resources
428 * @pi_ctx: protection information context
430 struct iser_fr_desc {
431 struct list_head list;
432 struct iser_reg_resources rsc;
433 struct iser_pi_context *pi_ctx;
437 * struct iser_fr_pool: connection fast registration pool
439 * @list: list of fastreg descriptors
440 * @lock: protects fmr/fastreg pool
441 * @size: size of the pool
443 struct iser_fr_pool {
444 struct list_head list;
445 spinlock_t lock;
446 int size;
450 * struct ib_conn - Infiniband related objects
452 * @cma_id: rdma_cm connection maneger handle
453 * @qp: Connection Queue-pair
454 * @post_recv_buf_count: post receive counter
455 * @sig_count: send work request signal count
456 * @rx_wr: receive work request for batch posts
457 * @device: reference to iser device
458 * @comp: iser completion context
459 * @pi_support: Indicate device T10-PI support
460 * @beacon: beacon send wr to signal all flush errors were drained
461 * @flush_comp: completes when all connection completions consumed
462 * @fr_pool: connection fast registration poool
464 struct ib_conn {
465 struct rdma_cm_id *cma_id;
466 struct ib_qp *qp;
467 int post_recv_buf_count;
468 u8 sig_count;
469 struct ib_recv_wr rx_wr[ISER_MIN_POSTED_RX];
470 struct iser_device *device;
471 struct iser_comp *comp;
472 bool pi_support;
473 struct ib_send_wr beacon;
474 struct completion flush_comp;
475 struct iser_fr_pool fr_pool;
479 * struct iser_conn - iSER connection context
481 * @ib_conn: connection RDMA resources
482 * @iscsi_conn: link to matching iscsi connection
483 * @ep: transport handle
484 * @state: connection logical state
485 * @qp_max_recv_dtos: maximum number of data outs, corresponds
486 * to max number of post recvs
487 * @qp_max_recv_dtos_mask: (qp_max_recv_dtos - 1)
488 * @min_posted_rx: (qp_max_recv_dtos >> 2)
489 * @max_cmds: maximum cmds allowed for this connection
490 * @name: connection peer portal
491 * @release_work: deffered work for release job
492 * @state_mutex: protects iser onnection state
493 * @stop_completion: conn_stop completion
494 * @ib_completion: RDMA cleanup completion
495 * @up_completion: connection establishment completed
496 * (state is ISER_CONN_UP)
497 * @conn_list: entry in ig conn list
498 * @login_buf: login data buffer (stores login parameters)
499 * @login_req_buf: login request buffer
500 * @login_req_dma: login request buffer dma address
501 * @login_resp_buf: login response buffer
502 * @login_resp_dma: login response buffer dma address
503 * @rx_desc_head: head of rx_descs cyclic buffer
504 * @rx_descs: rx buffers array (cyclic buffer)
505 * @num_rx_descs: number of rx descriptors
507 struct iser_conn {
508 struct ib_conn ib_conn;
509 struct iscsi_conn *iscsi_conn;
510 struct iscsi_endpoint *ep;
511 enum iser_conn_state state;
512 unsigned qp_max_recv_dtos;
513 unsigned qp_max_recv_dtos_mask;
514 unsigned min_posted_rx;
515 u16 max_cmds;
516 char name[ISER_OBJECT_NAME_SIZE];
517 struct work_struct release_work;
518 struct mutex state_mutex;
519 struct completion stop_completion;
520 struct completion ib_completion;
521 struct completion up_completion;
522 struct list_head conn_list;
524 char *login_buf;
525 char *login_req_buf, *login_resp_buf;
526 u64 login_req_dma, login_resp_dma;
527 unsigned int rx_desc_head;
528 struct iser_rx_desc *rx_descs;
529 u32 num_rx_descs;
533 * struct iscsi_iser_task - iser task context
535 * @desc: TX descriptor
536 * @iser_conn: link to iser connection
537 * @status: current task status
538 * @sc: link to scsi command
539 * @command_sent: indicate if command was sent
540 * @dir: iser data direction
541 * @rdma_reg: task rdma registration desc
542 * @data: iser data buffer desc
543 * @prot: iser protection buffer desc
545 struct iscsi_iser_task {
546 struct iser_tx_desc desc;
547 struct iser_conn *iser_conn;
548 enum iser_task_status status;
549 struct scsi_cmnd *sc;
550 int command_sent;
551 int dir[ISER_DIRS_NUM];
552 struct iser_mem_reg rdma_reg[ISER_DIRS_NUM];
553 struct iser_data_buf data[ISER_DIRS_NUM];
554 struct iser_data_buf prot[ISER_DIRS_NUM];
557 struct iser_page_vec {
558 u64 *pages;
559 int length;
560 int offset;
561 int data_size;
565 * struct iser_global: iSER global context
567 * @device_list_mutex: protects device_list
568 * @device_list: iser devices global list
569 * @connlist_mutex: protects connlist
570 * @connlist: iser connections global list
571 * @desc_cache: kmem cache for tx dataout
573 struct iser_global {
574 struct mutex device_list_mutex;
575 struct list_head device_list;
576 struct mutex connlist_mutex;
577 struct list_head connlist;
578 struct kmem_cache *desc_cache;
581 extern struct iser_global ig;
582 extern int iser_debug_level;
583 extern bool iser_pi_enable;
584 extern int iser_pi_guard;
586 int iser_assign_reg_ops(struct iser_device *device);
588 int iser_send_control(struct iscsi_conn *conn,
589 struct iscsi_task *task);
591 int iser_send_command(struct iscsi_conn *conn,
592 struct iscsi_task *task);
594 int iser_send_data_out(struct iscsi_conn *conn,
595 struct iscsi_task *task,
596 struct iscsi_data *hdr);
598 void iscsi_iser_recv(struct iscsi_conn *conn,
599 struct iscsi_hdr *hdr,
600 char *rx_data,
601 int rx_data_len);
603 void iser_conn_init(struct iser_conn *iser_conn);
605 void iser_conn_release(struct iser_conn *iser_conn);
607 int iser_conn_terminate(struct iser_conn *iser_conn);
609 void iser_release_work(struct work_struct *work);
611 void iser_rcv_completion(struct iser_rx_desc *desc,
612 unsigned long dto_xfer_len,
613 struct ib_conn *ib_conn);
615 void iser_snd_completion(struct iser_tx_desc *desc,
616 struct ib_conn *ib_conn);
618 void iser_task_rdma_init(struct iscsi_iser_task *task);
620 void iser_task_rdma_finalize(struct iscsi_iser_task *task);
622 void iser_free_rx_descriptors(struct iser_conn *iser_conn);
624 void iser_finalize_rdma_unaligned_sg(struct iscsi_iser_task *iser_task,
625 struct iser_data_buf *mem,
626 enum iser_data_dir cmd_dir);
628 int iser_reg_rdma_mem(struct iscsi_iser_task *task,
629 enum iser_data_dir dir);
630 void iser_unreg_rdma_mem(struct iscsi_iser_task *task,
631 enum iser_data_dir dir);
633 int iser_connect(struct iser_conn *iser_conn,
634 struct sockaddr *src_addr,
635 struct sockaddr *dst_addr,
636 int non_blocking);
638 void iser_unreg_mem_fmr(struct iscsi_iser_task *iser_task,
639 enum iser_data_dir cmd_dir);
640 void iser_unreg_mem_fastreg(struct iscsi_iser_task *iser_task,
641 enum iser_data_dir cmd_dir);
643 int iser_post_recvl(struct iser_conn *iser_conn);
644 int iser_post_recvm(struct iser_conn *iser_conn, int count);
645 int iser_post_send(struct ib_conn *ib_conn, struct iser_tx_desc *tx_desc,
646 bool signal);
648 int iser_dma_map_task_data(struct iscsi_iser_task *iser_task,
649 struct iser_data_buf *data,
650 enum iser_data_dir iser_dir,
651 enum dma_data_direction dma_dir);
653 void iser_dma_unmap_task_data(struct iscsi_iser_task *iser_task,
654 struct iser_data_buf *data,
655 enum dma_data_direction dir);
657 int iser_initialize_task_headers(struct iscsi_task *task,
658 struct iser_tx_desc *tx_desc);
659 int iser_alloc_rx_descriptors(struct iser_conn *iser_conn,
660 struct iscsi_session *session);
661 int iser_alloc_fmr_pool(struct ib_conn *ib_conn, unsigned cmds_max);
662 void iser_free_fmr_pool(struct ib_conn *ib_conn);
663 int iser_alloc_fastreg_pool(struct ib_conn *ib_conn, unsigned cmds_max);
664 void iser_free_fastreg_pool(struct ib_conn *ib_conn);
665 u8 iser_check_task_pi_status(struct iscsi_iser_task *iser_task,
666 enum iser_data_dir cmd_dir, sector_t *sector);
667 struct iser_fr_desc *
668 iser_reg_desc_get_fr(struct ib_conn *ib_conn);
669 void
670 iser_reg_desc_put_fr(struct ib_conn *ib_conn,
671 struct iser_fr_desc *desc);
672 struct iser_fr_desc *
673 iser_reg_desc_get_fmr(struct ib_conn *ib_conn);
674 void
675 iser_reg_desc_put_fmr(struct ib_conn *ib_conn,
676 struct iser_fr_desc *desc);
677 #endif