IB/iser: Change minor assignments and logging prints
[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.
3ee07d27 8 * Copyright (c) 2013-2014 Mellanox Technologies. All rights reserved.
65e7ae7b
OG
9 * maintained by openib-general@openib.org
10 *
11 * This software is available to you under a choice of one of two
12 * licenses. You may choose to be licensed under the terms of the GNU
13 * General Public License (GPL) Version 2, available from the file
14 * COPYING in the main directory of this source tree, or the
15 * OpenIB.org BSD license below:
16 *
17 * Redistribution and use in source and binary forms, with or
18 * without modification, are permitted provided that the following
19 * conditions are met:
20 *
21 * - Redistributions of source code must retain the above
22 * copyright notice, this list of conditions and the following
23 * disclaimer.
24 *
25 * - Redistributions in binary form must reproduce the above
26 * copyright notice, this list of conditions and the following
27 * disclaimer in the documentation and/or other materials
28 * provided with the distribution.
29 *
30 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
31 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
32 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
33 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
34 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
35 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
36 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
37 * SOFTWARE.
38 *
39 * Credits:
40 * Christoph Hellwig
41 * FUJITA Tomonori
42 * Arne Redlich
43 * Zhenyu Wang
44 * Modified by:
45 * Erez Zilber
65e7ae7b
OG
46 */
47
48#include <linux/types.h>
49#include <linux/list.h>
50#include <linux/hardirq.h>
51#include <linux/kfifo.h>
52#include <linux/blkdev.h>
53#include <linux/init.h>
54#include <linux/ioctl.h>
65e7ae7b
OG
55#include <linux/cdev.h>
56#include <linux/in.h>
57#include <linux/net.h>
58#include <linux/scatterlist.h>
59#include <linux/delay.h>
5a0e3ad6 60#include <linux/slab.h>
e4dd23d7 61#include <linux/module.h>
65e7ae7b
OG
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
db0a6cbd
JF
77MODULE_DESCRIPTION("iSER (iSCSI Extensions for RDMA) Datamover");
78MODULE_LICENSE("Dual BSD/GPL");
79MODULE_AUTHOR("Alex Nezhinsky, Dan Bar Dov, Or Gerlitz");
80MODULE_VERSION(DRV_VER);
81
75613521
MC
82static struct scsi_host_template iscsi_iser_sht;
83static struct iscsi_transport iscsi_iser_transport;
84static struct scsi_transport_template *iscsi_iser_scsi_transport;
db0a6cbd
JF
85static struct workqueue_struct *release_wq;
86struct iser_global ig;
87
88int iser_debug_level = 0;
89module_param_named(debug_level, iser_debug_level, int, S_IRUGO | S_IWUSR);
90MODULE_PARM_DESC(debug_level, "Enable debug tracing if > 0 (default:disabled)");
75613521 91
65e7ae7b
OG
92static unsigned int iscsi_max_lun = 512;
93module_param_named(max_lun, iscsi_max_lun, uint, S_IRUGO);
db0a6cbd 94MODULE_PARM_DESC(max_lun, "Max LUNs to allow per session (default:512");
65e7ae7b 95
7f733847 96bool iser_pi_enable = false;
db0a6cbd 97module_param_named(pi_enable, iser_pi_enable, bool, S_IRUGO);
7f733847
AT
98MODULE_PARM_DESC(pi_enable, "Enable T10-PI offload support (default:disabled)");
99
db0a6cbd
JF
100int iser_pi_guard;
101module_param_named(pi_guard, iser_pi_guard, int, S_IRUGO);
5bb6e543 102MODULE_PARM_DESC(pi_guard, "T10-PI guard_type [deprecated]");
7f733847 103
dc05ac36
SG
104/*
105 * iscsi_iser_recv() - Process a successfull recv completion
106 * @conn: iscsi connection
107 * @hdr: iscsi header
108 * @rx_data: buffer containing receive data payload
109 * @rx_data_len: length of rx_data
110 *
111 * Notes: In case of data length errors or iscsi PDU completion failures
112 * this routine will signal iscsi layer of connection failure.
113 */
65e7ae7b 114void
dc05ac36
SG
115iscsi_iser_recv(struct iscsi_conn *conn, struct iscsi_hdr *hdr,
116 char *rx_data, int rx_data_len)
65e7ae7b
OG
117{
118 int rc = 0;
65e7ae7b
OG
119 int datalen;
120 int ahslen;
121
122 /* verify PDU length */
123 datalen = ntoh24(hdr->dlength);
200ae1a0
OG
124 if (datalen > rx_data_len || (datalen + 4) < rx_data_len) {
125 iser_err("wrong datalen %d (hdr), %d (IB)\n",
126 datalen, rx_data_len);
65e7ae7b
OG
127 rc = ISCSI_ERR_DATALEN;
128 goto error;
129 }
130
200ae1a0
OG
131 if (datalen != rx_data_len)
132 iser_dbg("aligned datalen (%d) hdr, %d (IB)\n",
133 datalen, rx_data_len);
134
65e7ae7b
OG
135 /* read AHS */
136 ahslen = hdr->hlength * 4;
137
0af967f5 138 rc = iscsi_complete_pdu(conn, hdr, rx_data, rx_data_len);
65e7ae7b
OG
139 if (rc && rc != ISCSI_ERR_NO_SCSI_CMD)
140 goto error;
141
142 return;
143error:
144 iscsi_conn_failure(conn, rc);
145}
146
dc05ac36
SG
147/**
148 * iscsi_iser_pdu_alloc() - allocate an iscsi-iser PDU
149 * @task: iscsi task
150 * @opcode: iscsi command opcode
151 *
152 * Netes: This routine can't fail, just assign iscsi task
153 * hdr and max hdr size.
154 */
155static int
156iscsi_iser_pdu_alloc(struct iscsi_task *task, uint8_t opcode)
0f9c7449
MC
157{
158 struct iscsi_iser_task *iser_task = task->dd_data;
159
160 task->hdr = (struct iscsi_hdr *)&iser_task->desc.iscsi_header;
161 task->hdr_max = sizeof(iser_task->desc.iscsi_header);
dc05ac36 162
0f9c7449
MC
163 return 0;
164}
65e7ae7b 165
7414dde0
SG
166/**
167 * iser_initialize_task_headers() - Initialize task headers
168 * @task: iscsi task
169 * @tx_desc: iser tx descriptor
170 *
171 * Notes:
172 * This routine may race with iser teardown flow for scsi
173 * error handling TMFs. So for TMF we should acquire the
174 * state mutex to avoid dereferencing the IB device which
175 * may have already been terminated.
176 */
177int
178iser_initialize_task_headers(struct iscsi_task *task,
179 struct iser_tx_desc *tx_desc)
f19624aa 180{
7414dde0 181 struct iser_conn *iser_conn = task->conn->dd_data;
a4ee3539 182 struct iser_device *device = iser_conn->ib_conn.device;
f19624aa
OG
183 struct iscsi_iser_task *iser_task = task->dd_data;
184 u64 dma_addr;
7414dde0
SG
185 const bool mgmt_task = !task->sc && !in_interrupt();
186 int ret = 0;
187
188 if (unlikely(mgmt_task))
189 mutex_lock(&iser_conn->state_mutex);
190
191 if (unlikely(iser_conn->state != ISER_CONN_UP)) {
192 ret = -ENODEV;
193 goto out;
194 }
f19624aa
OG
195
196 dma_addr = ib_dma_map_single(device->ib_device, (void *)tx_desc,
197 ISER_HEADERS_LEN, DMA_TO_DEVICE);
7414dde0
SG
198 if (ib_dma_mapping_error(device->ib_device, dma_addr)) {
199 ret = -ENOMEM;
200 goto out;
201 }
f19624aa
OG
202
203 tx_desc->dma_addr = dma_addr;
204 tx_desc->tx_sg[0].addr = tx_desc->dma_addr;
205 tx_desc->tx_sg[0].length = ISER_HEADERS_LEN;
206 tx_desc->tx_sg[0].lkey = device->mr->lkey;
207
5716af6e 208 iser_task->iser_conn = iser_conn;
7414dde0
SG
209out:
210 if (unlikely(mgmt_task))
211 mutex_unlock(&iser_conn->state_mutex);
212
213 return ret;
f19624aa 214}
dc05ac36 215
65e7ae7b 216/**
dc05ac36 217 * iscsi_iser_task_init() - Initialize iscsi-iser task
2261ec3d 218 * @task: iscsi task
65e7ae7b 219 *
2261ec3d 220 * Initialize the task for the scsi command or mgmt command.
dc05ac36
SG
221 *
222 * Return: Returns zero on success or -ENOMEM when failing
223 * to init task headers (dma mapping error).
2747fdb2 224 */
a8ac6311 225static int
2261ec3d 226iscsi_iser_task_init(struct iscsi_task *task)
65e7ae7b 227{
2261ec3d 228 struct iscsi_iser_task *iser_task = task->dd_data;
7414dde0 229 int ret;
65e7ae7b 230
7414dde0
SG
231 ret = iser_initialize_task_headers(task, &iser_task->desc);
232 if (ret) {
233 iser_err("Failed to init task %p, err = %d\n",
234 iser_task, ret);
235 return ret;
236 }
f19624aa 237
2261ec3d 238 /* mgmt task */
f19624aa 239 if (!task->sc)
2747fdb2 240 return 0;
65e7ae7b 241
2261ec3d 242 iser_task->command_sent = 0;
2261ec3d 243 iser_task_rdma_init(iser_task);
177e31bd
SG
244 iser_task->sc = task->sc;
245
a8ac6311 246 return 0;
65e7ae7b
OG
247}
248
249/**
dc05ac36 250 * iscsi_iser_mtask_xmit() - xmit management (immediate) task
65e7ae7b 251 * @conn: iscsi connection
2261ec3d 252 * @task: task management task
65e7ae7b
OG
253 *
254 * Notes:
255 * The function can return -EAGAIN in which case caller must
256 * call it again later, or recover. '0' return code means successful
257 * xmit.
258 *
259 **/
260static int
2261ec3d 261iscsi_iser_mtask_xmit(struct iscsi_conn *conn, struct iscsi_task *task)
65e7ae7b
OG
262{
263 int error = 0;
264
962b4b52 265 iser_dbg("mtask xmit [cid %d itt 0x%x]\n", conn->id, task->itt);
65e7ae7b 266
2261ec3d 267 error = iser_send_control(conn, task);
65e7ae7b 268
2261ec3d 269 /* since iser xmits control with zero copy, tasks can not be recycled
65e7ae7b
OG
270 * right after sending them.
271 * The recycling scheme is based on whether a response is expected
2261ec3d
MC
272 * - if yes, the task is recycled at iscsi_complete_pdu
273 * - if no, the task is recycled at iser_snd_completion
65e7ae7b 274 */
65e7ae7b
OG
275 return error;
276}
277
278static int
2747fdb2 279iscsi_iser_task_xmit_unsol_data(struct iscsi_conn *conn,
2261ec3d 280 struct iscsi_task *task)
65e7ae7b 281{
0f9c7449
MC
282 struct iscsi_r2t_info *r2t = &task->unsol_r2t;
283 struct iscsi_data hdr;
65e7ae7b 284 int error = 0;
65e7ae7b
OG
285
286 /* Send data-out PDUs while there's still unsolicited data to send */
0f9c7449
MC
287 while (iscsi_task_has_unsol_data(task)) {
288 iscsi_prep_data_out_pdu(task, r2t, &hdr);
48a237a2 289 iser_dbg("Sending data-out: itt 0x%x, data count %d\n",
0f9c7449 290 hdr.itt, r2t->data_count);
65e7ae7b
OG
291
292 /* the buffer description has been passed with the command */
293 /* Send the command */
2261ec3d 294 error = iser_send_data_out(conn, task, &hdr);
65e7ae7b 295 if (error) {
0f9c7449 296 r2t->datasn--;
2747fdb2 297 goto iscsi_iser_task_xmit_unsol_data_exit;
65e7ae7b 298 }
0f9c7449 299 r2t->sent += r2t->data_count;
48a237a2 300 iser_dbg("Need to send %d more as data-out PDUs\n",
0f9c7449 301 r2t->data_length - r2t->sent);
65e7ae7b
OG
302 }
303
2747fdb2 304iscsi_iser_task_xmit_unsol_data_exit:
65e7ae7b
OG
305 return error;
306}
307
dc05ac36
SG
308/**
309 * iscsi_iser_task_xmit() - xmit iscsi-iser task
310 * @task: iscsi task
311 *
312 * Return: zero on success or escalates $error on failure.
313 */
65e7ae7b 314static int
2261ec3d 315iscsi_iser_task_xmit(struct iscsi_task *task)
65e7ae7b 316{
2261ec3d
MC
317 struct iscsi_conn *conn = task->conn;
318 struct iscsi_iser_task *iser_task = task->dd_data;
65e7ae7b
OG
319 int error = 0;
320
2261ec3d
MC
321 if (!task->sc)
322 return iscsi_iser_mtask_xmit(conn, task);
2747fdb2 323
2261ec3d
MC
324 if (task->sc->sc_data_direction == DMA_TO_DEVICE) {
325 BUG_ON(scsi_bufflen(task->sc) == 0);
77a23c21 326
48a237a2 327 iser_dbg("cmd [itt %x total %d imm %d unsol_data %d\n",
2261ec3d 328 task->itt, scsi_bufflen(task->sc),
0f9c7449 329 task->imm_count, task->unsol_r2t.data_length);
77a23c21
MC
330 }
331
962b4b52 332 iser_dbg("ctask xmit [cid %d itt 0x%x]\n",
2261ec3d 333 conn->id, task->itt);
65e7ae7b 334
65e7ae7b 335 /* Send the cmd PDU */
2261ec3d
MC
336 if (!iser_task->command_sent) {
337 error = iser_send_command(conn, task);
65e7ae7b 338 if (error)
2747fdb2 339 goto iscsi_iser_task_xmit_exit;
2261ec3d 340 iser_task->command_sent = 1;
65e7ae7b
OG
341 }
342
343 /* Send unsolicited data-out PDU(s) if necessary */
0f9c7449 344 if (iscsi_task_has_unsol_data(task))
2261ec3d 345 error = iscsi_iser_task_xmit_unsol_data(conn, task);
65e7ae7b 346
2747fdb2 347 iscsi_iser_task_xmit_exit:
65e7ae7b
OG
348 return error;
349}
350
dc05ac36
SG
351/**
352 * iscsi_iser_cleanup_task() - cleanup an iscsi-iser task
353 * @task: iscsi task
354 *
355 * Notes: In case the RDMA device is already NULL (might have
356 * been removed in DEVICE_REMOVAL CM event it will bail-out
357 * without doing dma unmapping.
358 */
0f9c7449 359static void iscsi_iser_cleanup_task(struct iscsi_task *task)
65e7ae7b 360{
2261ec3d 361 struct iscsi_iser_task *iser_task = task->dd_data;
4667f5df 362 struct iser_tx_desc *tx_desc = &iser_task->desc;
5716af6e 363 struct iser_conn *iser_conn = task->conn->dd_data;
a4ee3539 364 struct iser_device *device = iser_conn->ib_conn.device;
52439540 365
3a940daf
SG
366 /* DEVICE_REMOVAL event might have already released the device */
367 if (!device)
368 return;
369
52439540
OG
370 ib_dma_unmap_single(device->ib_device,
371 tx_desc->dma_addr, ISER_HEADERS_LEN, DMA_TO_DEVICE);
65e7ae7b 372
b3cd5050
MC
373 /* mgmt tasks do not need special cleanup */
374 if (!task->sc)
2747fdb2 375 return;
65e7ae7b 376
2261ec3d
MC
377 if (iser_task->status == ISER_TASK_STATUS_STARTED) {
378 iser_task->status = ISER_TASK_STATUS_COMPLETED;
379 iser_task_rdma_finalize(iser_task);
65e7ae7b 380 }
65e7ae7b
OG
381}
382
dc05ac36
SG
383/**
384 * iscsi_iser_check_protection() - check protection information status of task.
385 * @task: iscsi task
386 * @sector: error sector if exsists (output)
387 *
388 * Return: zero if no data-integrity errors have occured
389 * 0x1: data-integrity error occured in the guard-block
390 * 0x2: data-integrity error occured in the reference tag
391 * 0x3: data-integrity error occured in the application tag
392 *
393 * In addition the error sector is marked.
394 */
395static u8
396iscsi_iser_check_protection(struct iscsi_task *task, sector_t *sector)
0a7a08ad
SG
397{
398 struct iscsi_iser_task *iser_task = task->dd_data;
399
400 if (iser_task->dir[ISER_DIR_IN])
401 return iser_check_task_pi_status(iser_task, ISER_DIR_IN,
402 sector);
403 else
404 return iser_check_task_pi_status(iser_task, ISER_DIR_OUT,
405 sector);
406}
407
dc05ac36
SG
408/**
409 * iscsi_iser_conn_create() - create a new iscsi-iser connection
410 * @cls_session: iscsi class connection
411 * @conn_idx: connection index within the session (for MCS)
412 *
413 * Return: iscsi_cls_conn when iscsi_conn_setup succeeds or NULL
414 * otherwise.
415 */
65e7ae7b 416static struct iscsi_cls_conn *
dc05ac36
SG
417iscsi_iser_conn_create(struct iscsi_cls_session *cls_session,
418 uint32_t conn_idx)
65e7ae7b
OG
419{
420 struct iscsi_conn *conn;
421 struct iscsi_cls_conn *cls_conn;
65e7ae7b 422
4667f5df 423 cls_conn = iscsi_conn_setup(cls_session, 0, conn_idx);
65e7ae7b
OG
424 if (!cls_conn)
425 return NULL;
426 conn = cls_conn->dd_data;
427
428 /*
429 * due to issues with the login code re iser sematics
430 * this not set in iscsi_conn_setup - FIXME
431 */
bcc60c38 432 conn->max_recv_dlength = ISER_RECV_DATA_SEG_LEN;
65e7ae7b 433
65e7ae7b 434 return cls_conn;
65e7ae7b
OG
435}
436
dc05ac36
SG
437/**
438 * iscsi_iser_conn_bind() - bind iscsi and iser connection structures
439 * @cls_session: iscsi class session
440 * @cls_conn: iscsi class connection
441 * @transport_eph: transport end-point handle
442 * @is_leading: indicate if this is the session leading connection (MCS)
443 *
444 * Return: zero on success, $error if iscsi_conn_bind fails and
445 * -EINVAL in case end-point doesn't exsits anymore or iser connection
446 * state is not UP (teardown already started).
447 */
65e7ae7b
OG
448static int
449iscsi_iser_conn_bind(struct iscsi_cls_session *cls_session,
dc05ac36
SG
450 struct iscsi_cls_conn *cls_conn,
451 uint64_t transport_eph,
65e7ae7b
OG
452 int is_leading)
453{
454 struct iscsi_conn *conn = cls_conn->dd_data;
5716af6e 455 struct iser_conn *iser_conn;
412eeafa 456 struct iscsi_endpoint *ep;
65e7ae7b
OG
457 int error;
458
459 error = iscsi_conn_bind(cls_session, cls_conn, is_leading);
460 if (error)
461 return error;
462
463 /* the transport ep handle comes from user space so it must be
464 * verified against the global ib connections list */
412eeafa
MC
465 ep = iscsi_lookup_endpoint(transport_eph);
466 if (!ep) {
65e7ae7b
OG
467 iser_err("can't bind eph %llx\n",
468 (unsigned long long)transport_eph);
469 return -EINVAL;
470 }
5716af6e 471 iser_conn = ep->dd_data;
412eeafa 472
5716af6e
SG
473 mutex_lock(&iser_conn->state_mutex);
474 if (iser_conn->state != ISER_CONN_UP) {
91eb1df3
SG
475 error = -EINVAL;
476 iser_err("iser_conn %p state is %d, teardown started\n",
5716af6e 477 iser_conn, iser_conn->state);
91eb1df3
SG
478 goto out;
479 }
480
5716af6e 481 error = iser_alloc_rx_descriptors(iser_conn, conn->session);
91eb1df3
SG
482 if (error)
483 goto out;
89e984e2 484
65e7ae7b
OG
485 /* binds the iSER connection retrieved from the previously
486 * connected ep_handle to the iSCSI layer connection. exchanges
487 * connection pointers */
5716af6e 488 iser_info("binding iscsi conn %p to iser_conn %p\n", conn, iser_conn);
4667f5df 489
5716af6e
SG
490 conn->dd_data = iser_conn;
491 iser_conn->iscsi_conn = conn;
4667f5df 492
91eb1df3 493out:
5716af6e 494 mutex_unlock(&iser_conn->state_mutex);
91eb1df3 495 return error;
65e7ae7b 496}
65e7ae7b 497
dc05ac36
SG
498/**
499 * iscsi_iser_conn_start() - start iscsi-iser connection
500 * @cls_conn: iscsi class connection
501 *
502 * Notes: Here iser intialize (or re-initialize) stop_completion as
503 * from this point iscsi must call conn_stop in session/connection
504 * teardown so iser transport must wait for it.
505 */
b73c3ada
AN
506static int
507iscsi_iser_conn_start(struct iscsi_cls_conn *cls_conn)
508{
509 struct iscsi_conn *iscsi_conn;
5716af6e 510 struct iser_conn *iser_conn;
b73c3ada
AN
511
512 iscsi_conn = cls_conn->dd_data;
5716af6e
SG
513 iser_conn = iscsi_conn->dd_data;
514 reinit_completion(&iser_conn->stop_completion);
b73c3ada
AN
515
516 return iscsi_conn_start(cls_conn);
517}
518
dc05ac36
SG
519/**
520 * iscsi_iser_conn_stop() - stop iscsi-iser connection
521 * @cls_conn: iscsi class connection
522 * @flag: indicate if recover or terminate (passed as is)
523 *
524 * Notes: Calling iscsi_conn_stop might theoretically race with
525 * DEVICE_REMOVAL event and dereference a previously freed RDMA device
526 * handle, so we call it under iser the state lock to protect against
527 * this kind of race.
528 */
b40977d9
MC
529static void
530iscsi_iser_conn_stop(struct iscsi_cls_conn *cls_conn, int flag)
531{
532 struct iscsi_conn *conn = cls_conn->dd_data;
5716af6e 533 struct iser_conn *iser_conn = conn->dd_data;
65e7ae7b 534
bba0a3c9 535 iser_info("stopping iscsi_conn: %p, iser_conn: %p\n", conn, iser_conn);
b73c3ada 536
b40977d9 537 /*
913e5bf4
MC
538 * Userspace may have goofed up and not bound the connection or
539 * might have only partially setup the connection.
b40977d9 540 */
5716af6e 541 if (iser_conn) {
ec370e2b
AN
542 mutex_lock(&iser_conn->state_mutex);
543 iser_conn_terminate(iser_conn);
f0caef6d 544 iscsi_conn_stop(cls_conn, flag);
ec370e2b
AN
545
546 /* unbind */
547 iser_conn->iscsi_conn = NULL;
b73c3ada 548 conn->dd_data = NULL;
ec370e2b 549
5716af6e 550 complete(&iser_conn->stop_completion);
ec370e2b 551 mutex_unlock(&iser_conn->state_mutex);
3a940daf
SG
552 } else {
553 iscsi_conn_stop(cls_conn, flag);
913e5bf4 554 }
65e7ae7b
OG
555}
556
dc05ac36
SG
557/**
558 * iscsi_iser_session_destroy() - destroy iscsi-iser session
559 * @cls_session: iscsi class session
560 *
561 * Removes and free iscsi host.
562 */
563static void
564iscsi_iser_session_destroy(struct iscsi_cls_session *cls_session)
75613521
MC
565{
566 struct Scsi_Host *shost = iscsi_session_to_shost(cls_session);
567
e5bd7b54 568 iscsi_session_teardown(cls_session);
a4804cd6
MC
569 iscsi_host_remove(shost);
570 iscsi_host_free(shost);
75613521 571}
65e7ae7b 572
6192d4e6
SG
573static inline unsigned int
574iser_dif_prot_caps(int prot_caps)
575{
5bb6e543
SG
576 return ((prot_caps & IB_PROT_T10DIF_TYPE_1) ?
577 SHOST_DIF_TYPE1_PROTECTION | SHOST_DIX_TYPE0_PROTECTION |
578 SHOST_DIX_TYPE1_PROTECTION : 0) |
579 ((prot_caps & IB_PROT_T10DIF_TYPE_2) ?
580 SHOST_DIF_TYPE2_PROTECTION | SHOST_DIX_TYPE2_PROTECTION : 0) |
581 ((prot_caps & IB_PROT_T10DIF_TYPE_3) ?
582 SHOST_DIF_TYPE3_PROTECTION | SHOST_DIX_TYPE3_PROTECTION : 0);
6192d4e6
SG
583}
584
dc05ac36
SG
585/**
586 * iscsi_iser_session_create() - create an iscsi-iser session
587 * @ep: iscsi end-point handle
588 * @cmds_max: maximum commands in this session
589 * @qdepth: session command queue depth
590 * @initial_cmdsn: initiator command sequnce number
591 *
592 * Allocates and adds a scsi host, expose DIF supprot if
593 * exists, and sets up an iscsi session.
594 */
65e7ae7b 595static struct iscsi_cls_session *
412eeafa 596iscsi_iser_session_create(struct iscsi_endpoint *ep,
75613521 597 uint16_t cmds_max, uint16_t qdepth,
5e7facb7 598 uint32_t initial_cmdsn)
65e7ae7b
OG
599{
600 struct iscsi_cls_session *cls_session;
601 struct iscsi_session *session;
412eeafa 602 struct Scsi_Host *shost;
5716af6e 603 struct iser_conn *iser_conn = NULL;
a4ee3539 604 struct ib_conn *ib_conn;
f4641ef7 605 u16 max_cmds;
75613521 606
962b4b52 607 shost = iscsi_host_alloc(&iscsi_iser_sht, 0, 0);
75613521
MC
608 if (!shost)
609 return NULL;
610 shost->transportt = iscsi_iser_scsi_transport;
b7f04513 611 shost->cmd_per_lun = qdepth;
75613521
MC
612 shost->max_lun = iscsi_max_lun;
613 shost->max_id = 0;
614 shost->max_channel = 0;
615 shost->max_cmd_len = 16;
616
412eeafa
MC
617 /*
618 * older userspace tools (before 2.0-870) did not pass us
619 * the leading conn's ep so this will be NULL;
620 */
6192d4e6 621 if (ep) {
5716af6e 622 iser_conn = ep->dd_data;
f4641ef7 623 max_cmds = iser_conn->max_cmds;
3f562a0b
AN
624
625 mutex_lock(&iser_conn->state_mutex);
626 if (iser_conn->state != ISER_CONN_UP) {
627 iser_err("iser conn %p already started teardown\n",
628 iser_conn);
629 mutex_unlock(&iser_conn->state_mutex);
630 goto free_host;
631 }
632
a4ee3539
SG
633 ib_conn = &iser_conn->ib_conn;
634 if (ib_conn->pi_support) {
635 u32 sig_caps = ib_conn->device->dev_attr.sig_prot_cap;
6192d4e6
SG
636
637 scsi_host_set_prot(shost, iser_dif_prot_caps(sig_caps));
5bb6e543
SG
638 scsi_host_set_guard(shost, SHOST_DIX_GUARD_IP |
639 SHOST_DIX_GUARD_CRC);
6192d4e6 640 }
3f562a0b 641
7854550a
SW
642 /*
643 * Limit the sg_tablesize and max_sectors based on the device
644 * max fastreg page list length.
645 */
646 shost->sg_tablesize = min_t(unsigned short, shost->sg_tablesize,
647 ib_conn->device->dev_attr.max_fast_reg_page_list_len);
648 shost->max_sectors = min_t(unsigned int,
649 1024, (shost->sg_tablesize * PAGE_SIZE) >> 9);
650
3f562a0b
AN
651 if (iscsi_host_add(shost,
652 ib_conn->device->ib_device->dma_device)) {
653 mutex_unlock(&iser_conn->state_mutex);
654 goto free_host;
655 }
656 mutex_unlock(&iser_conn->state_mutex);
f4641ef7
MT
657 } else {
658 max_cmds = ISER_DEF_XMIT_CMDS_MAX;
3f562a0b
AN
659 if (iscsi_host_add(shost, NULL))
660 goto free_host;
6192d4e6 661 }
412eeafa 662
f4641ef7 663 if (cmds_max > max_cmds) {
b7f04513 664 iser_info("cmds_max changed from %u to %u\n",
f4641ef7
MT
665 cmds_max, max_cmds);
666 cmds_max = max_cmds;
b7f04513
SP
667 }
668
75613521 669 cls_session = iscsi_session_setup(&iscsi_iser_transport, shost,
b7f04513 670 cmds_max, 0,
2261ec3d 671 sizeof(struct iscsi_iser_task),
7970634b 672 initial_cmdsn, 0);
65e7ae7b 673 if (!cls_session)
75613521
MC
674 goto remove_host;
675 session = cls_session->dd_data;
65e7ae7b 676
2747fdb2 677 shost->can_queue = session->scsi_cmds_max;
65e7ae7b 678 return cls_session;
75613521
MC
679
680remove_host:
a4804cd6 681 iscsi_host_remove(shost);
75613521 682free_host:
a4804cd6 683 iscsi_host_free(shost);
75613521 684 return NULL;
65e7ae7b
OG
685}
686
687static int
358ff019
MC
688iscsi_iser_set_param(struct iscsi_cls_conn *cls_conn,
689 enum iscsi_param param, char *buf, int buflen)
65e7ae7b 690{
358ff019 691 int value;
65e7ae7b
OG
692
693 switch (param) {
694 case ISCSI_PARAM_MAX_RECV_DLENGTH:
695 /* TBD */
696 break;
65e7ae7b 697 case ISCSI_PARAM_HDRDGST_EN:
358ff019 698 sscanf(buf, "%d", &value);
65e7ae7b 699 if (value) {
e7eeffa4 700 iser_err("DataDigest wasn't negotiated to None\n");
65e7ae7b
OG
701 return -EPROTO;
702 }
703 break;
704 case ISCSI_PARAM_DATADGST_EN:
358ff019 705 sscanf(buf, "%d", &value);
65e7ae7b 706 if (value) {
e7eeffa4 707 iser_err("DataDigest wasn't negotiated to None\n");
65e7ae7b
OG
708 return -EPROTO;
709 }
710 break;
65e7ae7b 711 case ISCSI_PARAM_IFMARKER_EN:
358ff019 712 sscanf(buf, "%d", &value);
65e7ae7b 713 if (value) {
e7eeffa4 714 iser_err("IFMarker wasn't negotiated to No\n");
65e7ae7b
OG
715 return -EPROTO;
716 }
717 break;
718 case ISCSI_PARAM_OFMARKER_EN:
358ff019 719 sscanf(buf, "%d", &value);
65e7ae7b 720 if (value) {
e7eeffa4 721 iser_err("OFMarker wasn't negotiated to No\n");
65e7ae7b
OG
722 return -EPROTO;
723 }
724 break;
725 default:
358ff019 726 return iscsi_set_param(cls_conn, param, buf, buflen);
65e7ae7b
OG
727 }
728
729 return 0;
730}
731
dc05ac36
SG
732/**
733 * iscsi_iser_set_param() - set class connection parameter
734 * @cls_conn: iscsi class connection
735 * @stats: iscsi stats to output
736 *
737 * Output connection statistics.
738 */
65e7ae7b
OG
739static void
740iscsi_iser_conn_get_stats(struct iscsi_cls_conn *cls_conn, struct iscsi_stats *stats)
741{
742 struct iscsi_conn *conn = cls_conn->dd_data;
743
744 stats->txdata_octets = conn->txdata_octets;
745 stats->rxdata_octets = conn->rxdata_octets;
746 stats->scsicmd_pdus = conn->scsicmd_pdus_cnt;
747 stats->dataout_pdus = conn->dataout_pdus_cnt;
748 stats->scsirsp_pdus = conn->scsirsp_pdus_cnt;
749 stats->datain_pdus = conn->datain_pdus_cnt; /* always 0 */
750 stats->r2t_pdus = conn->r2t_pdus_cnt; /* always 0 */
751 stats->tmfcmd_pdus = conn->tmfcmd_pdus_cnt;
752 stats->tmfrsp_pdus = conn->tmfrsp_pdus_cnt;
87528227 753 stats->custom_length = 4;
65e7ae7b
OG
754 strcpy(stats->custom[0].desc, "qp_tx_queue_full");
755 stats->custom[0].value = 0; /* TB iser_conn->qp_tx_queue_full; */
756 strcpy(stats->custom[1].desc, "fmr_map_not_avail");
757 stats->custom[1].value = 0; /* TB iser_conn->fmr_map_not_avail */;
758 strcpy(stats->custom[2].desc, "eh_abort_cnt");
759 stats->custom[2].value = conn->eh_abort_cnt;
87528227
ED
760 strcpy(stats->custom[3].desc, "fmr_unalign_cnt");
761 stats->custom[3].value = conn->fmr_unalign_cnt;
65e7ae7b
OG
762}
763
7c53c6f8
MC
764static int iscsi_iser_get_ep_param(struct iscsi_endpoint *ep,
765 enum iscsi_param param, char *buf)
766{
5716af6e 767 struct iser_conn *iser_conn = ep->dd_data;
7c53c6f8
MC
768 int len;
769
770 switch (param) {
771 case ISCSI_PARAM_CONN_PORT:
772 case ISCSI_PARAM_CONN_ADDRESS:
a4ee3539 773 if (!iser_conn || !iser_conn->ib_conn.cma_id)
7c53c6f8
MC
774 return -ENOTCONN;
775
776 return iscsi_conn_get_addr_param((struct sockaddr_storage *)
a4ee3539
SG
777 &iser_conn->ib_conn.cma_id->route.addr.dst_addr,
778 param, buf);
7c53c6f8
MC
779 break;
780 default:
781 return -ENOSYS;
782 }
783
784 return len;
785}
786
dc05ac36
SG
787/**
788 * iscsi_iser_ep_connect() - Initiate iSER connection establishment
789 * @shost: scsi_host
790 * @dst_addr: destination address
791 * @non-blocking: indicate if routine can block
792 *
793 * Allocate an iscsi endpoint, an iser_conn structure and bind them.
794 * After that start RDMA connection establishment via rdma_cm. We
795 * don't allocate iser_conn embedded in iscsi_endpoint since in teardown
796 * the endpoint will be destroyed at ep_disconnect while iser_conn will
797 * cleanup its resources asynchronuously.
798 *
799 * Return: iscsi_endpoint created by iscsi layer or ERR_PTR(error)
800 * if fails.
801 */
412eeafa 802static struct iscsi_endpoint *
10eb0f01
MC
803iscsi_iser_ep_connect(struct Scsi_Host *shost, struct sockaddr *dst_addr,
804 int non_blocking)
65e7ae7b
OG
805{
806 int err;
5716af6e 807 struct iser_conn *iser_conn;
412eeafa 808 struct iscsi_endpoint *ep;
65e7ae7b 809
0a690758 810 ep = iscsi_create_endpoint(0);
412eeafa
MC
811 if (!ep)
812 return ERR_PTR(-ENOMEM);
65e7ae7b 813
5716af6e
SG
814 iser_conn = kzalloc(sizeof(*iser_conn), GFP_KERNEL);
815 if (!iser_conn) {
0a690758
AN
816 err = -ENOMEM;
817 goto failure;
818 }
819
5716af6e
SG
820 ep->dd_data = iser_conn;
821 iser_conn->ep = ep;
822 iser_conn_init(iser_conn);
65e7ae7b 823
5716af6e 824 err = iser_connect(iser_conn, NULL, dst_addr, non_blocking);
7d9c0de4 825 if (err)
0a690758 826 goto failure;
7d9c0de4 827
412eeafa 828 return ep;
0a690758
AN
829failure:
830 iscsi_destroy_endpoint(ep);
831 return ERR_PTR(err);
65e7ae7b
OG
832}
833
dc05ac36
SG
834/**
835 * iscsi_iser_ep_poll() - poll for iser connection establishment to complete
836 * @ep: iscsi endpoint (created at ep_connect)
837 * @timeout_ms: polling timeout allowed in ms.
838 *
839 * This routine boils down to waiting for up_completion signaling
840 * that cma_id got CONNECTED event.
841 *
842 * Return: 1 if succeeded in connection establishment, 0 if timeout expired
843 * (libiscsi will retry will kick in) or -1 if interrupted by signal
844 * or more likely iser connection state transitioned to TEMINATING or
845 * DOWN during the wait period.
846 */
65e7ae7b 847static int
412eeafa 848iscsi_iser_ep_poll(struct iscsi_endpoint *ep, int timeout_ms)
65e7ae7b 849{
74ce897b 850 struct iser_conn *iser_conn = ep->dd_data;
65e7ae7b
OG
851 int rc;
852
5716af6e 853 rc = wait_for_completion_interruptible_timeout(&iser_conn->up_completion,
9a6d3234 854 msecs_to_jiffies(timeout_ms));
65e7ae7b 855 /* if conn establishment failed, return error code to iscsi */
504130c0 856 if (rc == 0) {
5716af6e
SG
857 mutex_lock(&iser_conn->state_mutex);
858 if (iser_conn->state == ISER_CONN_TERMINATING ||
859 iser_conn->state == ISER_CONN_DOWN)
504130c0 860 rc = -1;
5716af6e 861 mutex_unlock(&iser_conn->state_mutex);
504130c0 862 }
65e7ae7b 863
74ce897b 864 iser_info("iser conn %p rc = %d\n", iser_conn, rc);
65e7ae7b
OG
865
866 if (rc > 0)
867 return 1; /* success, this is the equivalent of POLLOUT */
868 else if (!rc)
869 return 0; /* timeout */
870 else
871 return rc; /* signal */
872}
873
dc05ac36
SG
874/**
875 * iscsi_iser_ep_disconnect() - Initiate connection teardown process
876 * @ep: iscsi endpoint handle
877 *
878 * This routine is not blocked by iser and RDMA termination process
879 * completion as we queue a deffered work for iser/RDMA destruction
880 * and cleanup or actually call it immediately in case we didn't pass
881 * iscsi conn bind/start stage, thus it is safe.
882 */
65e7ae7b 883static void
412eeafa 884iscsi_iser_ep_disconnect(struct iscsi_endpoint *ep)
65e7ae7b 885{
74ce897b 886 struct iser_conn *iser_conn = ep->dd_data;
65e7ae7b 887
74ce897b 888 iser_info("ep %p iser conn %p\n", ep, iser_conn);
5716af6e
SG
889
890 mutex_lock(&iser_conn->state_mutex);
891 iser_conn_terminate(iser_conn);
b73c3ada
AN
892
893 /*
9a6d3234
AN
894 * if iser_conn and iscsi_conn are bound, we must wait for
895 * iscsi_conn_stop and flush errors completion before freeing
896 * the iser resources. Otherwise we are safe to free resources
897 * immediately.
b73c3ada 898 */
5716af6e
SG
899 if (iser_conn->iscsi_conn) {
900 INIT_WORK(&iser_conn->release_work, iser_release_work);
901 queue_work(release_wq, &iser_conn->release_work);
902 mutex_unlock(&iser_conn->state_mutex);
b73c3ada 903 } else {
5716af6e
SG
904 iser_conn->state = ISER_CONN_DOWN;
905 mutex_unlock(&iser_conn->state_mutex);
906 iser_conn_release(iser_conn);
b73c3ada 907 }
0a690758 908 iscsi_destroy_endpoint(ep);
65e7ae7b
OG
909}
910
587a1f16 911static umode_t iser_attr_is_visible(int param_type, int param)
3128c6c7
MC
912{
913 switch (param_type) {
f27fb2ef
MC
914 case ISCSI_HOST_PARAM:
915 switch (param) {
916 case ISCSI_HOST_PARAM_NETDEV_NAME:
917 case ISCSI_HOST_PARAM_HWADDRESS:
918 case ISCSI_HOST_PARAM_INITIATOR_NAME:
919 return S_IRUGO;
920 default:
921 return 0;
922 }
3128c6c7
MC
923 case ISCSI_PARAM:
924 switch (param) {
925 case ISCSI_PARAM_MAX_RECV_DLENGTH:
926 case ISCSI_PARAM_MAX_XMIT_DLENGTH:
927 case ISCSI_PARAM_HDRDGST_EN:
928 case ISCSI_PARAM_DATADGST_EN:
929 case ISCSI_PARAM_CONN_ADDRESS:
930 case ISCSI_PARAM_CONN_PORT:
931 case ISCSI_PARAM_EXP_STATSN:
932 case ISCSI_PARAM_PERSISTENT_ADDRESS:
933 case ISCSI_PARAM_PERSISTENT_PORT:
934 case ISCSI_PARAM_PING_TMO:
935 case ISCSI_PARAM_RECV_TMO:
1d063c17
MC
936 case ISCSI_PARAM_INITIAL_R2T_EN:
937 case ISCSI_PARAM_MAX_R2T:
938 case ISCSI_PARAM_IMM_DATA_EN:
939 case ISCSI_PARAM_FIRST_BURST:
940 case ISCSI_PARAM_MAX_BURST:
941 case ISCSI_PARAM_PDU_INORDER_EN:
942 case ISCSI_PARAM_DATASEQ_INORDER_EN:
943 case ISCSI_PARAM_TARGET_NAME:
944 case ISCSI_PARAM_TPGT:
945 case ISCSI_PARAM_USERNAME:
946 case ISCSI_PARAM_PASSWORD:
947 case ISCSI_PARAM_USERNAME_IN:
948 case ISCSI_PARAM_PASSWORD_IN:
949 case ISCSI_PARAM_FAST_ABORT:
950 case ISCSI_PARAM_ABORT_TMO:
951 case ISCSI_PARAM_LU_RESET_TMO:
952 case ISCSI_PARAM_TGT_RESET_TMO:
953 case ISCSI_PARAM_IFACE_NAME:
954 case ISCSI_PARAM_INITIATOR_NAME:
6a06a4b8 955 case ISCSI_PARAM_DISCOVERY_SESS:
3128c6c7
MC
956 return S_IRUGO;
957 default:
958 return 0;
959 }
960 }
961
962 return 0;
963}
964
65e7ae7b 965static struct scsi_host_template iscsi_iser_sht = {
7974392c 966 .module = THIS_MODULE,
c1d786e6 967 .name = "iSCSI Initiator over iSER",
65e7ae7b 968 .queuecommand = iscsi_queuecommand,
db5ed4df 969 .change_queue_depth = scsi_change_queue_depth,
65e7ae7b 970 .sg_tablesize = ISCSI_ISER_SG_TABLESIZE,
8072ec2f 971 .max_sectors = 1024,
e28f3d5b 972 .cmd_per_lun = ISER_DEF_CMD_PER_LUN,
65e7ae7b 973 .eh_abort_handler = iscsi_eh_abort,
90c18f3c 974 .eh_device_reset_handler= iscsi_eh_device_reset,
309ce156 975 .eh_target_reset_handler = iscsi_eh_recover_target,
6b5d6c44 976 .target_alloc = iscsi_target_alloc,
65e7ae7b
OG
977 .use_clustering = DISABLE_CLUSTERING,
978 .proc_name = "iscsi_iser",
979 .this_id = -1,
c40ecc12 980 .track_queue_depth = 1,
65e7ae7b
OG
981};
982
983static struct iscsi_transport iscsi_iser_transport = {
984 .owner = THIS_MODULE,
985 .name = "iser",
6a06a4b8 986 .caps = CAP_RECOVERY_L0 | CAP_MULTI_R2T | CAP_TEXT_NEGO,
65e7ae7b
OG
987 /* session management */
988 .create_session = iscsi_iser_session_create,
75613521 989 .destroy_session = iscsi_iser_session_destroy,
65e7ae7b
OG
990 /* connection management */
991 .create_conn = iscsi_iser_conn_create,
992 .bind_conn = iscsi_iser_conn_bind,
b73c3ada 993 .destroy_conn = iscsi_conn_teardown,
3128c6c7 994 .attr_is_visible = iser_attr_is_visible,
358ff019
MC
995 .set_param = iscsi_iser_set_param,
996 .get_conn_param = iscsi_conn_get_param,
7c53c6f8 997 .get_ep_param = iscsi_iser_get_ep_param,
358ff019 998 .get_session_param = iscsi_session_get_param,
b73c3ada 999 .start_conn = iscsi_iser_conn_start,
b40977d9 1000 .stop_conn = iscsi_iser_conn_stop,
0801c242
MC
1001 /* iscsi host params */
1002 .get_host_param = iscsi_host_get_param,
1003 .set_host_param = iscsi_host_set_param,
65e7ae7b
OG
1004 /* IO */
1005 .send_pdu = iscsi_conn_send_pdu,
1006 .get_stats = iscsi_iser_conn_get_stats,
2747fdb2
MC
1007 .init_task = iscsi_iser_task_init,
1008 .xmit_task = iscsi_iser_task_xmit,
1009 .cleanup_task = iscsi_iser_cleanup_task,
0f9c7449 1010 .alloc_pdu = iscsi_iser_pdu_alloc,
0a7a08ad 1011 .check_protection = iscsi_iser_check_protection,
65e7ae7b
OG
1012 /* recovery */
1013 .session_recovery_timedout = iscsi_session_recovery_timedout,
1014
1015 .ep_connect = iscsi_iser_ep_connect,
1016 .ep_poll = iscsi_iser_ep_poll,
1017 .ep_disconnect = iscsi_iser_ep_disconnect
1018};
1019
1020static int __init iser_init(void)
1021{
1022 int err;
1023
1024 iser_dbg("Starting iSER datamover...\n");
1025
1026 if (iscsi_max_lun < 1) {
4f363882 1027 iser_err("Invalid max_lun value of %u\n", iscsi_max_lun);
65e7ae7b
OG
1028 return -EINVAL;
1029 }
1030
65e7ae7b
OG
1031 memset(&ig, 0, sizeof(struct iser_global));
1032
1033 ig.desc_cache = kmem_cache_create("iser_descriptors",
f19624aa 1034 sizeof(struct iser_tx_desc),
65e7ae7b 1035 0, SLAB_HWCACHE_ALIGN,
20c2df83 1036 NULL);
65e7ae7b
OG
1037 if (ig.desc_cache == NULL)
1038 return -ENOMEM;
1039
1040 /* device init is called only after the first addr resolution */
1041 mutex_init(&ig.device_list_mutex);
1042 INIT_LIST_HEAD(&ig.device_list);
1043 mutex_init(&ig.connlist_mutex);
1044 INIT_LIST_HEAD(&ig.connlist);
1045
b73c3ada
AN
1046 release_wq = alloc_workqueue("release workqueue", 0, 0);
1047 if (!release_wq) {
1048 iser_err("failed to allocate release workqueue\n");
1049 return -ENOMEM;
1050 }
1051
75613521
MC
1052 iscsi_iser_scsi_transport = iscsi_register_transport(
1053 &iscsi_iser_transport);
1054 if (!iscsi_iser_scsi_transport) {
65e7ae7b
OG
1055 iser_err("iscsi_register_transport failed\n");
1056 err = -EINVAL;
1057 goto register_transport_failure;
1058 }
1059
1060 return 0;
1061
1062register_transport_failure:
1063 kmem_cache_destroy(ig.desc_cache);
1064
1065 return err;
1066}
1067
1068static void __exit iser_exit(void)
1069{
5716af6e 1070 struct iser_conn *iser_conn, *n;
b73c3ada
AN
1071 int connlist_empty;
1072
65e7ae7b 1073 iser_dbg("Removing iSER datamover...\n");
b73c3ada
AN
1074 destroy_workqueue(release_wq);
1075
1076 mutex_lock(&ig.connlist_mutex);
1077 connlist_empty = list_empty(&ig.connlist);
1078 mutex_unlock(&ig.connlist_mutex);
1079
1080 if (!connlist_empty) {
1081 iser_err("Error cleanup stage completed but we still have iser "
1082 "connections, destroying them anyway.\n");
5716af6e
SG
1083 list_for_each_entry_safe(iser_conn, n, &ig.connlist,
1084 conn_list) {
1085 iser_conn_release(iser_conn);
b73c3ada
AN
1086 }
1087 }
1088
65e7ae7b
OG
1089 iscsi_unregister_transport(&iscsi_iser_transport);
1090 kmem_cache_destroy(ig.desc_cache);
1091}
1092
1093module_init(iser_init);
1094module_exit(iser_exit);
This page took 0.688973 seconds and 5 git commands to generate.