mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-25 05:04:09 +08:00
scsi: iscsi: target: fix spelling mistake "entires" -> "entries"
Trivial fix to spelling mistake in function name and comment Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
fdd0a66b7a
commit
902ff8603e
@ -4356,7 +4356,7 @@ int iscsit_close_session(struct iscsi_session *sess)
|
|||||||
transport_deregister_session(sess->se_sess);
|
transport_deregister_session(sess->se_sess);
|
||||||
|
|
||||||
if (sess->sess_ops->ErrorRecoveryLevel == 2)
|
if (sess->sess_ops->ErrorRecoveryLevel == 2)
|
||||||
iscsit_free_connection_recovery_entires(sess);
|
iscsit_free_connection_recovery_entries(sess);
|
||||||
|
|
||||||
iscsit_free_all_ooo_cmdsns(sess);
|
iscsit_free_all_ooo_cmdsns(sess);
|
||||||
|
|
||||||
|
@ -125,7 +125,7 @@ struct iscsi_conn_recovery *iscsit_get_inactive_connection_recovery_entry(
|
|||||||
return NULL;
|
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_cmd *cmd, *cmd_tmp;
|
||||||
struct iscsi_conn_recovery *cr, *cr_tmp;
|
struct iscsi_conn_recovery *cr, *cr_tmp;
|
||||||
|
@ -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 void iscsit_create_conn_recovery_dataout_values(struct iscsi_cmd *);
|
||||||
extern struct iscsi_conn_recovery *iscsit_get_inactive_connection_recovery_entry(
|
extern struct iscsi_conn_recovery *iscsit_get_inactive_connection_recovery_entry(
|
||||||
struct iscsi_session *, u16);
|
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(
|
extern int iscsit_remove_active_connection_recovery_entry(
|
||||||
struct iscsi_conn_recovery *, struct iscsi_session *);
|
struct iscsi_conn_recovery *, struct iscsi_session *);
|
||||||
extern int iscsit_remove_cmd_from_connection_recovery(struct iscsi_cmd *,
|
extern int iscsit_remove_cmd_from_connection_recovery(struct iscsi_cmd *,
|
||||||
|
@ -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
|
* We use the original ExpStatSN sent in the first login request
|
||||||
* to acknowledge commands for the failed connection.
|
* to acknowledge commands for the failed connection.
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user