2 * iSCSI Initiator over iSER Data-Path
4 * Copyright (C) 2004 Dmitry Yusupov
5 * Copyright (C) 2004 Alex Aizman
6 * Copyright (C) 2005 Mike Christie
7 * Copyright (c) 2005, 2006 Voltaire, Inc. All rights reserved.
8 * maintained by openib-general@openib.org
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
47 #include <linux/types.h>
48 #include <linux/list.h>
49 #include <linux/hardirq.h>
50 #include <linux/kfifo.h>
51 #include <linux/blkdev.h>
52 #include <linux/init.h>
53 #include <linux/ioctl.h>
54 #include <linux/cdev.h>
56 #include <linux/net.h>
57 #include <linux/scatterlist.h>
58 #include <linux/delay.h>
59 #include <linux/slab.h>
63 #include <asm/uaccess.h>
65 #include <scsi/scsi_cmnd.h>
66 #include <scsi/scsi_device.h>
67 #include <scsi/scsi_eh.h>
68 #include <scsi/scsi_tcq.h>
69 #include <scsi/scsi_host.h>
70 #include <scsi/scsi.h>
71 #include <scsi/scsi_transport_iscsi.h>
73 #include "iscsi_iser.h"
75 static struct scsi_host_template iscsi_iser_sht
;
76 static struct iscsi_transport iscsi_iser_transport
;
77 static struct scsi_transport_template
*iscsi_iser_scsi_transport
;
79 static unsigned int iscsi_max_lun
= 512;
80 module_param_named(max_lun
, iscsi_max_lun
, uint
, S_IRUGO
);
82 int iser_debug_level
= 0;
84 MODULE_DESCRIPTION("iSER (iSCSI Extensions for RDMA) Datamover "
85 "v" DRV_VER
" (" DRV_DATE
")");
86 MODULE_LICENSE("Dual BSD/GPL");
87 MODULE_AUTHOR("Alex Nezhinsky, Dan Bar Dov, Or Gerlitz");
89 module_param_named(debug_level
, iser_debug_level
, int, 0644);
90 MODULE_PARM_DESC(debug_level
, "Enable debug tracing if > 0 (default:disabled)");
92 struct iser_global ig
;
95 iscsi_iser_recv(struct iscsi_conn
*conn
,
96 struct iscsi_hdr
*hdr
, char *rx_data
, int rx_data_len
)
102 /* verify PDU length */
103 datalen
= ntoh24(hdr
->dlength
);
104 if (datalen
> rx_data_len
|| (datalen
+ 4) < rx_data_len
) {
105 iser_err("wrong datalen %d (hdr), %d (IB)\n",
106 datalen
, rx_data_len
);
107 rc
= ISCSI_ERR_DATALEN
;
111 if (datalen
!= rx_data_len
)
112 iser_dbg("aligned datalen (%d) hdr, %d (IB)\n",
113 datalen
, rx_data_len
);
116 ahslen
= hdr
->hlength
* 4;
118 rc
= iscsi_complete_pdu(conn
, hdr
, rx_data
, rx_data_len
);
119 if (rc
&& rc
!= ISCSI_ERR_NO_SCSI_CMD
)
124 iscsi_conn_failure(conn
, rc
);
127 static int iscsi_iser_pdu_alloc(struct iscsi_task
*task
, uint8_t opcode
)
129 struct iscsi_iser_task
*iser_task
= task
->dd_data
;
131 task
->hdr
= (struct iscsi_hdr
*)&iser_task
->desc
.iscsi_header
;
132 task
->hdr_max
= sizeof(iser_task
->desc
.iscsi_header
);
136 int iser_initialize_task_headers(struct iscsi_task
*task
,
137 struct iser_tx_desc
*tx_desc
)
139 struct iscsi_iser_conn
*iser_conn
= task
->conn
->dd_data
;
140 struct iser_device
*device
= iser_conn
->ib_conn
->device
;
141 struct iscsi_iser_task
*iser_task
= task
->dd_data
;
144 dma_addr
= ib_dma_map_single(device
->ib_device
, (void *)tx_desc
,
145 ISER_HEADERS_LEN
, DMA_TO_DEVICE
);
146 if (ib_dma_mapping_error(device
->ib_device
, dma_addr
))
149 tx_desc
->dma_addr
= dma_addr
;
150 tx_desc
->tx_sg
[0].addr
= tx_desc
->dma_addr
;
151 tx_desc
->tx_sg
[0].length
= ISER_HEADERS_LEN
;
152 tx_desc
->tx_sg
[0].lkey
= device
->mr
->lkey
;
154 iser_task
->headers_initialized
= 1;
155 iser_task
->iser_conn
= iser_conn
;
159 * iscsi_iser_task_init - Initialize task
162 * Initialize the task for the scsi command or mgmt command.
165 iscsi_iser_task_init(struct iscsi_task
*task
)
167 struct iscsi_iser_task
*iser_task
= task
->dd_data
;
169 if (!iser_task
->headers_initialized
)
170 if (iser_initialize_task_headers(task
, &iser_task
->desc
))
177 iser_task
->command_sent
= 0;
178 iser_task_rdma_init(iser_task
);
183 * iscsi_iser_mtask_xmit - xmit management(immediate) task
184 * @conn: iscsi connection
185 * @task: task management task
188 * The function can return -EAGAIN in which case caller must
189 * call it again later, or recover. '0' return code means successful
194 iscsi_iser_mtask_xmit(struct iscsi_conn
*conn
, struct iscsi_task
*task
)
198 iser_dbg("mtask xmit [cid %d itt 0x%x]\n", conn
->id
, task
->itt
);
200 error
= iser_send_control(conn
, task
);
202 /* since iser xmits control with zero copy, tasks can not be recycled
203 * right after sending them.
204 * The recycling scheme is based on whether a response is expected
205 * - if yes, the task is recycled at iscsi_complete_pdu
206 * - if no, the task is recycled at iser_snd_completion
212 iscsi_iser_task_xmit_unsol_data(struct iscsi_conn
*conn
,
213 struct iscsi_task
*task
)
215 struct iscsi_r2t_info
*r2t
= &task
->unsol_r2t
;
216 struct iscsi_data hdr
;
219 /* Send data-out PDUs while there's still unsolicited data to send */
220 while (iscsi_task_has_unsol_data(task
)) {
221 iscsi_prep_data_out_pdu(task
, r2t
, &hdr
);
222 iser_dbg("Sending data-out: itt 0x%x, data count %d\n",
223 hdr
.itt
, r2t
->data_count
);
225 /* the buffer description has been passed with the command */
226 /* Send the command */
227 error
= iser_send_data_out(conn
, task
, &hdr
);
230 goto iscsi_iser_task_xmit_unsol_data_exit
;
232 r2t
->sent
+= r2t
->data_count
;
233 iser_dbg("Need to send %d more as data-out PDUs\n",
234 r2t
->data_length
- r2t
->sent
);
237 iscsi_iser_task_xmit_unsol_data_exit
:
242 iscsi_iser_task_xmit(struct iscsi_task
*task
)
244 struct iscsi_conn
*conn
= task
->conn
;
245 struct iscsi_iser_task
*iser_task
= task
->dd_data
;
249 return iscsi_iser_mtask_xmit(conn
, task
);
251 if (task
->sc
->sc_data_direction
== DMA_TO_DEVICE
) {
252 BUG_ON(scsi_bufflen(task
->sc
) == 0);
254 iser_dbg("cmd [itt %x total %d imm %d unsol_data %d\n",
255 task
->itt
, scsi_bufflen(task
->sc
),
256 task
->imm_count
, task
->unsol_r2t
.data_length
);
259 iser_dbg("ctask xmit [cid %d itt 0x%x]\n",
260 conn
->id
, task
->itt
);
262 /* Send the cmd PDU */
263 if (!iser_task
->command_sent
) {
264 error
= iser_send_command(conn
, task
);
266 goto iscsi_iser_task_xmit_exit
;
267 iser_task
->command_sent
= 1;
270 /* Send unsolicited data-out PDU(s) if necessary */
271 if (iscsi_task_has_unsol_data(task
))
272 error
= iscsi_iser_task_xmit_unsol_data(conn
, task
);
274 iscsi_iser_task_xmit_exit
:
278 static void iscsi_iser_cleanup_task(struct iscsi_task
*task
)
280 struct iscsi_iser_task
*iser_task
= task
->dd_data
;
282 /* mgmt tasks do not need special cleanup */
286 if (iser_task
->status
== ISER_TASK_STATUS_STARTED
) {
287 iser_task
->status
= ISER_TASK_STATUS_COMPLETED
;
288 iser_task_rdma_finalize(iser_task
);
292 static struct iscsi_cls_conn
*
293 iscsi_iser_conn_create(struct iscsi_cls_session
*cls_session
, uint32_t conn_idx
)
295 struct iscsi_conn
*conn
;
296 struct iscsi_cls_conn
*cls_conn
;
297 struct iscsi_iser_conn
*iser_conn
;
299 cls_conn
= iscsi_conn_setup(cls_session
, sizeof(*iser_conn
), conn_idx
);
302 conn
= cls_conn
->dd_data
;
305 * due to issues with the login code re iser sematics
306 * this not set in iscsi_conn_setup - FIXME
308 conn
->max_recv_dlength
= ISER_RECV_DATA_SEG_LEN
;
310 iser_conn
= conn
->dd_data
;
311 conn
->dd_data
= iser_conn
;
312 iser_conn
->iscsi_conn
= conn
;
318 iscsi_iser_conn_destroy(struct iscsi_cls_conn
*cls_conn
)
320 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
321 struct iscsi_iser_conn
*iser_conn
= conn
->dd_data
;
322 struct iser_conn
*ib_conn
= iser_conn
->ib_conn
;
324 iscsi_conn_teardown(cls_conn
);
326 * Userspace will normally call the stop callback and
327 * already have freed the ib_conn, but if it goofed up then
331 ib_conn
->iser_conn
= NULL
;
332 iser_conn_put(ib_conn
, 1); /* deref iscsi/ib conn unbinding */
337 iscsi_iser_conn_bind(struct iscsi_cls_session
*cls_session
,
338 struct iscsi_cls_conn
*cls_conn
, uint64_t transport_eph
,
341 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
342 struct iscsi_iser_conn
*iser_conn
;
343 struct iser_conn
*ib_conn
;
344 struct iscsi_endpoint
*ep
;
347 error
= iscsi_conn_bind(cls_session
, cls_conn
, is_leading
);
351 /* the transport ep handle comes from user space so it must be
352 * verified against the global ib connections list */
353 ep
= iscsi_lookup_endpoint(transport_eph
);
355 iser_err("can't bind eph %llx\n",
356 (unsigned long long)transport_eph
);
359 ib_conn
= ep
->dd_data
;
361 /* binds the iSER connection retrieved from the previously
362 * connected ep_handle to the iSCSI layer connection. exchanges
363 * connection pointers */
364 iser_err("binding iscsi/iser conn %p %p to ib_conn %p\n",
365 conn
, conn
->dd_data
, ib_conn
);
366 iser_conn
= conn
->dd_data
;
367 ib_conn
->iser_conn
= iser_conn
;
368 iser_conn
->ib_conn
= ib_conn
;
369 iser_conn_get(ib_conn
); /* ref iscsi/ib conn binding */
374 iscsi_iser_conn_stop(struct iscsi_cls_conn
*cls_conn
, int flag
)
376 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
377 struct iscsi_iser_conn
*iser_conn
= conn
->dd_data
;
378 struct iser_conn
*ib_conn
= iser_conn
->ib_conn
;
381 * Userspace may have goofed up and not bound the connection or
382 * might have only partially setup the connection.
385 iscsi_conn_stop(cls_conn
, flag
);
387 * There is no unbind event so the stop callback
388 * must release the ref from the bind.
390 iser_conn_put(ib_conn
, 1); /* deref iscsi/ib conn unbinding */
392 iser_conn
->ib_conn
= NULL
;
396 iscsi_iser_conn_start(struct iscsi_cls_conn
*cls_conn
)
398 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
401 err
= iser_conn_set_full_featured_mode(conn
);
405 return iscsi_conn_start(cls_conn
);
408 static void iscsi_iser_session_destroy(struct iscsi_cls_session
*cls_session
)
410 struct Scsi_Host
*shost
= iscsi_session_to_shost(cls_session
);
412 iscsi_session_teardown(cls_session
);
413 iscsi_host_remove(shost
);
414 iscsi_host_free(shost
);
417 static struct iscsi_cls_session
*
418 iscsi_iser_session_create(struct iscsi_endpoint
*ep
,
419 uint16_t cmds_max
, uint16_t qdepth
,
420 uint32_t initial_cmdsn
)
422 struct iscsi_cls_session
*cls_session
;
423 struct iscsi_session
*session
;
424 struct Scsi_Host
*shost
;
425 struct iser_conn
*ib_conn
;
427 shost
= iscsi_host_alloc(&iscsi_iser_sht
, 0, 0);
430 shost
->transportt
= iscsi_iser_scsi_transport
;
431 shost
->max_lun
= iscsi_max_lun
;
433 shost
->max_channel
= 0;
434 shost
->max_cmd_len
= 16;
437 * older userspace tools (before 2.0-870) did not pass us
438 * the leading conn's ep so this will be NULL;
441 ib_conn
= ep
->dd_data
;
443 if (iscsi_host_add(shost
,
444 ep
? ib_conn
->device
->ib_device
->dma_device
: NULL
))
448 * we do not support setting can_queue cmd_per_lun from userspace yet
449 * because we preallocate so many resources
451 cls_session
= iscsi_session_setup(&iscsi_iser_transport
, shost
,
452 ISCSI_DEF_XMIT_CMDS_MAX
, 0,
453 sizeof(struct iscsi_iser_task
),
457 session
= cls_session
->dd_data
;
459 shost
->can_queue
= session
->scsi_cmds_max
;
463 iscsi_host_remove(shost
);
465 iscsi_host_free(shost
);
470 iscsi_iser_set_param(struct iscsi_cls_conn
*cls_conn
,
471 enum iscsi_param param
, char *buf
, int buflen
)
476 case ISCSI_PARAM_MAX_RECV_DLENGTH
:
479 case ISCSI_PARAM_HDRDGST_EN
:
480 sscanf(buf
, "%d", &value
);
482 printk(KERN_ERR
"DataDigest wasn't negotiated to None");
486 case ISCSI_PARAM_DATADGST_EN
:
487 sscanf(buf
, "%d", &value
);
489 printk(KERN_ERR
"DataDigest wasn't negotiated to None");
493 case ISCSI_PARAM_IFMARKER_EN
:
494 sscanf(buf
, "%d", &value
);
496 printk(KERN_ERR
"IFMarker wasn't negotiated to No");
500 case ISCSI_PARAM_OFMARKER_EN
:
501 sscanf(buf
, "%d", &value
);
503 printk(KERN_ERR
"OFMarker wasn't negotiated to No");
508 return iscsi_set_param(cls_conn
, param
, buf
, buflen
);
515 iscsi_iser_conn_get_stats(struct iscsi_cls_conn
*cls_conn
, struct iscsi_stats
*stats
)
517 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
519 stats
->txdata_octets
= conn
->txdata_octets
;
520 stats
->rxdata_octets
= conn
->rxdata_octets
;
521 stats
->scsicmd_pdus
= conn
->scsicmd_pdus_cnt
;
522 stats
->dataout_pdus
= conn
->dataout_pdus_cnt
;
523 stats
->scsirsp_pdus
= conn
->scsirsp_pdus_cnt
;
524 stats
->datain_pdus
= conn
->datain_pdus_cnt
; /* always 0 */
525 stats
->r2t_pdus
= conn
->r2t_pdus_cnt
; /* always 0 */
526 stats
->tmfcmd_pdus
= conn
->tmfcmd_pdus_cnt
;
527 stats
->tmfrsp_pdus
= conn
->tmfrsp_pdus_cnt
;
528 stats
->custom_length
= 4;
529 strcpy(stats
->custom
[0].desc
, "qp_tx_queue_full");
530 stats
->custom
[0].value
= 0; /* TB iser_conn->qp_tx_queue_full; */
531 strcpy(stats
->custom
[1].desc
, "fmr_map_not_avail");
532 stats
->custom
[1].value
= 0; /* TB iser_conn->fmr_map_not_avail */;
533 strcpy(stats
->custom
[2].desc
, "eh_abort_cnt");
534 stats
->custom
[2].value
= conn
->eh_abort_cnt
;
535 strcpy(stats
->custom
[3].desc
, "fmr_unalign_cnt");
536 stats
->custom
[3].value
= conn
->fmr_unalign_cnt
;
539 static int iscsi_iser_get_ep_param(struct iscsi_endpoint
*ep
,
540 enum iscsi_param param
, char *buf
)
542 struct iser_conn
*ib_conn
= ep
->dd_data
;
546 case ISCSI_PARAM_CONN_PORT
:
547 case ISCSI_PARAM_CONN_ADDRESS
:
548 if (!ib_conn
|| !ib_conn
->cma_id
)
551 return iscsi_conn_get_addr_param((struct sockaddr_storage
*)
552 &ib_conn
->cma_id
->route
.addr
.dst_addr
,
562 static struct iscsi_endpoint
*
563 iscsi_iser_ep_connect(struct Scsi_Host
*shost
, struct sockaddr
*dst_addr
,
567 struct iser_conn
*ib_conn
;
568 struct iscsi_endpoint
*ep
;
570 ep
= iscsi_create_endpoint(sizeof(*ib_conn
));
572 return ERR_PTR(-ENOMEM
);
574 ib_conn
= ep
->dd_data
;
576 iser_conn_init(ib_conn
);
578 err
= iser_connect(ib_conn
, NULL
, (struct sockaddr_in
*)dst_addr
,
581 iscsi_destroy_endpoint(ep
);
588 iscsi_iser_ep_poll(struct iscsi_endpoint
*ep
, int timeout_ms
)
590 struct iser_conn
*ib_conn
;
593 ib_conn
= ep
->dd_data
;
594 rc
= wait_event_interruptible_timeout(ib_conn
->wait
,
595 ib_conn
->state
== ISER_CONN_UP
,
596 msecs_to_jiffies(timeout_ms
));
598 /* if conn establishment failed, return error code to iscsi */
600 (ib_conn
->state
== ISER_CONN_TERMINATING
||
601 ib_conn
->state
== ISER_CONN_DOWN
))
604 iser_err("ib conn %p rc = %d\n", ib_conn
, rc
);
607 return 1; /* success, this is the equivalent of POLLOUT */
609 return 0; /* timeout */
611 return rc
; /* signal */
615 iscsi_iser_ep_disconnect(struct iscsi_endpoint
*ep
)
617 struct iser_conn
*ib_conn
;
619 ib_conn
= ep
->dd_data
;
620 if (ib_conn
->iser_conn
)
622 * Must suspend xmit path if the ep is bound to the
623 * iscsi_conn, so we know we are not accessing the ib_conn
626 * This may not be bound if the ep poll failed.
628 iscsi_suspend_tx(ib_conn
->iser_conn
->iscsi_conn
);
631 iser_err("ib conn %p state %d\n",ib_conn
, ib_conn
->state
);
632 iser_conn_terminate(ib_conn
);
635 static mode_t
iser_attr_is_visible(int param_type
, int param
)
637 switch (param_type
) {
638 case ISCSI_HOST_PARAM
:
640 case ISCSI_HOST_PARAM_NETDEV_NAME
:
641 case ISCSI_HOST_PARAM_HWADDRESS
:
642 case ISCSI_HOST_PARAM_INITIATOR_NAME
:
649 case ISCSI_PARAM_MAX_RECV_DLENGTH
:
650 case ISCSI_PARAM_MAX_XMIT_DLENGTH
:
651 case ISCSI_PARAM_HDRDGST_EN
:
652 case ISCSI_PARAM_DATADGST_EN
:
653 case ISCSI_PARAM_CONN_ADDRESS
:
654 case ISCSI_PARAM_CONN_PORT
:
655 case ISCSI_PARAM_EXP_STATSN
:
656 case ISCSI_PARAM_PERSISTENT_ADDRESS
:
657 case ISCSI_PARAM_PERSISTENT_PORT
:
658 case ISCSI_PARAM_PING_TMO
:
659 case ISCSI_PARAM_RECV_TMO
:
660 case ISCSI_PARAM_INITIAL_R2T_EN
:
661 case ISCSI_PARAM_MAX_R2T
:
662 case ISCSI_PARAM_IMM_DATA_EN
:
663 case ISCSI_PARAM_FIRST_BURST
:
664 case ISCSI_PARAM_MAX_BURST
:
665 case ISCSI_PARAM_PDU_INORDER_EN
:
666 case ISCSI_PARAM_DATASEQ_INORDER_EN
:
667 case ISCSI_PARAM_TARGET_NAME
:
668 case ISCSI_PARAM_TPGT
:
669 case ISCSI_PARAM_USERNAME
:
670 case ISCSI_PARAM_PASSWORD
:
671 case ISCSI_PARAM_USERNAME_IN
:
672 case ISCSI_PARAM_PASSWORD_IN
:
673 case ISCSI_PARAM_FAST_ABORT
:
674 case ISCSI_PARAM_ABORT_TMO
:
675 case ISCSI_PARAM_LU_RESET_TMO
:
676 case ISCSI_PARAM_TGT_RESET_TMO
:
677 case ISCSI_PARAM_IFACE_NAME
:
678 case ISCSI_PARAM_INITIATOR_NAME
:
688 static struct scsi_host_template iscsi_iser_sht
= {
689 .module
= THIS_MODULE
,
690 .name
= "iSCSI Initiator over iSER, v." DRV_VER
,
691 .queuecommand
= iscsi_queuecommand
,
692 .change_queue_depth
= iscsi_change_queue_depth
,
693 .sg_tablesize
= ISCSI_ISER_SG_TABLESIZE
,
695 .cmd_per_lun
= ISER_DEF_CMD_PER_LUN
,
696 .eh_abort_handler
= iscsi_eh_abort
,
697 .eh_device_reset_handler
= iscsi_eh_device_reset
,
698 .eh_target_reset_handler
= iscsi_eh_recover_target
,
699 .target_alloc
= iscsi_target_alloc
,
700 .use_clustering
= DISABLE_CLUSTERING
,
701 .proc_name
= "iscsi_iser",
705 static struct iscsi_transport iscsi_iser_transport
= {
706 .owner
= THIS_MODULE
,
708 .caps
= CAP_RECOVERY_L0
| CAP_MULTI_R2T
,
709 /* session management */
710 .create_session
= iscsi_iser_session_create
,
711 .destroy_session
= iscsi_iser_session_destroy
,
712 /* connection management */
713 .create_conn
= iscsi_iser_conn_create
,
714 .bind_conn
= iscsi_iser_conn_bind
,
715 .destroy_conn
= iscsi_iser_conn_destroy
,
716 .attr_is_visible
= iser_attr_is_visible
,
717 .set_param
= iscsi_iser_set_param
,
718 .get_conn_param
= iscsi_conn_get_param
,
719 .get_ep_param
= iscsi_iser_get_ep_param
,
720 .get_session_param
= iscsi_session_get_param
,
721 .start_conn
= iscsi_iser_conn_start
,
722 .stop_conn
= iscsi_iser_conn_stop
,
723 /* iscsi host params */
724 .get_host_param
= iscsi_host_get_param
,
725 .set_host_param
= iscsi_host_set_param
,
727 .send_pdu
= iscsi_conn_send_pdu
,
728 .get_stats
= iscsi_iser_conn_get_stats
,
729 .init_task
= iscsi_iser_task_init
,
730 .xmit_task
= iscsi_iser_task_xmit
,
731 .cleanup_task
= iscsi_iser_cleanup_task
,
732 .alloc_pdu
= iscsi_iser_pdu_alloc
,
734 .session_recovery_timedout
= iscsi_session_recovery_timedout
,
736 .ep_connect
= iscsi_iser_ep_connect
,
737 .ep_poll
= iscsi_iser_ep_poll
,
738 .ep_disconnect
= iscsi_iser_ep_disconnect
741 static int __init
iser_init(void)
745 iser_dbg("Starting iSER datamover...\n");
747 if (iscsi_max_lun
< 1) {
748 printk(KERN_ERR
"Invalid max_lun value of %u\n", iscsi_max_lun
);
752 memset(&ig
, 0, sizeof(struct iser_global
));
754 ig
.desc_cache
= kmem_cache_create("iser_descriptors",
755 sizeof(struct iser_tx_desc
),
756 0, SLAB_HWCACHE_ALIGN
,
758 if (ig
.desc_cache
== NULL
)
761 /* device init is called only after the first addr resolution */
762 mutex_init(&ig
.device_list_mutex
);
763 INIT_LIST_HEAD(&ig
.device_list
);
764 mutex_init(&ig
.connlist_mutex
);
765 INIT_LIST_HEAD(&ig
.connlist
);
767 iscsi_iser_scsi_transport
= iscsi_register_transport(
768 &iscsi_iser_transport
);
769 if (!iscsi_iser_scsi_transport
) {
770 iser_err("iscsi_register_transport failed\n");
772 goto register_transport_failure
;
777 register_transport_failure
:
778 kmem_cache_destroy(ig
.desc_cache
);
783 static void __exit
iser_exit(void)
785 iser_dbg("Removing iSER datamover...\n");
786 iscsi_unregister_transport(&iscsi_iser_transport
);
787 kmem_cache_destroy(ig
.desc_cache
);
790 module_init(iser_init
);
791 module_exit(iser_exit
);