[SCSI] libiscsi: fix iscsi cmdsn allocation
[deliverable/linux.git] / drivers / infiniband / ulp / iser / iscsi_iser.c
CommitLineData
65e7ae7b
OG
1/*
2 * iSCSI Initiator over iSER Data-Path
3 *
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
9 *
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:
15 *
16 * Redistribution and use in source and binary forms, with or
17 * without modification, are permitted provided that the following
18 * conditions are met:
19 *
20 * - Redistributions of source code must retain the above
21 * copyright notice, this list of conditions and the following
22 * disclaimer.
23 *
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.
28 *
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
36 * SOFTWARE.
37 *
38 * Credits:
39 * Christoph Hellwig
40 * FUJITA Tomonori
41 * Arne Redlich
42 * Zhenyu Wang
43 * Modified by:
44 * Erez Zilber
45 *
46 *
47 * $Id: iscsi_iser.c 6965 2006-05-07 11:36:20Z ogerlitz $
48 */
49
50#include <linux/types.h>
51#include <linux/list.h>
52#include <linux/hardirq.h>
53#include <linux/kfifo.h>
54#include <linux/blkdev.h>
55#include <linux/init.h>
56#include <linux/ioctl.h>
65e7ae7b
OG
57#include <linux/cdev.h>
58#include <linux/in.h>
59#include <linux/net.h>
60#include <linux/scatterlist.h>
61#include <linux/delay.h>
62
63#include <net/sock.h>
64
65#include <asm/uaccess.h>
66
67#include <scsi/scsi_cmnd.h>
68#include <scsi/scsi_device.h>
69#include <scsi/scsi_eh.h>
70#include <scsi/scsi_tcq.h>
71#include <scsi/scsi_host.h>
72#include <scsi/scsi.h>
73#include <scsi/scsi_transport_iscsi.h>
74
75#include "iscsi_iser.h"
76
77static unsigned int iscsi_max_lun = 512;
78module_param_named(max_lun, iscsi_max_lun, uint, S_IRUGO);
79
80int iser_debug_level = 0;
81
82MODULE_DESCRIPTION("iSER (iSCSI Extensions for RDMA) Datamover "
83 "v" DRV_VER " (" DRV_DATE ")");
84MODULE_LICENSE("Dual BSD/GPL");
85MODULE_AUTHOR("Alex Nezhinsky, Dan Bar Dov, Or Gerlitz");
86
87module_param_named(debug_level, iser_debug_level, int, 0644);
88MODULE_PARM_DESC(debug_level, "Enable debug tracing if > 0 (default:disabled)");
89
90struct iser_global ig;
91
92void
93iscsi_iser_recv(struct iscsi_conn *conn,
94 struct iscsi_hdr *hdr, char *rx_data, int rx_data_len)
95{
96 int rc = 0;
97 uint32_t ret_itt;
98 int datalen;
99 int ahslen;
100
101 /* verify PDU length */
102 datalen = ntoh24(hdr->dlength);
103 if (datalen != rx_data_len) {
104 printk(KERN_ERR "iscsi_iser: datalen %d (hdr) != %d (IB) \n",
105 datalen, rx_data_len);
106 rc = ISCSI_ERR_DATALEN;
107 goto error;
108 }
109
110 /* read AHS */
111 ahslen = hdr->hlength * 4;
112
113 /* verify itt (itt encoding: age+cid+itt) */
114 rc = iscsi_verify_itt(conn, hdr, &ret_itt);
115
116 if (!rc)
117 rc = iscsi_complete_pdu(conn, hdr, rx_data, rx_data_len);
118
119 if (rc && rc != ISCSI_ERR_NO_SCSI_CMD)
120 goto error;
121
122 return;
123error:
124 iscsi_conn_failure(conn, rc);
125}
126
127
128/**
129 * iscsi_iser_cmd_init - Initialize iSCSI SCSI_READ or SCSI_WRITE commands
130 *
131 **/
132static void
133iscsi_iser_cmd_init(struct iscsi_cmd_task *ctask)
134{
135 struct iscsi_iser_conn *iser_conn = ctask->conn->dd_data;
136 struct iscsi_iser_cmd_task *iser_ctask = ctask->dd_data;
65e7ae7b
OG
137
138 iser_ctask->command_sent = 0;
139 iser_ctask->iser_conn = iser_conn;
65e7ae7b
OG
140 iser_ctask_rdma_init(iser_ctask);
141}
142
143/**
144 * iscsi_mtask_xmit - xmit management(immediate) task
145 * @conn: iscsi connection
146 * @mtask: task management task
147 *
148 * Notes:
149 * The function can return -EAGAIN in which case caller must
150 * call it again later, or recover. '0' return code means successful
151 * xmit.
152 *
153 **/
154static int
155iscsi_iser_mtask_xmit(struct iscsi_conn *conn,
156 struct iscsi_mgmt_task *mtask)
157{
158 int error = 0;
159
160 debug_scsi("mtask deq [cid %d itt 0x%x]\n", conn->id, mtask->itt);
161
162 error = iser_send_control(conn, mtask);
163
164 /* since iser xmits control with zero copy, mtasks can not be recycled
165 * right after sending them.
166 * The recycling scheme is based on whether a response is expected
167 * - if yes, the mtask is recycled at iscsi_complete_pdu
168 * - if no, the mtask is recycled at iser_snd_completion
169 */
f0938401 170 if (error && error != -ENOBUFS)
65e7ae7b
OG
171 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
172
173 return error;
174}
175
176static int
177iscsi_iser_ctask_xmit_unsol_data(struct iscsi_conn *conn,
178 struct iscsi_cmd_task *ctask)
179{
180 struct iscsi_data hdr;
181 int error = 0;
65e7ae7b
OG
182
183 /* Send data-out PDUs while there's still unsolicited data to send */
184 while (ctask->unsol_count > 0) {
ffd0436e 185 iscsi_prep_unsolicit_data_pdu(ctask, &hdr);
65e7ae7b
OG
186 debug_scsi("Sending data-out: itt 0x%x, data count %d\n",
187 hdr.itt, ctask->data_count);
188
189 /* the buffer description has been passed with the command */
190 /* Send the command */
191 error = iser_send_data_out(conn, ctask, &hdr);
192 if (error) {
193 ctask->unsol_datasn--;
194 goto iscsi_iser_ctask_xmit_unsol_data_exit;
195 }
196 ctask->unsol_count -= ctask->data_count;
197 debug_scsi("Need to send %d more as data-out PDUs\n",
198 ctask->unsol_count);
199 }
200
201iscsi_iser_ctask_xmit_unsol_data_exit:
202 return error;
203}
204
205static int
206iscsi_iser_ctask_xmit(struct iscsi_conn *conn,
207 struct iscsi_cmd_task *ctask)
208{
209 struct iscsi_iser_cmd_task *iser_ctask = ctask->dd_data;
210 int error = 0;
211
77a23c21
MC
212 if (ctask->sc->sc_data_direction == DMA_TO_DEVICE) {
213 BUG_ON(ctask->sc->request_bufflen == 0);
214
215 debug_scsi("cmd [itt %x total %d imm %d unsol_data %d\n",
216 ctask->itt, ctask->sc->request_bufflen,
217 ctask->imm_count, ctask->unsol_count);
218 }
219
65e7ae7b
OG
220 debug_scsi("ctask deq [cid %d itt 0x%x]\n",
221 conn->id, ctask->itt);
222
223 /*
224 * serialize with TMF AbortTask
225 */
226 if (ctask->mtask)
227 return error;
228
229 /* Send the cmd PDU */
230 if (!iser_ctask->command_sent) {
231 error = iser_send_command(conn, ctask);
232 if (error)
233 goto iscsi_iser_ctask_xmit_exit;
234 iser_ctask->command_sent = 1;
235 }
236
237 /* Send unsolicited data-out PDU(s) if necessary */
238 if (ctask->unsol_count)
239 error = iscsi_iser_ctask_xmit_unsol_data(conn, ctask);
240
241 iscsi_iser_ctask_xmit_exit:
f0938401 242 if (error && error != -ENOBUFS)
65e7ae7b
OG
243 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
244 return error;
245}
246
247static void
248iscsi_iser_cleanup_ctask(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
249{
250 struct iscsi_iser_cmd_task *iser_ctask = ctask->dd_data;
251
252 if (iser_ctask->status == ISER_TASK_STATUS_STARTED) {
253 iser_ctask->status = ISER_TASK_STATUS_COMPLETED;
254 iser_ctask_rdma_finalize(iser_ctask);
255 }
256}
257
258static struct iser_conn *
259iscsi_iser_ib_conn_lookup(__u64 ep_handle)
260{
261 struct iser_conn *ib_conn;
262 struct iser_conn *uib_conn = (struct iser_conn *)(unsigned long)ep_handle;
263
264 mutex_lock(&ig.connlist_mutex);
265 list_for_each_entry(ib_conn, &ig.connlist, conn_list) {
266 if (ib_conn == uib_conn) {
267 mutex_unlock(&ig.connlist_mutex);
268 return ib_conn;
269 }
270 }
271 mutex_unlock(&ig.connlist_mutex);
272 iser_err("no conn exists for eph %llx\n",(unsigned long long)ep_handle);
273 return NULL;
274}
275
276static struct iscsi_cls_conn *
277iscsi_iser_conn_create(struct iscsi_cls_session *cls_session, uint32_t conn_idx)
278{
279 struct iscsi_conn *conn;
280 struct iscsi_cls_conn *cls_conn;
281 struct iscsi_iser_conn *iser_conn;
282
283 cls_conn = iscsi_conn_setup(cls_session, conn_idx);
284 if (!cls_conn)
285 return NULL;
286 conn = cls_conn->dd_data;
287
288 /*
289 * due to issues with the login code re iser sematics
290 * this not set in iscsi_conn_setup - FIXME
291 */
292 conn->max_recv_dlength = 128;
293
294 iser_conn = kzalloc(sizeof(*iser_conn), GFP_KERNEL);
295 if (!iser_conn)
296 goto conn_alloc_fail;
297
298 /* currently this is the only field which need to be initiated */
299 rwlock_init(&iser_conn->lock);
300
301 conn->dd_data = iser_conn;
302 iser_conn->iscsi_conn = conn;
303
304 return cls_conn;
305
306conn_alloc_fail:
307 iscsi_conn_teardown(cls_conn);
308 return NULL;
309}
310
311static void
312iscsi_iser_conn_destroy(struct iscsi_cls_conn *cls_conn)
313{
314 struct iscsi_conn *conn = cls_conn->dd_data;
315 struct iscsi_iser_conn *iser_conn = conn->dd_data;
316
317 iscsi_conn_teardown(cls_conn);
87e8df7a
EZ
318 if (iser_conn->ib_conn)
319 iser_conn->ib_conn->iser_conn = NULL;
65e7ae7b
OG
320 kfree(iser_conn);
321}
322
323static int
324iscsi_iser_conn_bind(struct iscsi_cls_session *cls_session,
325 struct iscsi_cls_conn *cls_conn, uint64_t transport_eph,
326 int is_leading)
327{
328 struct iscsi_conn *conn = cls_conn->dd_data;
329 struct iscsi_iser_conn *iser_conn;
330 struct iser_conn *ib_conn;
331 int error;
332
333 error = iscsi_conn_bind(cls_session, cls_conn, is_leading);
334 if (error)
335 return error;
336
337 /* the transport ep handle comes from user space so it must be
338 * verified against the global ib connections list */
339 ib_conn = iscsi_iser_ib_conn_lookup(transport_eph);
340 if (!ib_conn) {
341 iser_err("can't bind eph %llx\n",
342 (unsigned long long)transport_eph);
343 return -EINVAL;
344 }
345 /* binds the iSER connection retrieved from the previously
346 * connected ep_handle to the iSCSI layer connection. exchanges
347 * connection pointers */
348 iser_err("binding iscsi conn %p to iser_conn %p\n",conn,ib_conn);
349 iser_conn = conn->dd_data;
350 ib_conn->iser_conn = iser_conn;
351 iser_conn->ib_conn = ib_conn;
352
353 conn->recv_lock = &iser_conn->lock;
354
355 return 0;
356}
357
358static int
359iscsi_iser_conn_start(struct iscsi_cls_conn *cls_conn)
360{
361 struct iscsi_conn *conn = cls_conn->dd_data;
362 int err;
363
2e7a7426 364 err = iser_conn_set_full_featured_mode(conn);
65e7ae7b
OG
365 if (err)
366 return err;
367
2e7a7426 368 return iscsi_conn_start(cls_conn);
65e7ae7b
OG
369}
370
65e7ae7b
OG
371static struct iscsi_transport iscsi_iser_transport;
372
373static struct iscsi_cls_session *
374iscsi_iser_session_create(struct iscsi_transport *iscsit,
375 struct scsi_transport_template *scsit,
376 uint32_t initial_cmdsn, uint32_t *hostno)
377{
378 struct iscsi_cls_session *cls_session;
379 struct iscsi_session *session;
380 int i;
381 uint32_t hn;
382 struct iscsi_cmd_task *ctask;
383 struct iscsi_mgmt_task *mtask;
384 struct iscsi_iser_cmd_task *iser_ctask;
385 struct iser_desc *desc;
386
387 cls_session = iscsi_session_setup(iscsit, scsit,
388 sizeof(struct iscsi_iser_cmd_task),
389 sizeof(struct iser_desc),
390 initial_cmdsn, &hn);
391 if (!cls_session)
392 return NULL;
393
394 *hostno = hn;
395 session = class_to_transport_session(cls_session);
396
397 /* libiscsi setup itts, data and pool so just set desc fields */
398 for (i = 0; i < session->cmds_max; i++) {
399 ctask = session->cmds[i];
400 iser_ctask = ctask->dd_data;
401 ctask->hdr = (struct iscsi_cmd *)&iser_ctask->desc.iscsi_header;
402 }
403
404 for (i = 0; i < session->mgmtpool_max; i++) {
405 mtask = session->mgmt_cmds[i];
406 desc = mtask->dd_data;
407 mtask->hdr = &desc->iscsi_header;
408 desc->data = mtask->data;
409 }
410
411 return cls_session;
412}
413
414static int
358ff019
MC
415iscsi_iser_set_param(struct iscsi_cls_conn *cls_conn,
416 enum iscsi_param param, char *buf, int buflen)
65e7ae7b 417{
358ff019 418 int value;
65e7ae7b
OG
419
420 switch (param) {
421 case ISCSI_PARAM_MAX_RECV_DLENGTH:
422 /* TBD */
423 break;
65e7ae7b 424 case ISCSI_PARAM_HDRDGST_EN:
358ff019 425 sscanf(buf, "%d", &value);
65e7ae7b
OG
426 if (value) {
427 printk(KERN_ERR "DataDigest wasn't negotiated to None");
428 return -EPROTO;
429 }
430 break;
431 case ISCSI_PARAM_DATADGST_EN:
358ff019 432 sscanf(buf, "%d", &value);
65e7ae7b
OG
433 if (value) {
434 printk(KERN_ERR "DataDigest wasn't negotiated to None");
435 return -EPROTO;
436 }
437 break;
65e7ae7b 438 case ISCSI_PARAM_IFMARKER_EN:
358ff019 439 sscanf(buf, "%d", &value);
65e7ae7b
OG
440 if (value) {
441 printk(KERN_ERR "IFMarker wasn't negotiated to No");
442 return -EPROTO;
443 }
444 break;
445 case ISCSI_PARAM_OFMARKER_EN:
358ff019 446 sscanf(buf, "%d", &value);
65e7ae7b
OG
447 if (value) {
448 printk(KERN_ERR "OFMarker wasn't negotiated to No");
449 return -EPROTO;
450 }
451 break;
452 default:
358ff019 453 return iscsi_set_param(cls_conn, param, buf, buflen);
65e7ae7b
OG
454 }
455
456 return 0;
457}
458
65e7ae7b
OG
459static void
460iscsi_iser_conn_get_stats(struct iscsi_cls_conn *cls_conn, struct iscsi_stats *stats)
461{
462 struct iscsi_conn *conn = cls_conn->dd_data;
463
464 stats->txdata_octets = conn->txdata_octets;
465 stats->rxdata_octets = conn->rxdata_octets;
466 stats->scsicmd_pdus = conn->scsicmd_pdus_cnt;
467 stats->dataout_pdus = conn->dataout_pdus_cnt;
468 stats->scsirsp_pdus = conn->scsirsp_pdus_cnt;
469 stats->datain_pdus = conn->datain_pdus_cnt; /* always 0 */
470 stats->r2t_pdus = conn->r2t_pdus_cnt; /* always 0 */
471 stats->tmfcmd_pdus = conn->tmfcmd_pdus_cnt;
472 stats->tmfrsp_pdus = conn->tmfrsp_pdus_cnt;
473 stats->custom_length = 3;
474 strcpy(stats->custom[0].desc, "qp_tx_queue_full");
475 stats->custom[0].value = 0; /* TB iser_conn->qp_tx_queue_full; */
476 strcpy(stats->custom[1].desc, "fmr_map_not_avail");
477 stats->custom[1].value = 0; /* TB iser_conn->fmr_map_not_avail */;
478 strcpy(stats->custom[2].desc, "eh_abort_cnt");
479 stats->custom[2].value = conn->eh_abort_cnt;
480}
481
482static int
483iscsi_iser_ep_connect(struct sockaddr *dst_addr, int non_blocking,
484 __u64 *ep_handle)
485{
486 int err;
487 struct iser_conn *ib_conn;
488
489 err = iser_conn_init(&ib_conn);
490 if (err)
491 goto out;
492
493 err = iser_connect(ib_conn, NULL, (struct sockaddr_in *)dst_addr, non_blocking);
494 if (!err)
495 *ep_handle = (__u64)(unsigned long)ib_conn;
496
497out:
498 return err;
499}
500
501static int
502iscsi_iser_ep_poll(__u64 ep_handle, int timeout_ms)
503{
504 struct iser_conn *ib_conn = iscsi_iser_ib_conn_lookup(ep_handle);
505 int rc;
506
507 if (!ib_conn)
508 return -EINVAL;
509
510 rc = wait_event_interruptible_timeout(ib_conn->wait,
511 ib_conn->state == ISER_CONN_UP,
512 msecs_to_jiffies(timeout_ms));
513
514 /* if conn establishment failed, return error code to iscsi */
515 if (!rc &&
516 (ib_conn->state == ISER_CONN_TERMINATING ||
517 ib_conn->state == ISER_CONN_DOWN))
518 rc = -1;
519
520 iser_err("ib conn %p rc = %d\n", ib_conn, rc);
521
522 if (rc > 0)
523 return 1; /* success, this is the equivalent of POLLOUT */
524 else if (!rc)
525 return 0; /* timeout */
526 else
527 return rc; /* signal */
528}
529
530static void
531iscsi_iser_ep_disconnect(__u64 ep_handle)
532{
1c83469d 533 struct iser_conn *ib_conn;
65e7ae7b 534
1c83469d 535 ib_conn = iscsi_iser_ib_conn_lookup(ep_handle);
65e7ae7b
OG
536 if (!ib_conn)
537 return;
538
539 iser_err("ib conn %p state %d\n",ib_conn, ib_conn->state);
65e7ae7b
OG
540 iser_conn_terminate(ib_conn);
541}
542
543static struct scsi_host_template iscsi_iser_sht = {
544 .name = "iSCSI Initiator over iSER, v." DRV_VER,
545 .queuecommand = iscsi_queuecommand,
546 .can_queue = ISCSI_XMIT_CMDS_MAX - 1,
547 .sg_tablesize = ISCSI_ISER_SG_TABLESIZE,
8072ec2f 548 .max_sectors = 1024,
65e7ae7b
OG
549 .cmd_per_lun = ISCSI_MAX_CMD_PER_LUN,
550 .eh_abort_handler = iscsi_eh_abort,
551 .eh_host_reset_handler = iscsi_eh_host_reset,
552 .use_clustering = DISABLE_CLUSTERING,
553 .proc_name = "iscsi_iser",
554 .this_id = -1,
555};
556
557static struct iscsi_transport iscsi_iser_transport = {
558 .owner = THIS_MODULE,
559 .name = "iser",
560 .caps = CAP_RECOVERY_L0 | CAP_MULTI_R2T,
561 .param_mask = ISCSI_MAX_RECV_DLENGTH |
562 ISCSI_MAX_XMIT_DLENGTH |
563 ISCSI_HDRDGST_EN |
564 ISCSI_DATADGST_EN |
565 ISCSI_INITIAL_R2T_EN |
566 ISCSI_MAX_R2T |
567 ISCSI_IMM_DATA_EN |
568 ISCSI_FIRST_BURST |
569 ISCSI_MAX_BURST |
570 ISCSI_PDU_INORDER_EN |
358ff019
MC
571 ISCSI_DATASEQ_INORDER_EN |
572 ISCSI_EXP_STATSN |
573 ISCSI_PERSISTENT_PORT |
574 ISCSI_PERSISTENT_ADDRESS |
b2c64167
MC
575 ISCSI_TARGET_NAME | ISCSI_TPGT |
576 ISCSI_USERNAME | ISCSI_PASSWORD |
577 ISCSI_USERNAME_IN | ISCSI_PASSWORD_IN,
8ad5781a
MC
578 .host_param_mask = ISCSI_HOST_HWADDRESS |
579 ISCSI_HOST_INITIATOR_NAME,
65e7ae7b
OG
580 .host_template = &iscsi_iser_sht,
581 .conndata_size = sizeof(struct iscsi_conn),
582 .max_lun = ISCSI_ISER_MAX_LUN,
583 .max_cmd_len = ISCSI_ISER_MAX_CMD_LEN,
584 /* session management */
585 .create_session = iscsi_iser_session_create,
586 .destroy_session = iscsi_session_teardown,
587 /* connection management */
588 .create_conn = iscsi_iser_conn_create,
589 .bind_conn = iscsi_iser_conn_bind,
590 .destroy_conn = iscsi_iser_conn_destroy,
358ff019
MC
591 .set_param = iscsi_iser_set_param,
592 .get_conn_param = iscsi_conn_get_param,
593 .get_session_param = iscsi_session_get_param,
65e7ae7b
OG
594 .start_conn = iscsi_iser_conn_start,
595 .stop_conn = iscsi_conn_stop,
0801c242
MC
596 /* iscsi host params */
597 .get_host_param = iscsi_host_get_param,
598 .set_host_param = iscsi_host_set_param,
65e7ae7b
OG
599 /* IO */
600 .send_pdu = iscsi_conn_send_pdu,
601 .get_stats = iscsi_iser_conn_get_stats,
602 .init_cmd_task = iscsi_iser_cmd_init,
603 .xmit_cmd_task = iscsi_iser_ctask_xmit,
604 .xmit_mgmt_task = iscsi_iser_mtask_xmit,
605 .cleanup_cmd_task = iscsi_iser_cleanup_ctask,
606 /* recovery */
607 .session_recovery_timedout = iscsi_session_recovery_timedout,
608
609 .ep_connect = iscsi_iser_ep_connect,
610 .ep_poll = iscsi_iser_ep_poll,
611 .ep_disconnect = iscsi_iser_ep_disconnect
612};
613
614static int __init iser_init(void)
615{
616 int err;
617
618 iser_dbg("Starting iSER datamover...\n");
619
620 if (iscsi_max_lun < 1) {
621 printk(KERN_ERR "Invalid max_lun value of %u\n", iscsi_max_lun);
622 return -EINVAL;
623 }
624
625 iscsi_iser_transport.max_lun = iscsi_max_lun;
626
627 memset(&ig, 0, sizeof(struct iser_global));
628
629 ig.desc_cache = kmem_cache_create("iser_descriptors",
630 sizeof (struct iser_desc),
631 0, SLAB_HWCACHE_ALIGN,
632 NULL, NULL);
633 if (ig.desc_cache == NULL)
634 return -ENOMEM;
635
636 /* device init is called only after the first addr resolution */
637 mutex_init(&ig.device_list_mutex);
638 INIT_LIST_HEAD(&ig.device_list);
639 mutex_init(&ig.connlist_mutex);
640 INIT_LIST_HEAD(&ig.connlist);
641
642 if (!iscsi_register_transport(&iscsi_iser_transport)) {
643 iser_err("iscsi_register_transport failed\n");
644 err = -EINVAL;
645 goto register_transport_failure;
646 }
647
648 return 0;
649
650register_transport_failure:
651 kmem_cache_destroy(ig.desc_cache);
652
653 return err;
654}
655
656static void __exit iser_exit(void)
657{
658 iser_dbg("Removing iSER datamover...\n");
659 iscsi_unregister_transport(&iscsi_iser_transport);
660 kmem_cache_destroy(ig.desc_cache);
661}
662
663module_init(iser_init);
664module_exit(iser_exit);
This page took 0.167053 seconds and 5 git commands to generate.