Commit 902ff860 authored by Colin Ian King's avatar Colin Ian King Committed by Martin K. Petersen
Browse files

scsi: iscsi: target: fix spelling mistake "entires" -> "entries"



Trivial fix to spelling mistake in function name and comment

Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent fdd0a66b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4356,7 +4356,7 @@ int iscsit_close_session(struct iscsi_session *sess)
	transport_deregister_session(sess->se_sess);

	if (sess->sess_ops->ErrorRecoveryLevel == 2)
		iscsit_free_connection_recovery_entires(sess);
		iscsit_free_connection_recovery_entries(sess);

	iscsit_free_all_ooo_cmdsns(sess);

+1 −1
Original line number Diff line number Diff line
@@ -125,7 +125,7 @@ struct iscsi_conn_recovery *iscsit_get_inactive_connection_recovery_entry(
	return NULL;
}

void iscsit_free_connection_recovery_entires(struct iscsi_session *sess)
void iscsit_free_connection_recovery_entries(struct iscsi_session *sess)
{
	struct iscsi_cmd *cmd, *cmd_tmp;
	struct iscsi_conn_recovery *cr, *cr_tmp;
+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@ extern void iscsit_create_conn_recovery_datain_values(struct iscsi_cmd *, __be32
extern void iscsit_create_conn_recovery_dataout_values(struct iscsi_cmd *);
extern struct iscsi_conn_recovery *iscsit_get_inactive_connection_recovery_entry(
			struct iscsi_session *, u16);
extern void iscsit_free_connection_recovery_entires(struct iscsi_session *);
extern void iscsit_free_connection_recovery_entries(struct iscsi_session *);
extern int iscsit_remove_active_connection_recovery_entry(
			struct iscsi_conn_recovery *, struct iscsi_session *);
extern int iscsit_remove_cmd_from_connection_recovery(struct iscsi_cmd *,
+1 −1
Original line number Diff line number Diff line
@@ -615,7 +615,7 @@ int iscsi_login_post_auth_non_zero_tsih(
	}

	/*
	 * Check for any connection recovery entires containing CID.
	 * Check for any connection recovery entries containing CID.
	 * We use the original ExpStatSN sent in the first login request
	 * to acknowledge commands for the failed connection.
	 *