Skip to content

Commit 046098e

Browse files
authored
DLPX-71852 iSCSI: journal flooded with "Unable to locate Target IQN" messages (#2)
1 parent 7a76e0e commit 046098e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

drivers/target/iscsi/iscsi_target_login.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1177,7 +1177,7 @@ void iscsi_target_login_sess_out(struct iscsi_conn *conn,
11771177
if (!new_sess)
11781178
goto old_sess_out;
11791179

1180-
pr_err("iSCSI Login negotiation failed.\n");
1180+
pr_debug("iSCSI Login negotiation failed.\n");
11811181
iscsit_collect_login_stats(conn, ISCSI_STATUS_CLS_INITIATOR_ERR,
11821182
ISCSI_LOGIN_STATUS_INIT_ERR);
11831183
if (!zero_tsih || !conn->sess)

drivers/target/iscsi/iscsi_target_nego.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1165,7 +1165,7 @@ int iscsi_target_locate_portal(
11651165
*/
11661166
tiqn = iscsit_get_tiqn_for_login(t_buf);
11671167
if (!tiqn) {
1168-
pr_err("Unable to locate Target IQN: %s in"
1168+
pr_debug("Unable to locate Target IQN: %s in"
11691169
" Storage Node\n", t_buf);
11701170
iscsit_tx_login_rsp(conn, ISCSI_STATUS_CLS_TARGET_ERR,
11711171
ISCSI_LOGIN_STATUS_SVC_UNAVAILABLE);

0 commit comments

Comments
 (0)