mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 19:10:52 +07:00
scsi: target: use ISCSI_IQN_LEN in iscsi_target_stat
Move the ISCSI_IQN_LEN definition up, so that it can be used in more places instead of a hardcoded value. Signed-off-by: David Disseldorp <ddiss@suse.de> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
3bccfba831
commit
df711553f4
@ -328,10 +328,10 @@ static ssize_t iscsi_stat_tgt_attr_fail_intr_name_show(struct config_item *item,
|
||||
{
|
||||
struct iscsi_tiqn *tiqn = iscsi_tgt_attr_tiqn(item);
|
||||
struct iscsi_login_stats *lstat = &tiqn->login_stats;
|
||||
unsigned char buf[224];
|
||||
unsigned char buf[ISCSI_IQN_LEN];
|
||||
|
||||
spin_lock(&lstat->lock);
|
||||
snprintf(buf, 224, "%s", lstat->last_intr_fail_name[0] ?
|
||||
snprintf(buf, ISCSI_IQN_LEN, "%s", lstat->last_intr_fail_name[0] ?
|
||||
lstat->last_intr_fail_name : NONE);
|
||||
spin_unlock(&lstat->lock);
|
||||
|
||||
|
@ -25,6 +25,7 @@ struct sock;
|
||||
#define ISCSIT_TCP_BACKLOG 256
|
||||
#define ISCSI_RX_THREAD_NAME "iscsi_trx"
|
||||
#define ISCSI_TX_THREAD_NAME "iscsi_ttx"
|
||||
#define ISCSI_IQN_LEN 224
|
||||
|
||||
/* struct iscsi_node_attrib sanity values */
|
||||
#define NA_DATAOUT_TIMEOUT 3
|
||||
@ -270,9 +271,9 @@ struct iscsi_conn_ops {
|
||||
};
|
||||
|
||||
struct iscsi_sess_ops {
|
||||
char InitiatorName[224];
|
||||
char InitiatorName[ISCSI_IQN_LEN];
|
||||
char InitiatorAlias[256];
|
||||
char TargetName[224];
|
||||
char TargetName[ISCSI_IQN_LEN];
|
||||
char TargetAlias[256];
|
||||
char TargetAddress[256];
|
||||
u16 TargetPortalGroupTag; /* [0..65535] */
|
||||
@ -855,7 +856,6 @@ struct iscsi_wwn_stat_grps {
|
||||
};
|
||||
|
||||
struct iscsi_tiqn {
|
||||
#define ISCSI_IQN_LEN 224
|
||||
unsigned char tiqn[ISCSI_IQN_LEN];
|
||||
enum tiqn_state_table tiqn_state;
|
||||
int tiqn_access_count;
|
||||
|
@ -33,7 +33,7 @@ struct iscsi_sess_err_stats {
|
||||
u32 cxn_timeout_errors;
|
||||
u32 pdu_format_errors;
|
||||
u32 last_sess_failure_type;
|
||||
char last_sess_fail_rem_name[224];
|
||||
char last_sess_fail_rem_name[ISCSI_IQN_LEN];
|
||||
} ____cacheline_aligned;
|
||||
|
||||
/* iSCSI login failure types (sub oids) */
|
||||
@ -56,7 +56,7 @@ struct iscsi_login_stats {
|
||||
u32 last_fail_type;
|
||||
int last_intr_fail_ip_family;
|
||||
struct sockaddr_storage last_intr_fail_sockaddr;
|
||||
char last_intr_fail_name[224];
|
||||
char last_intr_fail_name[ISCSI_IQN_LEN];
|
||||
} ____cacheline_aligned;
|
||||
|
||||
/* iSCSI logout stats */
|
||||
|
Loading…
Reference in New Issue
Block a user