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