1 /*******************************************************************************
2 * This file contains the iSCSI Target specific utility functions.
4 * (c) Copyright 2007-2013 Datera, Inc.
6 * Author: Nicholas A. Bellinger <nab@linux-iscsi.org>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 ******************************************************************************/
19 #include <linux/list.h>
20 #include <linux/sched/signal.h>
21 #include <net/ipv6.h> /* ipv6_addr_equal() */
22 #include <scsi/scsi_tcq.h>
23 #include <scsi/iscsi_proto.h>
24 #include <target/target_core_base.h>
25 #include <target/target_core_fabric.h>
26 #include <target/iscsi/iscsi_transport.h>
28 #include <target/iscsi/iscsi_target_core.h>
29 #include "iscsi_target_parameters.h"
30 #include "iscsi_target_seq_pdu_list.h"
31 #include "iscsi_target_datain_values.h"
32 #include "iscsi_target_erl0.h"
33 #include "iscsi_target_erl1.h"
34 #include "iscsi_target_erl2.h"
35 #include "iscsi_target_tpg.h"
36 #include "iscsi_target_util.h"
37 #include "iscsi_target.h"
39 #define PRINT_BUFF(buff, len) \
43 pr_debug("%d:\n", __LINE__); \
44 for (zzz = 0; zzz < len; zzz++) { \
45 if (zzz % 16 == 0) { \
48 pr_debug("%4i: ", zzz); \
50 pr_debug("%02x ", (unsigned char) (buff)[zzz]); \
56 extern struct list_head g_tiqn_list
;
57 extern spinlock_t tiqn_lock
;
60 * Called with cmd->r2t_lock held.
62 int iscsit_add_r2t_to_list(
63 struct iscsi_cmd
*cmd
,
69 struct iscsi_r2t
*r2t
;
71 r2t
= kmem_cache_zalloc(lio_r2t_cache
, GFP_ATOMIC
);
73 pr_err("Unable to allocate memory for struct iscsi_r2t.\n");
76 INIT_LIST_HEAD(&r2t
->r2t_list
);
78 r2t
->recovery_r2t
= recovery
;
79 r2t
->r2t_sn
= (!r2t_sn
) ? cmd
->r2t_sn
++ : r2t_sn
;
81 r2t
->xfer_len
= xfer_len
;
82 list_add_tail(&r2t
->r2t_list
, &cmd
->cmd_r2t_list
);
83 spin_unlock_bh(&cmd
->r2t_lock
);
85 iscsit_add_cmd_to_immediate_queue(cmd
, cmd
->conn
, ISTATE_SEND_R2T
);
87 spin_lock_bh(&cmd
->r2t_lock
);
91 struct iscsi_r2t
*iscsit_get_r2t_for_eos(
92 struct iscsi_cmd
*cmd
,
96 struct iscsi_r2t
*r2t
;
98 spin_lock_bh(&cmd
->r2t_lock
);
99 list_for_each_entry(r2t
, &cmd
->cmd_r2t_list
, r2t_list
) {
100 if ((r2t
->offset
<= offset
) &&
101 (r2t
->offset
+ r2t
->xfer_len
) >= (offset
+ length
)) {
102 spin_unlock_bh(&cmd
->r2t_lock
);
106 spin_unlock_bh(&cmd
->r2t_lock
);
108 pr_err("Unable to locate R2T for Offset: %u, Length:"
109 " %u\n", offset
, length
);
113 struct iscsi_r2t
*iscsit_get_r2t_from_list(struct iscsi_cmd
*cmd
)
115 struct iscsi_r2t
*r2t
;
117 spin_lock_bh(&cmd
->r2t_lock
);
118 list_for_each_entry(r2t
, &cmd
->cmd_r2t_list
, r2t_list
) {
119 if (!r2t
->sent_r2t
) {
120 spin_unlock_bh(&cmd
->r2t_lock
);
124 spin_unlock_bh(&cmd
->r2t_lock
);
126 pr_err("Unable to locate next R2T to send for ITT:"
127 " 0x%08x.\n", cmd
->init_task_tag
);
132 * Called with cmd->r2t_lock held.
134 void iscsit_free_r2t(struct iscsi_r2t
*r2t
, struct iscsi_cmd
*cmd
)
136 list_del(&r2t
->r2t_list
);
137 kmem_cache_free(lio_r2t_cache
, r2t
);
140 void iscsit_free_r2ts_from_list(struct iscsi_cmd
*cmd
)
142 struct iscsi_r2t
*r2t
, *r2t_tmp
;
144 spin_lock_bh(&cmd
->r2t_lock
);
145 list_for_each_entry_safe(r2t
, r2t_tmp
, &cmd
->cmd_r2t_list
, r2t_list
)
146 iscsit_free_r2t(r2t
, cmd
);
147 spin_unlock_bh(&cmd
->r2t_lock
);
150 static int iscsit_wait_for_tag(struct se_session
*se_sess
, int state
, int *cpup
)
154 struct sbq_wait_state
*ws
;
156 if (state
== TASK_RUNNING
)
159 ws
= &se_sess
->sess_tag_pool
.ws
[0];
161 prepare_to_wait_exclusive(&ws
->wait
, &wait
, state
);
162 if (signal_pending_state(state
, current
))
164 tag
= sbitmap_queue_get(&se_sess
->sess_tag_pool
, cpup
);
170 finish_wait(&ws
->wait
, &wait
);
175 * May be called from software interrupt (timer) context for allocating
178 struct iscsi_cmd
*iscsit_allocate_cmd(struct iscsi_conn
*conn
, int state
)
180 struct iscsi_cmd
*cmd
;
181 struct se_session
*se_sess
= conn
->sess
->se_sess
;
184 tag
= sbitmap_queue_get(&se_sess
->sess_tag_pool
, &cpu
);
186 tag
= iscsit_wait_for_tag(se_sess
, state
, &cpu
);
190 size
= sizeof(struct iscsi_cmd
) + conn
->conn_transport
->priv_size
;
191 cmd
= (struct iscsi_cmd
*)(se_sess
->sess_cmd_map
+ (tag
* size
));
192 memset(cmd
, 0, size
);
194 cmd
->se_cmd
.map_tag
= tag
;
195 cmd
->se_cmd
.map_cpu
= cpu
;
197 cmd
->data_direction
= DMA_NONE
;
198 INIT_LIST_HEAD(&cmd
->i_conn_node
);
199 INIT_LIST_HEAD(&cmd
->datain_list
);
200 INIT_LIST_HEAD(&cmd
->cmd_r2t_list
);
201 spin_lock_init(&cmd
->datain_lock
);
202 spin_lock_init(&cmd
->dataout_timeout_lock
);
203 spin_lock_init(&cmd
->istate_lock
);
204 spin_lock_init(&cmd
->error_lock
);
205 spin_lock_init(&cmd
->r2t_lock
);
206 timer_setup(&cmd
->dataout_timer
, iscsit_handle_dataout_timeout
, 0);
210 EXPORT_SYMBOL(iscsit_allocate_cmd
);
212 struct iscsi_seq
*iscsit_get_seq_holder_for_datain(
213 struct iscsi_cmd
*cmd
,
218 for (i
= 0; i
< cmd
->seq_count
; i
++)
219 if (cmd
->seq_list
[i
].seq_send_order
== seq_send_order
)
220 return &cmd
->seq_list
[i
];
225 struct iscsi_seq
*iscsit_get_seq_holder_for_r2t(struct iscsi_cmd
*cmd
)
229 if (!cmd
->seq_list
) {
230 pr_err("struct iscsi_cmd->seq_list is NULL!\n");
234 for (i
= 0; i
< cmd
->seq_count
; i
++) {
235 if (cmd
->seq_list
[i
].type
!= SEQTYPE_NORMAL
)
237 if (cmd
->seq_list
[i
].seq_send_order
== cmd
->seq_send_order
) {
238 cmd
->seq_send_order
++;
239 return &cmd
->seq_list
[i
];
246 struct iscsi_r2t
*iscsit_get_holder_for_r2tsn(
247 struct iscsi_cmd
*cmd
,
250 struct iscsi_r2t
*r2t
;
252 spin_lock_bh(&cmd
->r2t_lock
);
253 list_for_each_entry(r2t
, &cmd
->cmd_r2t_list
, r2t_list
) {
254 if (r2t
->r2t_sn
== r2t_sn
) {
255 spin_unlock_bh(&cmd
->r2t_lock
);
259 spin_unlock_bh(&cmd
->r2t_lock
);
264 static inline int iscsit_check_received_cmdsn(struct iscsi_session
*sess
, u32 cmdsn
)
270 * This is the proper method of checking received CmdSN against
271 * ExpCmdSN and MaxCmdSN values, as well as accounting for out
272 * or order CmdSNs due to multiple connection sessions and/or
275 max_cmdsn
= atomic_read(&sess
->max_cmd_sn
);
276 if (iscsi_sna_gt(cmdsn
, max_cmdsn
)) {
277 pr_err("Received CmdSN: 0x%08x is greater than"
278 " MaxCmdSN: 0x%08x, ignoring.\n", cmdsn
, max_cmdsn
);
279 ret
= CMDSN_MAXCMDSN_OVERRUN
;
281 } else if (cmdsn
== sess
->exp_cmd_sn
) {
283 pr_debug("Received CmdSN matches ExpCmdSN,"
284 " incremented ExpCmdSN to: 0x%08x\n",
286 ret
= CMDSN_NORMAL_OPERATION
;
288 } else if (iscsi_sna_gt(cmdsn
, sess
->exp_cmd_sn
)) {
289 pr_debug("Received CmdSN: 0x%08x is greater"
290 " than ExpCmdSN: 0x%08x, not acknowledging.\n",
291 cmdsn
, sess
->exp_cmd_sn
);
292 ret
= CMDSN_HIGHER_THAN_EXP
;
295 pr_err("Received CmdSN: 0x%08x is less than"
296 " ExpCmdSN: 0x%08x, ignoring.\n", cmdsn
,
298 ret
= CMDSN_LOWER_THAN_EXP
;
305 * Commands may be received out of order if MC/S is in use.
306 * Ensure they are executed in CmdSN order.
308 int iscsit_sequence_cmd(struct iscsi_conn
*conn
, struct iscsi_cmd
*cmd
,
309 unsigned char *buf
, __be32 cmdsn
)
313 u8 reason
= ISCSI_REASON_BOOKMARK_NO_RESOURCES
;
315 mutex_lock(&conn
->sess
->cmdsn_mutex
);
317 cmdsn_ret
= iscsit_check_received_cmdsn(conn
->sess
, be32_to_cpu(cmdsn
));
319 case CMDSN_NORMAL_OPERATION
:
320 ret
= iscsit_execute_cmd(cmd
, 0);
321 if ((ret
>= 0) && !list_empty(&conn
->sess
->sess_ooo_cmdsn_list
))
322 iscsit_execute_ooo_cmdsns(conn
->sess
);
325 ret
= CMDSN_ERROR_CANNOT_RECOVER
;
328 case CMDSN_HIGHER_THAN_EXP
:
329 ret
= iscsit_handle_ooo_cmdsn(conn
->sess
, cmd
, be32_to_cpu(cmdsn
));
332 ret
= CMDSN_ERROR_CANNOT_RECOVER
;
335 ret
= CMDSN_HIGHER_THAN_EXP
;
337 case CMDSN_LOWER_THAN_EXP
:
338 case CMDSN_MAXCMDSN_OVERRUN
:
340 cmd
->i_state
= ISTATE_REMOVE
;
341 iscsit_add_cmd_to_immediate_queue(cmd
, conn
, cmd
->i_state
);
343 * Existing callers for iscsit_sequence_cmd() will silently
344 * ignore commands with CMDSN_LOWER_THAN_EXP, so force this
345 * return for CMDSN_MAXCMDSN_OVERRUN as well..
347 ret
= CMDSN_LOWER_THAN_EXP
;
350 mutex_unlock(&conn
->sess
->cmdsn_mutex
);
353 iscsit_reject_cmd(cmd
, reason
, buf
);
357 EXPORT_SYMBOL(iscsit_sequence_cmd
);
359 int iscsit_check_unsolicited_dataout(struct iscsi_cmd
*cmd
, unsigned char *buf
)
361 struct iscsi_conn
*conn
= cmd
->conn
;
362 struct se_cmd
*se_cmd
= &cmd
->se_cmd
;
363 struct iscsi_data
*hdr
= (struct iscsi_data
*) buf
;
364 u32 payload_length
= ntoh24(hdr
->dlength
);
366 if (conn
->sess
->sess_ops
->InitialR2T
) {
367 pr_err("Received unexpected unsolicited data"
368 " while InitialR2T=Yes, protocol error.\n");
369 transport_send_check_condition_and_sense(se_cmd
,
370 TCM_UNEXPECTED_UNSOLICITED_DATA
, 0);
374 if ((cmd
->first_burst_len
+ payload_length
) >
375 conn
->sess
->sess_ops
->FirstBurstLength
) {
376 pr_err("Total %u bytes exceeds FirstBurstLength: %u"
377 " for this Unsolicited DataOut Burst.\n",
378 (cmd
->first_burst_len
+ payload_length
),
379 conn
->sess
->sess_ops
->FirstBurstLength
);
380 transport_send_check_condition_and_sense(se_cmd
,
381 TCM_INCORRECT_AMOUNT_OF_DATA
, 0);
385 if (!(hdr
->flags
& ISCSI_FLAG_CMD_FINAL
))
388 if (((cmd
->first_burst_len
+ payload_length
) != cmd
->se_cmd
.data_length
) &&
389 ((cmd
->first_burst_len
+ payload_length
) !=
390 conn
->sess
->sess_ops
->FirstBurstLength
)) {
391 pr_err("Unsolicited non-immediate data received %u"
392 " does not equal FirstBurstLength: %u, and does"
393 " not equal ExpXferLen %u.\n",
394 (cmd
->first_burst_len
+ payload_length
),
395 conn
->sess
->sess_ops
->FirstBurstLength
, cmd
->se_cmd
.data_length
);
396 transport_send_check_condition_and_sense(se_cmd
,
397 TCM_INCORRECT_AMOUNT_OF_DATA
, 0);
403 struct iscsi_cmd
*iscsit_find_cmd_from_itt(
404 struct iscsi_conn
*conn
,
407 struct iscsi_cmd
*cmd
;
409 spin_lock_bh(&conn
->cmd_lock
);
410 list_for_each_entry(cmd
, &conn
->conn_cmd_list
, i_conn_node
) {
411 if (cmd
->init_task_tag
== init_task_tag
) {
412 spin_unlock_bh(&conn
->cmd_lock
);
416 spin_unlock_bh(&conn
->cmd_lock
);
418 pr_err("Unable to locate ITT: 0x%08x on CID: %hu",
419 init_task_tag
, conn
->cid
);
422 EXPORT_SYMBOL(iscsit_find_cmd_from_itt
);
424 struct iscsi_cmd
*iscsit_find_cmd_from_itt_or_dump(
425 struct iscsi_conn
*conn
,
429 struct iscsi_cmd
*cmd
;
431 spin_lock_bh(&conn
->cmd_lock
);
432 list_for_each_entry(cmd
, &conn
->conn_cmd_list
, i_conn_node
) {
433 if (cmd
->cmd_flags
& ICF_GOT_LAST_DATAOUT
)
435 if (cmd
->init_task_tag
== init_task_tag
) {
436 spin_unlock_bh(&conn
->cmd_lock
);
440 spin_unlock_bh(&conn
->cmd_lock
);
442 pr_err("Unable to locate ITT: 0x%08x on CID: %hu,"
443 " dumping payload\n", init_task_tag
, conn
->cid
);
445 iscsit_dump_data_payload(conn
, length
, 1);
449 EXPORT_SYMBOL(iscsit_find_cmd_from_itt_or_dump
);
451 struct iscsi_cmd
*iscsit_find_cmd_from_ttt(
452 struct iscsi_conn
*conn
,
455 struct iscsi_cmd
*cmd
= NULL
;
457 spin_lock_bh(&conn
->cmd_lock
);
458 list_for_each_entry(cmd
, &conn
->conn_cmd_list
, i_conn_node
) {
459 if (cmd
->targ_xfer_tag
== targ_xfer_tag
) {
460 spin_unlock_bh(&conn
->cmd_lock
);
464 spin_unlock_bh(&conn
->cmd_lock
);
466 pr_err("Unable to locate TTT: 0x%08x on CID: %hu\n",
467 targ_xfer_tag
, conn
->cid
);
471 int iscsit_find_cmd_for_recovery(
472 struct iscsi_session
*sess
,
473 struct iscsi_cmd
**cmd_ptr
,
474 struct iscsi_conn_recovery
**cr_ptr
,
477 struct iscsi_cmd
*cmd
= NULL
;
478 struct iscsi_conn_recovery
*cr
;
480 * Scan through the inactive connection recovery list's command list.
481 * If init_task_tag matches the command is still alligent.
483 spin_lock(&sess
->cr_i_lock
);
484 list_for_each_entry(cr
, &sess
->cr_inactive_list
, cr_list
) {
485 spin_lock(&cr
->conn_recovery_cmd_lock
);
486 list_for_each_entry(cmd
, &cr
->conn_recovery_cmd_list
, i_conn_node
) {
487 if (cmd
->init_task_tag
== init_task_tag
) {
488 spin_unlock(&cr
->conn_recovery_cmd_lock
);
489 spin_unlock(&sess
->cr_i_lock
);
496 spin_unlock(&cr
->conn_recovery_cmd_lock
);
498 spin_unlock(&sess
->cr_i_lock
);
500 * Scan through the active connection recovery list's command list.
501 * If init_task_tag matches the command is ready to be reassigned.
503 spin_lock(&sess
->cr_a_lock
);
504 list_for_each_entry(cr
, &sess
->cr_active_list
, cr_list
) {
505 spin_lock(&cr
->conn_recovery_cmd_lock
);
506 list_for_each_entry(cmd
, &cr
->conn_recovery_cmd_list
, i_conn_node
) {
507 if (cmd
->init_task_tag
== init_task_tag
) {
508 spin_unlock(&cr
->conn_recovery_cmd_lock
);
509 spin_unlock(&sess
->cr_a_lock
);
516 spin_unlock(&cr
->conn_recovery_cmd_lock
);
518 spin_unlock(&sess
->cr_a_lock
);
523 void iscsit_add_cmd_to_immediate_queue(
524 struct iscsi_cmd
*cmd
,
525 struct iscsi_conn
*conn
,
528 struct iscsi_queue_req
*qr
;
530 qr
= kmem_cache_zalloc(lio_qr_cache
, GFP_ATOMIC
);
532 pr_err("Unable to allocate memory for"
533 " struct iscsi_queue_req\n");
536 INIT_LIST_HEAD(&qr
->qr_list
);
540 spin_lock_bh(&conn
->immed_queue_lock
);
541 list_add_tail(&qr
->qr_list
, &conn
->immed_queue_list
);
542 atomic_inc(&cmd
->immed_queue_count
);
543 atomic_set(&conn
->check_immediate_queue
, 1);
544 spin_unlock_bh(&conn
->immed_queue_lock
);
546 wake_up(&conn
->queues_wq
);
548 EXPORT_SYMBOL(iscsit_add_cmd_to_immediate_queue
);
550 struct iscsi_queue_req
*iscsit_get_cmd_from_immediate_queue(struct iscsi_conn
*conn
)
552 struct iscsi_queue_req
*qr
;
554 spin_lock_bh(&conn
->immed_queue_lock
);
555 if (list_empty(&conn
->immed_queue_list
)) {
556 spin_unlock_bh(&conn
->immed_queue_lock
);
559 qr
= list_first_entry(&conn
->immed_queue_list
,
560 struct iscsi_queue_req
, qr_list
);
562 list_del(&qr
->qr_list
);
564 atomic_dec(&qr
->cmd
->immed_queue_count
);
565 spin_unlock_bh(&conn
->immed_queue_lock
);
570 static void iscsit_remove_cmd_from_immediate_queue(
571 struct iscsi_cmd
*cmd
,
572 struct iscsi_conn
*conn
)
574 struct iscsi_queue_req
*qr
, *qr_tmp
;
576 spin_lock_bh(&conn
->immed_queue_lock
);
577 if (!atomic_read(&cmd
->immed_queue_count
)) {
578 spin_unlock_bh(&conn
->immed_queue_lock
);
582 list_for_each_entry_safe(qr
, qr_tmp
, &conn
->immed_queue_list
, qr_list
) {
586 atomic_dec(&qr
->cmd
->immed_queue_count
);
587 list_del(&qr
->qr_list
);
588 kmem_cache_free(lio_qr_cache
, qr
);
590 spin_unlock_bh(&conn
->immed_queue_lock
);
592 if (atomic_read(&cmd
->immed_queue_count
)) {
593 pr_err("ITT: 0x%08x immed_queue_count: %d\n",
595 atomic_read(&cmd
->immed_queue_count
));
599 int iscsit_add_cmd_to_response_queue(
600 struct iscsi_cmd
*cmd
,
601 struct iscsi_conn
*conn
,
604 struct iscsi_queue_req
*qr
;
606 qr
= kmem_cache_zalloc(lio_qr_cache
, GFP_ATOMIC
);
608 pr_err("Unable to allocate memory for"
609 " struct iscsi_queue_req\n");
612 INIT_LIST_HEAD(&qr
->qr_list
);
616 spin_lock_bh(&conn
->response_queue_lock
);
617 list_add_tail(&qr
->qr_list
, &conn
->response_queue_list
);
618 atomic_inc(&cmd
->response_queue_count
);
619 spin_unlock_bh(&conn
->response_queue_lock
);
621 wake_up(&conn
->queues_wq
);
625 struct iscsi_queue_req
*iscsit_get_cmd_from_response_queue(struct iscsi_conn
*conn
)
627 struct iscsi_queue_req
*qr
;
629 spin_lock_bh(&conn
->response_queue_lock
);
630 if (list_empty(&conn
->response_queue_list
)) {
631 spin_unlock_bh(&conn
->response_queue_lock
);
635 qr
= list_first_entry(&conn
->response_queue_list
,
636 struct iscsi_queue_req
, qr_list
);
638 list_del(&qr
->qr_list
);
640 atomic_dec(&qr
->cmd
->response_queue_count
);
641 spin_unlock_bh(&conn
->response_queue_lock
);
646 static void iscsit_remove_cmd_from_response_queue(
647 struct iscsi_cmd
*cmd
,
648 struct iscsi_conn
*conn
)
650 struct iscsi_queue_req
*qr
, *qr_tmp
;
652 spin_lock_bh(&conn
->response_queue_lock
);
653 if (!atomic_read(&cmd
->response_queue_count
)) {
654 spin_unlock_bh(&conn
->response_queue_lock
);
658 list_for_each_entry_safe(qr
, qr_tmp
, &conn
->response_queue_list
,
663 atomic_dec(&qr
->cmd
->response_queue_count
);
664 list_del(&qr
->qr_list
);
665 kmem_cache_free(lio_qr_cache
, qr
);
667 spin_unlock_bh(&conn
->response_queue_lock
);
669 if (atomic_read(&cmd
->response_queue_count
)) {
670 pr_err("ITT: 0x%08x response_queue_count: %d\n",
672 atomic_read(&cmd
->response_queue_count
));
676 bool iscsit_conn_all_queues_empty(struct iscsi_conn
*conn
)
680 spin_lock_bh(&conn
->immed_queue_lock
);
681 empty
= list_empty(&conn
->immed_queue_list
);
682 spin_unlock_bh(&conn
->immed_queue_lock
);
687 spin_lock_bh(&conn
->response_queue_lock
);
688 empty
= list_empty(&conn
->response_queue_list
);
689 spin_unlock_bh(&conn
->response_queue_lock
);
694 void iscsit_free_queue_reqs_for_conn(struct iscsi_conn
*conn
)
696 struct iscsi_queue_req
*qr
, *qr_tmp
;
698 spin_lock_bh(&conn
->immed_queue_lock
);
699 list_for_each_entry_safe(qr
, qr_tmp
, &conn
->immed_queue_list
, qr_list
) {
700 list_del(&qr
->qr_list
);
702 atomic_dec(&qr
->cmd
->immed_queue_count
);
704 kmem_cache_free(lio_qr_cache
, qr
);
706 spin_unlock_bh(&conn
->immed_queue_lock
);
708 spin_lock_bh(&conn
->response_queue_lock
);
709 list_for_each_entry_safe(qr
, qr_tmp
, &conn
->response_queue_list
,
711 list_del(&qr
->qr_list
);
713 atomic_dec(&qr
->cmd
->response_queue_count
);
715 kmem_cache_free(lio_qr_cache
, qr
);
717 spin_unlock_bh(&conn
->response_queue_lock
);
720 void iscsit_release_cmd(struct iscsi_cmd
*cmd
)
722 struct iscsi_session
*sess
;
723 struct se_cmd
*se_cmd
= &cmd
->se_cmd
;
725 WARN_ON(!list_empty(&cmd
->i_conn_node
));
728 sess
= cmd
->conn
->sess
;
732 BUG_ON(!sess
|| !sess
->se_sess
);
735 kfree(cmd
->pdu_list
);
736 kfree(cmd
->seq_list
);
738 kfree(cmd
->iov_data
);
739 kfree(cmd
->text_in_ptr
);
741 target_free_tag(sess
->se_sess
, se_cmd
);
743 EXPORT_SYMBOL(iscsit_release_cmd
);
745 void __iscsit_free_cmd(struct iscsi_cmd
*cmd
, bool check_queues
)
747 struct iscsi_conn
*conn
= cmd
->conn
;
749 WARN_ON(!list_empty(&cmd
->i_conn_node
));
751 if (cmd
->data_direction
== DMA_TO_DEVICE
) {
752 iscsit_stop_dataout_timer(cmd
);
753 iscsit_free_r2ts_from_list(cmd
);
755 if (cmd
->data_direction
== DMA_FROM_DEVICE
)
756 iscsit_free_all_datain_reqs(cmd
);
758 if (conn
&& check_queues
) {
759 iscsit_remove_cmd_from_immediate_queue(cmd
, conn
);
760 iscsit_remove_cmd_from_response_queue(cmd
, conn
);
763 if (conn
&& conn
->conn_transport
->iscsit_release_cmd
)
764 conn
->conn_transport
->iscsit_release_cmd(conn
, cmd
);
767 void iscsit_free_cmd(struct iscsi_cmd
*cmd
, bool shutdown
)
769 struct se_cmd
*se_cmd
= cmd
->se_cmd
.se_tfo
? &cmd
->se_cmd
: NULL
;
772 __iscsit_free_cmd(cmd
, shutdown
);
774 rc
= transport_generic_free_cmd(se_cmd
, shutdown
);
775 if (!rc
&& shutdown
&& se_cmd
->se_sess
) {
776 __iscsit_free_cmd(cmd
, shutdown
);
777 target_put_sess_cmd(se_cmd
);
780 iscsit_release_cmd(cmd
);
783 EXPORT_SYMBOL(iscsit_free_cmd
);
785 int iscsit_check_session_usage_count(struct iscsi_session
*sess
)
787 spin_lock_bh(&sess
->session_usage_lock
);
788 if (sess
->session_usage_count
!= 0) {
789 sess
->session_waiting_on_uc
= 1;
790 spin_unlock_bh(&sess
->session_usage_lock
);
794 wait_for_completion(&sess
->session_waiting_on_uc_comp
);
797 spin_unlock_bh(&sess
->session_usage_lock
);
802 void iscsit_dec_session_usage_count(struct iscsi_session
*sess
)
804 spin_lock_bh(&sess
->session_usage_lock
);
805 sess
->session_usage_count
--;
807 if (!sess
->session_usage_count
&& sess
->session_waiting_on_uc
)
808 complete(&sess
->session_waiting_on_uc_comp
);
810 spin_unlock_bh(&sess
->session_usage_lock
);
813 void iscsit_inc_session_usage_count(struct iscsi_session
*sess
)
815 spin_lock_bh(&sess
->session_usage_lock
);
816 sess
->session_usage_count
++;
817 spin_unlock_bh(&sess
->session_usage_lock
);
820 struct iscsi_conn
*iscsit_get_conn_from_cid(struct iscsi_session
*sess
, u16 cid
)
822 struct iscsi_conn
*conn
;
824 spin_lock_bh(&sess
->conn_lock
);
825 list_for_each_entry(conn
, &sess
->sess_conn_list
, conn_list
) {
826 if ((conn
->cid
== cid
) &&
827 (conn
->conn_state
== TARG_CONN_STATE_LOGGED_IN
)) {
828 iscsit_inc_conn_usage_count(conn
);
829 spin_unlock_bh(&sess
->conn_lock
);
833 spin_unlock_bh(&sess
->conn_lock
);
838 struct iscsi_conn
*iscsit_get_conn_from_cid_rcfr(struct iscsi_session
*sess
, u16 cid
)
840 struct iscsi_conn
*conn
;
842 spin_lock_bh(&sess
->conn_lock
);
843 list_for_each_entry(conn
, &sess
->sess_conn_list
, conn_list
) {
844 if (conn
->cid
== cid
) {
845 iscsit_inc_conn_usage_count(conn
);
846 spin_lock(&conn
->state_lock
);
847 atomic_set(&conn
->connection_wait_rcfr
, 1);
848 spin_unlock(&conn
->state_lock
);
849 spin_unlock_bh(&sess
->conn_lock
);
853 spin_unlock_bh(&sess
->conn_lock
);
858 void iscsit_check_conn_usage_count(struct iscsi_conn
*conn
)
860 spin_lock_bh(&conn
->conn_usage_lock
);
861 if (conn
->conn_usage_count
!= 0) {
862 conn
->conn_waiting_on_uc
= 1;
863 spin_unlock_bh(&conn
->conn_usage_lock
);
865 wait_for_completion(&conn
->conn_waiting_on_uc_comp
);
868 spin_unlock_bh(&conn
->conn_usage_lock
);
871 void iscsit_dec_conn_usage_count(struct iscsi_conn
*conn
)
873 spin_lock_bh(&conn
->conn_usage_lock
);
874 conn
->conn_usage_count
--;
876 if (!conn
->conn_usage_count
&& conn
->conn_waiting_on_uc
)
877 complete(&conn
->conn_waiting_on_uc_comp
);
879 spin_unlock_bh(&conn
->conn_usage_lock
);
882 void iscsit_inc_conn_usage_count(struct iscsi_conn
*conn
)
884 spin_lock_bh(&conn
->conn_usage_lock
);
885 conn
->conn_usage_count
++;
886 spin_unlock_bh(&conn
->conn_usage_lock
);
889 static int iscsit_add_nopin(struct iscsi_conn
*conn
, int want_response
)
892 struct iscsi_cmd
*cmd
;
894 cmd
= iscsit_allocate_cmd(conn
, TASK_RUNNING
);
898 cmd
->iscsi_opcode
= ISCSI_OP_NOOP_IN
;
899 state
= (want_response
) ? ISTATE_SEND_NOPIN_WANT_RESPONSE
:
900 ISTATE_SEND_NOPIN_NO_RESPONSE
;
901 cmd
->init_task_tag
= RESERVED_ITT
;
902 cmd
->targ_xfer_tag
= (want_response
) ?
903 session_get_next_ttt(conn
->sess
) : 0xFFFFFFFF;
904 spin_lock_bh(&conn
->cmd_lock
);
905 list_add_tail(&cmd
->i_conn_node
, &conn
->conn_cmd_list
);
906 spin_unlock_bh(&conn
->cmd_lock
);
909 iscsit_start_nopin_response_timer(conn
);
910 iscsit_add_cmd_to_immediate_queue(cmd
, conn
, state
);
915 void iscsit_handle_nopin_response_timeout(struct timer_list
*t
)
917 struct iscsi_conn
*conn
= from_timer(conn
, t
, nopin_response_timer
);
918 struct iscsi_session
*sess
= conn
->sess
;
920 iscsit_inc_conn_usage_count(conn
);
922 spin_lock_bh(&conn
->nopin_timer_lock
);
923 if (conn
->nopin_response_timer_flags
& ISCSI_TF_STOP
) {
924 spin_unlock_bh(&conn
->nopin_timer_lock
);
925 iscsit_dec_conn_usage_count(conn
);
929 pr_err("Did not receive response to NOPIN on CID: %hu, failing"
930 " connection for I_T Nexus %s,i,0x%6phN,%s,t,0x%02x\n",
931 conn
->cid
, sess
->sess_ops
->InitiatorName
, sess
->isid
,
932 sess
->tpg
->tpg_tiqn
->tiqn
, (u32
)sess
->tpg
->tpgt
);
933 conn
->nopin_response_timer_flags
&= ~ISCSI_TF_RUNNING
;
934 spin_unlock_bh(&conn
->nopin_timer_lock
);
936 iscsit_fill_cxn_timeout_err_stats(sess
);
937 iscsit_cause_connection_reinstatement(conn
, 0);
938 iscsit_dec_conn_usage_count(conn
);
941 void iscsit_mod_nopin_response_timer(struct iscsi_conn
*conn
)
943 struct iscsi_session
*sess
= conn
->sess
;
944 struct iscsi_node_attrib
*na
= iscsit_tpg_get_node_attrib(sess
);
946 spin_lock_bh(&conn
->nopin_timer_lock
);
947 if (!(conn
->nopin_response_timer_flags
& ISCSI_TF_RUNNING
)) {
948 spin_unlock_bh(&conn
->nopin_timer_lock
);
952 mod_timer(&conn
->nopin_response_timer
,
953 (get_jiffies_64() + na
->nopin_response_timeout
* HZ
));
954 spin_unlock_bh(&conn
->nopin_timer_lock
);
958 * Called with conn->nopin_timer_lock held.
960 void iscsit_start_nopin_response_timer(struct iscsi_conn
*conn
)
962 struct iscsi_session
*sess
= conn
->sess
;
963 struct iscsi_node_attrib
*na
= iscsit_tpg_get_node_attrib(sess
);
965 spin_lock_bh(&conn
->nopin_timer_lock
);
966 if (conn
->nopin_response_timer_flags
& ISCSI_TF_RUNNING
) {
967 spin_unlock_bh(&conn
->nopin_timer_lock
);
971 conn
->nopin_response_timer_flags
&= ~ISCSI_TF_STOP
;
972 conn
->nopin_response_timer_flags
|= ISCSI_TF_RUNNING
;
973 mod_timer(&conn
->nopin_response_timer
,
974 jiffies
+ na
->nopin_response_timeout
* HZ
);
976 pr_debug("Started NOPIN Response Timer on CID: %d to %u"
977 " seconds\n", conn
->cid
, na
->nopin_response_timeout
);
978 spin_unlock_bh(&conn
->nopin_timer_lock
);
981 void iscsit_stop_nopin_response_timer(struct iscsi_conn
*conn
)
983 spin_lock_bh(&conn
->nopin_timer_lock
);
984 if (!(conn
->nopin_response_timer_flags
& ISCSI_TF_RUNNING
)) {
985 spin_unlock_bh(&conn
->nopin_timer_lock
);
988 conn
->nopin_response_timer_flags
|= ISCSI_TF_STOP
;
989 spin_unlock_bh(&conn
->nopin_timer_lock
);
991 del_timer_sync(&conn
->nopin_response_timer
);
993 spin_lock_bh(&conn
->nopin_timer_lock
);
994 conn
->nopin_response_timer_flags
&= ~ISCSI_TF_RUNNING
;
995 spin_unlock_bh(&conn
->nopin_timer_lock
);
998 void iscsit_handle_nopin_timeout(struct timer_list
*t
)
1000 struct iscsi_conn
*conn
= from_timer(conn
, t
, nopin_timer
);
1002 iscsit_inc_conn_usage_count(conn
);
1004 spin_lock_bh(&conn
->nopin_timer_lock
);
1005 if (conn
->nopin_timer_flags
& ISCSI_TF_STOP
) {
1006 spin_unlock_bh(&conn
->nopin_timer_lock
);
1007 iscsit_dec_conn_usage_count(conn
);
1010 conn
->nopin_timer_flags
&= ~ISCSI_TF_RUNNING
;
1011 spin_unlock_bh(&conn
->nopin_timer_lock
);
1013 iscsit_add_nopin(conn
, 1);
1014 iscsit_dec_conn_usage_count(conn
);
1018 * Called with conn->nopin_timer_lock held.
1020 void __iscsit_start_nopin_timer(struct iscsi_conn
*conn
)
1022 struct iscsi_session
*sess
= conn
->sess
;
1023 struct iscsi_node_attrib
*na
= iscsit_tpg_get_node_attrib(sess
);
1025 * NOPIN timeout is disabled.
1027 if (!na
->nopin_timeout
)
1030 if (conn
->nopin_timer_flags
& ISCSI_TF_RUNNING
)
1033 conn
->nopin_timer_flags
&= ~ISCSI_TF_STOP
;
1034 conn
->nopin_timer_flags
|= ISCSI_TF_RUNNING
;
1035 mod_timer(&conn
->nopin_timer
, jiffies
+ na
->nopin_timeout
* HZ
);
1037 pr_debug("Started NOPIN Timer on CID: %d at %u second"
1038 " interval\n", conn
->cid
, na
->nopin_timeout
);
1041 void iscsit_start_nopin_timer(struct iscsi_conn
*conn
)
1043 spin_lock_bh(&conn
->nopin_timer_lock
);
1044 __iscsit_start_nopin_timer(conn
);
1045 spin_unlock_bh(&conn
->nopin_timer_lock
);
1048 void iscsit_stop_nopin_timer(struct iscsi_conn
*conn
)
1050 spin_lock_bh(&conn
->nopin_timer_lock
);
1051 if (!(conn
->nopin_timer_flags
& ISCSI_TF_RUNNING
)) {
1052 spin_unlock_bh(&conn
->nopin_timer_lock
);
1055 conn
->nopin_timer_flags
|= ISCSI_TF_STOP
;
1056 spin_unlock_bh(&conn
->nopin_timer_lock
);
1058 del_timer_sync(&conn
->nopin_timer
);
1060 spin_lock_bh(&conn
->nopin_timer_lock
);
1061 conn
->nopin_timer_flags
&= ~ISCSI_TF_RUNNING
;
1062 spin_unlock_bh(&conn
->nopin_timer_lock
);
1065 int iscsit_send_tx_data(
1066 struct iscsi_cmd
*cmd
,
1067 struct iscsi_conn
*conn
,
1070 int tx_sent
, tx_size
;
1075 tx_size
= cmd
->tx_size
;
1078 iov
= &cmd
->iov_data
[0];
1079 iov_count
= cmd
->iov_data_count
;
1081 iov
= &cmd
->iov_misc
[0];
1082 iov_count
= cmd
->iov_misc_count
;
1085 tx_sent
= tx_data(conn
, &iov
[0], iov_count
, tx_size
);
1086 if (tx_size
!= tx_sent
) {
1087 if (tx_sent
== -EAGAIN
) {
1088 pr_err("tx_data() returned -EAGAIN\n");
1098 int iscsit_fe_sendpage_sg(
1099 struct iscsi_cmd
*cmd
,
1100 struct iscsi_conn
*conn
)
1102 struct scatterlist
*sg
= cmd
->first_data_sg
;
1104 u32 tx_hdr_size
, data_len
;
1105 u32 offset
= cmd
->first_data_sg_off
;
1106 int tx_sent
, iov_off
;
1109 tx_hdr_size
= ISCSI_HDR_LEN
;
1110 if (conn
->conn_ops
->HeaderDigest
)
1111 tx_hdr_size
+= ISCSI_CRC_LEN
;
1113 iov
.iov_base
= cmd
->pdu
;
1114 iov
.iov_len
= tx_hdr_size
;
1116 tx_sent
= tx_data(conn
, &iov
, 1, tx_hdr_size
);
1117 if (tx_hdr_size
!= tx_sent
) {
1118 if (tx_sent
== -EAGAIN
) {
1119 pr_err("tx_data() returned -EAGAIN\n");
1125 data_len
= cmd
->tx_size
- tx_hdr_size
- cmd
->padding
;
1127 * Set iov_off used by padding and data digest tx_data() calls below
1128 * in order to determine proper offset into cmd->iov_data[]
1130 if (conn
->conn_ops
->DataDigest
) {
1131 data_len
-= ISCSI_CRC_LEN
;
1133 iov_off
= (cmd
->iov_data_count
- 2);
1135 iov_off
= (cmd
->iov_data_count
- 1);
1137 iov_off
= (cmd
->iov_data_count
- 1);
1140 * Perform sendpage() for each page in the scatterlist
1143 u32 space
= (sg
->length
- offset
);
1144 u32 sub_len
= min_t(u32
, data_len
, space
);
1146 tx_sent
= conn
->sock
->ops
->sendpage(conn
->sock
,
1147 sg_page(sg
), sg
->offset
+ offset
, sub_len
, 0);
1148 if (tx_sent
!= sub_len
) {
1149 if (tx_sent
== -EAGAIN
) {
1150 pr_err("tcp_sendpage() returned"
1155 pr_err("tcp_sendpage() failure: %d\n",
1160 data_len
-= sub_len
;
1167 struct kvec
*iov_p
= &cmd
->iov_data
[iov_off
++];
1169 tx_sent
= tx_data(conn
, iov_p
, 1, cmd
->padding
);
1170 if (cmd
->padding
!= tx_sent
) {
1171 if (tx_sent
== -EAGAIN
) {
1172 pr_err("tx_data() returned -EAGAIN\n");
1180 if (conn
->conn_ops
->DataDigest
) {
1181 struct kvec
*iov_d
= &cmd
->iov_data
[iov_off
];
1183 tx_sent
= tx_data(conn
, iov_d
, 1, ISCSI_CRC_LEN
);
1184 if (ISCSI_CRC_LEN
!= tx_sent
) {
1185 if (tx_sent
== -EAGAIN
) {
1186 pr_err("tx_data() returned -EAGAIN\n");
1197 * This function is used for mainly sending a ISCSI_TARG_LOGIN_RSP PDU
1198 * back to the Initiator when an expection condition occurs with the
1199 * errors set in status_class and status_detail.
1201 * Parameters: iSCSI Connection, Status Class, Status Detail.
1202 * Returns: 0 on success, -1 on error.
1204 int iscsit_tx_login_rsp(struct iscsi_conn
*conn
, u8 status_class
, u8 status_detail
)
1206 struct iscsi_login_rsp
*hdr
;
1207 struct iscsi_login
*login
= conn
->conn_login
;
1209 login
->login_failed
= 1;
1210 iscsit_collect_login_stats(conn
, status_class
, status_detail
);
1212 memset(&login
->rsp
[0], 0, ISCSI_HDR_LEN
);
1214 hdr
= (struct iscsi_login_rsp
*)&login
->rsp
[0];
1215 hdr
->opcode
= ISCSI_OP_LOGIN_RSP
;
1216 hdr
->status_class
= status_class
;
1217 hdr
->status_detail
= status_detail
;
1218 hdr
->itt
= conn
->login_itt
;
1220 return conn
->conn_transport
->iscsit_put_login_tx(conn
, login
, 0);
1223 void iscsit_print_session_params(struct iscsi_session
*sess
)
1225 struct iscsi_conn
*conn
;
1227 pr_debug("-----------------------------[Session Params for"
1228 " SID: %u]-----------------------------\n", sess
->sid
);
1229 spin_lock_bh(&sess
->conn_lock
);
1230 list_for_each_entry(conn
, &sess
->sess_conn_list
, conn_list
)
1231 iscsi_dump_conn_ops(conn
->conn_ops
);
1232 spin_unlock_bh(&sess
->conn_lock
);
1234 iscsi_dump_sess_ops(sess
->sess_ops
);
1237 static int iscsit_do_rx_data(
1238 struct iscsi_conn
*conn
,
1239 struct iscsi_data_count
*count
)
1241 int data
= count
->data_length
, rx_loop
= 0, total_rx
= 0;
1244 if (!conn
|| !conn
->sock
|| !conn
->conn_ops
)
1247 memset(&msg
, 0, sizeof(struct msghdr
));
1248 iov_iter_kvec(&msg
.msg_iter
, READ
, count
->iov
, count
->iov_count
, data
);
1250 while (msg_data_left(&msg
)) {
1251 rx_loop
= sock_recvmsg(conn
->sock
, &msg
, MSG_WAITALL
);
1253 pr_debug("rx_loop: %d total_rx: %d\n",
1257 total_rx
+= rx_loop
;
1258 pr_debug("rx_loop: %d, total_rx: %d, data: %d\n",
1259 rx_loop
, total_rx
, data
);
1266 struct iscsi_conn
*conn
,
1271 struct iscsi_data_count c
;
1273 if (!conn
|| !conn
->sock
|| !conn
->conn_ops
)
1276 memset(&c
, 0, sizeof(struct iscsi_data_count
));
1278 c
.iov_count
= iov_count
;
1279 c
.data_length
= data
;
1280 c
.type
= ISCSI_RX_DATA
;
1282 return iscsit_do_rx_data(conn
, &c
);
1286 struct iscsi_conn
*conn
,
1294 if (!conn
|| !conn
->sock
|| !conn
->conn_ops
)
1298 pr_err("Data length is: %d\n", data
);
1302 memset(&msg
, 0, sizeof(struct msghdr
));
1304 iov_iter_kvec(&msg
.msg_iter
, WRITE
, iov
, iov_count
, data
);
1306 while (msg_data_left(&msg
)) {
1307 int tx_loop
= sock_sendmsg(conn
->sock
, &msg
);
1309 pr_debug("tx_loop: %d total_tx %d\n",
1313 total_tx
+= tx_loop
;
1314 pr_debug("tx_loop: %d, total_tx: %d, data: %d\n",
1315 tx_loop
, total_tx
, data
);
1321 void iscsit_collect_login_stats(
1322 struct iscsi_conn
*conn
,
1326 struct iscsi_param
*intrname
= NULL
;
1327 struct iscsi_tiqn
*tiqn
;
1328 struct iscsi_login_stats
*ls
;
1330 tiqn
= iscsit_snmp_get_tiqn(conn
);
1334 ls
= &tiqn
->login_stats
;
1336 spin_lock(&ls
->lock
);
1337 if (status_class
== ISCSI_STATUS_CLS_SUCCESS
)
1339 else if (status_class
== ISCSI_STATUS_CLS_REDIRECT
) {
1341 ls
->last_fail_type
= ISCSI_LOGIN_FAIL_REDIRECT
;
1342 } else if ((status_class
== ISCSI_STATUS_CLS_INITIATOR_ERR
) &&
1343 (status_detail
== ISCSI_LOGIN_STATUS_AUTH_FAILED
)) {
1344 ls
->authenticate_fails
++;
1345 ls
->last_fail_type
= ISCSI_LOGIN_FAIL_AUTHENTICATE
;
1346 } else if ((status_class
== ISCSI_STATUS_CLS_INITIATOR_ERR
) &&
1347 (status_detail
== ISCSI_LOGIN_STATUS_TGT_FORBIDDEN
)) {
1348 ls
->authorize_fails
++;
1349 ls
->last_fail_type
= ISCSI_LOGIN_FAIL_AUTHORIZE
;
1350 } else if ((status_class
== ISCSI_STATUS_CLS_INITIATOR_ERR
) &&
1351 (status_detail
== ISCSI_LOGIN_STATUS_INIT_ERR
)) {
1352 ls
->negotiate_fails
++;
1353 ls
->last_fail_type
= ISCSI_LOGIN_FAIL_NEGOTIATE
;
1356 ls
->last_fail_type
= ISCSI_LOGIN_FAIL_OTHER
;
1359 /* Save initiator name, ip address and time, if it is a failed login */
1360 if (status_class
!= ISCSI_STATUS_CLS_SUCCESS
) {
1361 if (conn
->param_list
)
1362 intrname
= iscsi_find_param_from_key(INITIATORNAME
,
1364 strlcpy(ls
->last_intr_fail_name
,
1365 (intrname
? intrname
->value
: "Unknown"),
1366 sizeof(ls
->last_intr_fail_name
));
1368 ls
->last_intr_fail_ip_family
= conn
->login_family
;
1370 ls
->last_intr_fail_sockaddr
= conn
->login_sockaddr
;
1371 ls
->last_fail_time
= get_jiffies_64();
1374 spin_unlock(&ls
->lock
);
1377 struct iscsi_tiqn
*iscsit_snmp_get_tiqn(struct iscsi_conn
*conn
)
1379 struct iscsi_portal_group
*tpg
;
1391 return tpg
->tpg_tiqn
;
1394 void iscsit_fill_cxn_timeout_err_stats(struct iscsi_session
*sess
)
1396 struct iscsi_portal_group
*tpg
= sess
->tpg
;
1397 struct iscsi_tiqn
*tiqn
= tpg
->tpg_tiqn
;
1402 spin_lock_bh(&tiqn
->sess_err_stats
.lock
);
1403 strlcpy(tiqn
->sess_err_stats
.last_sess_fail_rem_name
,
1404 sess
->sess_ops
->InitiatorName
,
1405 sizeof(tiqn
->sess_err_stats
.last_sess_fail_rem_name
));
1406 tiqn
->sess_err_stats
.last_sess_failure_type
=
1407 ISCSI_SESS_ERR_CXN_TIMEOUT
;
1408 tiqn
->sess_err_stats
.cxn_timeout_errors
++;
1409 atomic_long_inc(&sess
->conn_timeout_errors
);
1410 spin_unlock_bh(&tiqn
->sess_err_stats
.lock
);