scsi: libiscsi: Move ehwait initialization to iscsi_session_setup()
authorDing Hui <dinghui@sangfor.com.cn>
Sat, 11 Sep 2021 13:51:59 +0000 (21:51 +0800)
committerMartin K. Petersen <martin.petersen@oracle.com>
Tue, 14 Sep 2021 04:02:45 +0000 (00:02 -0400)
commite018f03d6ccbd9c3ce6a9fae4f582113f2a2906b
tree49becf93f5fd2e83ba3ff3297c6419136e508a71
parentce4fc333e599c19973455c9d8f6fbb1e7c140dc8
scsi: libiscsi: Move ehwait initialization to iscsi_session_setup()

Commit ec29d0ac29be ("scsi: iscsi: Fix conn use after free during resets")
moved member ehwait from 'conn' to 'session', but left the initialization
of ehwait in iscsi_conn_setup().

Although a session can only have 1 conn currently, it is better to
initialize ehwait in iscsi_session_setup() in case we implement handling
multiple conns in the future.

Link: https://lore.kernel.org/r/20210911135159.20543-1-dinghui@sangfor.com.cn
Reviewed-by: Mike Christie <michael.christie@oracle.com>
Signed-off-by: Ding Hui <dinghui@sangfor.com.cn>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/libiscsi.c