Commit 125d0119 authored by Hannes Reinecke's avatar Hannes Reinecke Committed by Nicholas Bellinger

target core: rename (ex,im)plict -> (ex,im)plicit

Signed-off-by: default avatarHannes Reinecke <hare@suse.de>
Signed-off-by: default avatarNicholas Bellinger <nab@linux-iscsi.org>
parent fcd40d69
This diff is collapsed.
...@@ -7,8 +7,8 @@ ...@@ -7,8 +7,8 @@
* from spc4r17 section 6.4.2 Table 135 * from spc4r17 section 6.4.2 Table 135
*/ */
#define TPGS_NO_ALUA 0x00 #define TPGS_NO_ALUA 0x00
#define TPGS_IMPLICT_ALUA 0x10 #define TPGS_IMPLICIT_ALUA 0x10
#define TPGS_EXPLICT_ALUA 0x20 #define TPGS_EXPLICIT_ALUA 0x20
/* /*
* ASYMMETRIC ACCESS STATE field * ASYMMETRIC ACCESS STATE field
...@@ -28,8 +28,8 @@ ...@@ -28,8 +28,8 @@
* from spc4r17 section 6.27 Table 246 * from spc4r17 section 6.27 Table 246
*/ */
#define ALUA_STATUS_NONE 0x00 #define ALUA_STATUS_NONE 0x00
#define ALUA_STATUS_ALTERED_BY_EXPLICT_STPG 0x01 #define ALUA_STATUS_ALTERED_BY_EXPLICIT_STPG 0x01
#define ALUA_STATUS_ALTERED_BY_IMPLICT_ALUA 0x02 #define ALUA_STATUS_ALTERED_BY_IMPLICIT_ALUA 0x02
/* /*
* From spc4r17, Table D.1: ASC and ASCQ Assignement * From spc4r17, Table D.1: ASC and ASCQ Assignement
...@@ -46,17 +46,17 @@ ...@@ -46,17 +46,17 @@
#define ALUA_DEFAULT_NONOP_DELAY_MSECS 100 #define ALUA_DEFAULT_NONOP_DELAY_MSECS 100
#define ALUA_MAX_NONOP_DELAY_MSECS 10000 /* 10 seconds */ #define ALUA_MAX_NONOP_DELAY_MSECS 10000 /* 10 seconds */
/* /*
* Used for implict and explict ALUA transitional delay, that is disabled * Used for implicit and explicit ALUA transitional delay, that is disabled
* by default, and is intended to be used for debugging client side ALUA code. * by default, and is intended to be used for debugging client side ALUA code.
*/ */
#define ALUA_DEFAULT_TRANS_DELAY_MSECS 0 #define ALUA_DEFAULT_TRANS_DELAY_MSECS 0
#define ALUA_MAX_TRANS_DELAY_MSECS 30000 /* 30 seconds */ #define ALUA_MAX_TRANS_DELAY_MSECS 30000 /* 30 seconds */
/* /*
* Used for the recommended application client implict transition timeout * Used for the recommended application client implicit transition timeout
* in seconds, returned by the REPORT_TARGET_PORT_GROUPS w/ extended header. * in seconds, returned by the REPORT_TARGET_PORT_GROUPS w/ extended header.
*/ */
#define ALUA_DEFAULT_IMPLICT_TRANS_SECS 0 #define ALUA_DEFAULT_IMPLICIT_TRANS_SECS 0
#define ALUA_MAX_IMPLICT_TRANS_SECS 255 #define ALUA_MAX_IMPLICIT_TRANS_SECS 255
/* /*
* Used by core_alua_update_tpg_primary_metadata() and * Used by core_alua_update_tpg_primary_metadata() and
* core_alua_update_tpg_secondary_metadata() * core_alua_update_tpg_secondary_metadata()
...@@ -113,9 +113,9 @@ extern ssize_t core_alua_show_trans_delay_msecs(struct t10_alua_tg_pt_gp *, ...@@ -113,9 +113,9 @@ extern ssize_t core_alua_show_trans_delay_msecs(struct t10_alua_tg_pt_gp *,
char *); char *);
extern ssize_t core_alua_store_trans_delay_msecs(struct t10_alua_tg_pt_gp *, extern ssize_t core_alua_store_trans_delay_msecs(struct t10_alua_tg_pt_gp *,
const char *, size_t); const char *, size_t);
extern ssize_t core_alua_show_implict_trans_secs(struct t10_alua_tg_pt_gp *, extern ssize_t core_alua_show_implicit_trans_secs(struct t10_alua_tg_pt_gp *,
char *); char *);
extern ssize_t core_alua_store_implict_trans_secs(struct t10_alua_tg_pt_gp *, extern ssize_t core_alua_store_implicit_trans_secs(struct t10_alua_tg_pt_gp *,
const char *, size_t); const char *, size_t);
extern ssize_t core_alua_show_preferred_bit(struct t10_alua_tg_pt_gp *, extern ssize_t core_alua_show_preferred_bit(struct t10_alua_tg_pt_gp *,
char *); char *);
......
...@@ -2036,7 +2036,7 @@ static ssize_t target_core_alua_tg_pt_gp_store_attr_alua_access_state( ...@@ -2036,7 +2036,7 @@ static ssize_t target_core_alua_tg_pt_gp_store_attr_alua_access_state(
int new_state, ret; int new_state, ret;
if (!tg_pt_gp->tg_pt_gp_valid_id) { if (!tg_pt_gp->tg_pt_gp_valid_id) {
pr_err("Unable to do implict ALUA on non valid" pr_err("Unable to do implicit ALUA on non valid"
" tg_pt_gp ID: %hu\n", tg_pt_gp->tg_pt_gp_valid_id); " tg_pt_gp ID: %hu\n", tg_pt_gp->tg_pt_gp_valid_id);
return -EINVAL; return -EINVAL;
} }
...@@ -2049,9 +2049,9 @@ static ssize_t target_core_alua_tg_pt_gp_store_attr_alua_access_state( ...@@ -2049,9 +2049,9 @@ static ssize_t target_core_alua_tg_pt_gp_store_attr_alua_access_state(
} }
new_state = (int)tmp; new_state = (int)tmp;
if (!(tg_pt_gp->tg_pt_gp_alua_access_type & TPGS_IMPLICT_ALUA)) { if (!(tg_pt_gp->tg_pt_gp_alua_access_type & TPGS_IMPLICIT_ALUA)) {
pr_err("Unable to process implict configfs ALUA" pr_err("Unable to process implicit configfs ALUA"
" transition while TPGS_IMPLICT_ALUA is disabled\n"); " transition while TPGS_IMPLICIT_ALUA is disabled\n");
return -EINVAL; return -EINVAL;
} }
...@@ -2097,8 +2097,8 @@ static ssize_t target_core_alua_tg_pt_gp_store_attr_alua_access_status( ...@@ -2097,8 +2097,8 @@ static ssize_t target_core_alua_tg_pt_gp_store_attr_alua_access_status(
new_status = (int)tmp; new_status = (int)tmp;
if ((new_status != ALUA_STATUS_NONE) && if ((new_status != ALUA_STATUS_NONE) &&
(new_status != ALUA_STATUS_ALTERED_BY_EXPLICT_STPG) && (new_status != ALUA_STATUS_ALTERED_BY_EXPLICIT_STPG) &&
(new_status != ALUA_STATUS_ALTERED_BY_IMPLICT_ALUA)) { (new_status != ALUA_STATUS_ALTERED_BY_IMPLICIT_ALUA)) {
pr_err("Illegal ALUA access status: 0x%02x\n", pr_err("Illegal ALUA access status: 0x%02x\n",
new_status); new_status);
return -EINVAL; return -EINVAL;
...@@ -2210,24 +2210,24 @@ static ssize_t target_core_alua_tg_pt_gp_store_attr_trans_delay_msecs( ...@@ -2210,24 +2210,24 @@ static ssize_t target_core_alua_tg_pt_gp_store_attr_trans_delay_msecs(
SE_DEV_ALUA_TG_PT_ATTR(trans_delay_msecs, S_IRUGO | S_IWUSR); SE_DEV_ALUA_TG_PT_ATTR(trans_delay_msecs, S_IRUGO | S_IWUSR);
/* /*
* implict_trans_secs * implicit_trans_secs
*/ */
static ssize_t target_core_alua_tg_pt_gp_show_attr_implict_trans_secs( static ssize_t target_core_alua_tg_pt_gp_show_attr_implicit_trans_secs(
struct t10_alua_tg_pt_gp *tg_pt_gp, struct t10_alua_tg_pt_gp *tg_pt_gp,
char *page) char *page)
{ {
return core_alua_show_implict_trans_secs(tg_pt_gp, page); return core_alua_show_implicit_trans_secs(tg_pt_gp, page);
} }
static ssize_t target_core_alua_tg_pt_gp_store_attr_implict_trans_secs( static ssize_t target_core_alua_tg_pt_gp_store_attr_implicit_trans_secs(
struct t10_alua_tg_pt_gp *tg_pt_gp, struct t10_alua_tg_pt_gp *tg_pt_gp,
const char *page, const char *page,
size_t count) size_t count)
{ {
return core_alua_store_implict_trans_secs(tg_pt_gp, page, count); return core_alua_store_implicit_trans_secs(tg_pt_gp, page, count);
} }
SE_DEV_ALUA_TG_PT_ATTR(implict_trans_secs, S_IRUGO | S_IWUSR); SE_DEV_ALUA_TG_PT_ATTR(implicit_trans_secs, S_IRUGO | S_IWUSR);
/* /*
* preferred * preferred
...@@ -2353,7 +2353,7 @@ static struct configfs_attribute *target_core_alua_tg_pt_gp_attrs[] = { ...@@ -2353,7 +2353,7 @@ static struct configfs_attribute *target_core_alua_tg_pt_gp_attrs[] = {
&target_core_alua_tg_pt_gp_alua_write_metadata.attr, &target_core_alua_tg_pt_gp_alua_write_metadata.attr,
&target_core_alua_tg_pt_gp_nonop_delay_msecs.attr, &target_core_alua_tg_pt_gp_nonop_delay_msecs.attr,
&target_core_alua_tg_pt_gp_trans_delay_msecs.attr, &target_core_alua_tg_pt_gp_trans_delay_msecs.attr,
&target_core_alua_tg_pt_gp_implict_trans_secs.attr, &target_core_alua_tg_pt_gp_implicit_trans_secs.attr,
&target_core_alua_tg_pt_gp_preferred.attr, &target_core_alua_tg_pt_gp_preferred.attr,
&target_core_alua_tg_pt_gp_tg_pt_gp_id.attr, &target_core_alua_tg_pt_gp_tg_pt_gp_id.attr,
&target_core_alua_tg_pt_gp_members.attr, &target_core_alua_tg_pt_gp_members.attr,
......
...@@ -313,14 +313,14 @@ int core_enable_device_list_for_node( ...@@ -313,14 +313,14 @@ int core_enable_device_list_for_node(
deve = nacl->device_list[mapped_lun]; deve = nacl->device_list[mapped_lun];
/* /*
* Check if the call is handling demo mode -> explict LUN ACL * Check if the call is handling demo mode -> explicit LUN ACL
* transition. This transition must be for the same struct se_lun * transition. This transition must be for the same struct se_lun
* + mapped_lun that was setup in demo mode.. * + mapped_lun that was setup in demo mode..
*/ */
if (deve->lun_flags & TRANSPORT_LUNFLAGS_INITIATOR_ACCESS) { if (deve->lun_flags & TRANSPORT_LUNFLAGS_INITIATOR_ACCESS) {
if (deve->se_lun_acl != NULL) { if (deve->se_lun_acl != NULL) {
pr_err("struct se_dev_entry->se_lun_acl" pr_err("struct se_dev_entry->se_lun_acl"
" already set for demo mode -> explict" " already set for demo mode -> explicit"
" LUN ACL transition\n"); " LUN ACL transition\n");
spin_unlock_irq(&nacl->device_list_lock); spin_unlock_irq(&nacl->device_list_lock);
return -EINVAL; return -EINVAL;
...@@ -328,7 +328,7 @@ int core_enable_device_list_for_node( ...@@ -328,7 +328,7 @@ int core_enable_device_list_for_node(
if (deve->se_lun != lun) { if (deve->se_lun != lun) {
pr_err("struct se_dev_entry->se_lun does" pr_err("struct se_dev_entry->se_lun does"
" match passed struct se_lun for demo mode" " match passed struct se_lun for demo mode"
" -> explict LUN ACL transition\n"); " -> explicit LUN ACL transition\n");
spin_unlock_irq(&nacl->device_list_lock); spin_unlock_irq(&nacl->device_list_lock);
return -EINVAL; return -EINVAL;
} }
......
...@@ -562,7 +562,7 @@ fd_execute_rw(struct se_cmd *cmd, struct scatterlist *sgl, u32 sgl_nents, ...@@ -562,7 +562,7 @@ fd_execute_rw(struct se_cmd *cmd, struct scatterlist *sgl, u32 sgl_nents,
} else { } else {
ret = fd_do_rw(cmd, sgl, sgl_nents, 1); ret = fd_do_rw(cmd, sgl, sgl_nents, 1);
/* /*
* Perform implict vfs_fsync_range() for fd_do_writev() ops * Perform implicit vfs_fsync_range() for fd_do_writev() ops
* for SCSI WRITEs with Forced Unit Access (FUA) set. * for SCSI WRITEs with Forced Unit Access (FUA) set.
* Allow this to happen independent of WCE=0 setting. * Allow this to happen independent of WCE=0 setting.
*/ */
......
...@@ -474,7 +474,7 @@ static int core_scsi3_pr_seq_non_holder( ...@@ -474,7 +474,7 @@ static int core_scsi3_pr_seq_non_holder(
* statement. * statement.
*/ */
if (!ret && !other_cdb) { if (!ret && !other_cdb) {
pr_debug("Allowing explict CDB: 0x%02x for %s" pr_debug("Allowing explicit CDB: 0x%02x for %s"
" reservation holder\n", cdb[0], " reservation holder\n", cdb[0],
core_scsi3_pr_dump_type(pr_reg_type)); core_scsi3_pr_dump_type(pr_reg_type));
...@@ -507,7 +507,7 @@ static int core_scsi3_pr_seq_non_holder( ...@@ -507,7 +507,7 @@ static int core_scsi3_pr_seq_non_holder(
*/ */
if (!registered_nexus) { if (!registered_nexus) {
pr_debug("Allowing implict CDB: 0x%02x" pr_debug("Allowing implicit CDB: 0x%02x"
" for %s reservation on unregistered" " for %s reservation on unregistered"
" nexus\n", cdb[0], " nexus\n", cdb[0],
core_scsi3_pr_dump_type(pr_reg_type)); core_scsi3_pr_dump_type(pr_reg_type));
...@@ -522,7 +522,7 @@ static int core_scsi3_pr_seq_non_holder( ...@@ -522,7 +522,7 @@ static int core_scsi3_pr_seq_non_holder(
* allow commands from registered nexuses. * allow commands from registered nexuses.
*/ */
pr_debug("Allowing implict CDB: 0x%02x for %s" pr_debug("Allowing implicit CDB: 0x%02x for %s"
" reservation\n", cdb[0], " reservation\n", cdb[0],
core_scsi3_pr_dump_type(pr_reg_type)); core_scsi3_pr_dump_type(pr_reg_type));
...@@ -683,7 +683,7 @@ static struct t10_pr_registration *__core_scsi3_alloc_registration( ...@@ -683,7 +683,7 @@ static struct t10_pr_registration *__core_scsi3_alloc_registration(
alua_port_list) { alua_port_list) {
/* /*
* This pointer will be NULL for demo mode MappedLUNs * This pointer will be NULL for demo mode MappedLUNs
* that have not been make explict via a ConfigFS * that have not been make explicit via a ConfigFS
* MappedLUN group for the SCSI Initiator Node ACL. * MappedLUN group for the SCSI Initiator Node ACL.
*/ */
if (!deve_tmp->se_lun_acl) if (!deve_tmp->se_lun_acl)
...@@ -1158,7 +1158,7 @@ static void core_scsi3_put_pr_reg(struct t10_pr_registration *pr_reg) ...@@ -1158,7 +1158,7 @@ static void core_scsi3_put_pr_reg(struct t10_pr_registration *pr_reg)
smp_mb__after_atomic_dec(); smp_mb__after_atomic_dec();
} }
static int core_scsi3_check_implict_release( static int core_scsi3_check_implicit_release(
struct se_device *dev, struct se_device *dev,
struct t10_pr_registration *pr_reg) struct t10_pr_registration *pr_reg)
{ {
...@@ -1174,7 +1174,7 @@ static int core_scsi3_check_implict_release( ...@@ -1174,7 +1174,7 @@ static int core_scsi3_check_implict_release(
} }
if (pr_res_holder == pr_reg) { if (pr_res_holder == pr_reg) {
/* /*
* Perform an implict RELEASE if the registration that * Perform an implicit RELEASE if the registration that
* is being released is holding the reservation. * is being released is holding the reservation.
* *
* From spc4r17, section 5.7.11.1: * From spc4r17, section 5.7.11.1:
...@@ -1192,7 +1192,7 @@ static int core_scsi3_check_implict_release( ...@@ -1192,7 +1192,7 @@ static int core_scsi3_check_implict_release(
* For 'All Registrants' reservation types, all existing * For 'All Registrants' reservation types, all existing
* registrations are still processed as reservation holders * registrations are still processed as reservation holders
* in core_scsi3_pr_seq_non_holder() after the initial * in core_scsi3_pr_seq_non_holder() after the initial
* reservation holder is implictly released here. * reservation holder is implicitly released here.
*/ */
} else if (pr_reg->pr_reg_all_tg_pt && } else if (pr_reg->pr_reg_all_tg_pt &&
(!strcmp(pr_res_holder->pr_reg_nacl->initiatorname, (!strcmp(pr_res_holder->pr_reg_nacl->initiatorname,
...@@ -2125,7 +2125,7 @@ core_scsi3_emulate_pro_register(struct se_cmd *cmd, u64 res_key, u64 sa_res_key, ...@@ -2125,7 +2125,7 @@ core_scsi3_emulate_pro_register(struct se_cmd *cmd, u64 res_key, u64 sa_res_key,
/* /*
* sa_res_key=0 Unregister Reservation Key for registered I_T Nexus. * sa_res_key=0 Unregister Reservation Key for registered I_T Nexus.
*/ */
pr_holder = core_scsi3_check_implict_release( pr_holder = core_scsi3_check_implicit_release(
cmd->se_dev, pr_reg); cmd->se_dev, pr_reg);
if (pr_holder < 0) { if (pr_holder < 0) {
ret = TCM_RESERVATION_CONFLICT; ret = TCM_RESERVATION_CONFLICT;
...@@ -2402,7 +2402,7 @@ static void __core_scsi3_complete_pro_release( ...@@ -2402,7 +2402,7 @@ static void __core_scsi3_complete_pro_release(
struct se_device *dev, struct se_device *dev,
struct se_node_acl *se_nacl, struct se_node_acl *se_nacl,
struct t10_pr_registration *pr_reg, struct t10_pr_registration *pr_reg,
int explict) int explicit)
{ {
struct target_core_fabric_ops *tfo = se_nacl->se_tpg->se_tpg_tfo; struct target_core_fabric_ops *tfo = se_nacl->se_tpg->se_tpg_tfo;
char i_buf[PR_REG_ISID_ID_LEN]; char i_buf[PR_REG_ISID_ID_LEN];
...@@ -2416,7 +2416,7 @@ static void __core_scsi3_complete_pro_release( ...@@ -2416,7 +2416,7 @@ static void __core_scsi3_complete_pro_release(
pr_debug("SPC-3 PR [%s] Service Action: %s RELEASE cleared" pr_debug("SPC-3 PR [%s] Service Action: %s RELEASE cleared"
" reservation holder TYPE: %s ALL_TG_PT: %d\n", " reservation holder TYPE: %s ALL_TG_PT: %d\n",
tfo->get_fabric_name(), (explict) ? "explict" : "implict", tfo->get_fabric_name(), (explicit) ? "explicit" : "implicit",
core_scsi3_pr_dump_type(pr_reg->pr_res_type), core_scsi3_pr_dump_type(pr_reg->pr_res_type),
(pr_reg->pr_reg_all_tg_pt) ? 1 : 0); (pr_reg->pr_reg_all_tg_pt) ? 1 : 0);
pr_debug("SPC-3 PR [%s] RELEASE Node: %s%s\n", pr_debug("SPC-3 PR [%s] RELEASE Node: %s%s\n",
...@@ -2692,7 +2692,7 @@ static void __core_scsi3_complete_pro_preempt( ...@@ -2692,7 +2692,7 @@ static void __core_scsi3_complete_pro_preempt(
memset(i_buf, 0, PR_REG_ISID_ID_LEN); memset(i_buf, 0, PR_REG_ISID_ID_LEN);
core_pr_dump_initiator_port(pr_reg, i_buf, PR_REG_ISID_ID_LEN); core_pr_dump_initiator_port(pr_reg, i_buf, PR_REG_ISID_ID_LEN);
/* /*
* Do an implict RELEASE of the existing reservation. * Do an implicit RELEASE of the existing reservation.
*/ */
if (dev->dev_pr_res_holder) if (dev->dev_pr_res_holder)
__core_scsi3_complete_pro_release(dev, nacl, __core_scsi3_complete_pro_release(dev, nacl,
...@@ -2845,7 +2845,7 @@ core_scsi3_pro_preempt(struct se_cmd *cmd, int type, int scope, u64 res_key, ...@@ -2845,7 +2845,7 @@ core_scsi3_pro_preempt(struct se_cmd *cmd, int type, int scope, u64 res_key,
* 5.7.11.4 Preempting, Table 52 and Figure 7. * 5.7.11.4 Preempting, Table 52 and Figure 7.
* *
* For a ZERO SA Reservation key, release * For a ZERO SA Reservation key, release
* all other registrations and do an implict * all other registrations and do an implicit
* release of active persistent reservation. * release of active persistent reservation.
* *
* For a non-ZERO SA Reservation key, only * For a non-ZERO SA Reservation key, only
......
...@@ -48,7 +48,7 @@ static void spc_fill_alua_data(struct se_port *port, unsigned char *buf) ...@@ -48,7 +48,7 @@ static void spc_fill_alua_data(struct se_port *port, unsigned char *buf)
buf[5] = 0x80; buf[5] = 0x80;
/* /*
* Set TPGS field for explict and/or implict ALUA access type * Set TPGS field for explicit and/or implicit ALUA access type
* and opteration. * and opteration.
* *
* See spc4r17 section 6.4.2 Table 135 * See spc4r17 section 6.4.2 Table 135
...@@ -1257,7 +1257,7 @@ spc_parse_cdb(struct se_cmd *cmd, unsigned int *size) ...@@ -1257,7 +1257,7 @@ spc_parse_cdb(struct se_cmd *cmd, unsigned int *size)
*size = (cdb[3] << 8) + cdb[4]; *size = (cdb[3] << 8) + cdb[4];
/* /*
* Do implict HEAD_OF_QUEUE processing for INQUIRY. * Do implicit HEAD_OF_QUEUE processing for INQUIRY.
* See spc4r17 section 5.3 * See spc4r17 section 5.3
*/ */
cmd->sam_task_attr = MSG_HEAD_TAG; cmd->sam_task_attr = MSG_HEAD_TAG;
...@@ -1291,7 +1291,7 @@ spc_parse_cdb(struct se_cmd *cmd, unsigned int *size) ...@@ -1291,7 +1291,7 @@ spc_parse_cdb(struct se_cmd *cmd, unsigned int *size)
cmd->execute_cmd = spc_emulate_report_luns; cmd->execute_cmd = spc_emulate_report_luns;
*size = (cdb[6] << 24) | (cdb[7] << 16) | (cdb[8] << 8) | cdb[9]; *size = (cdb[6] << 24) | (cdb[7] << 16) | (cdb[8] << 8) | cdb[9];
/* /*
* Do implict HEAD_OF_QUEUE processing for REPORT_LUNS * Do implicit HEAD_OF_QUEUE processing for REPORT_LUNS
* See spc4r17 section 5.3 * See spc4r17 section 5.3
*/ */
cmd->sam_task_attr = MSG_HEAD_TAG; cmd->sam_task_attr = MSG_HEAD_TAG;
......
...@@ -462,7 +462,7 @@ void transport_deregister_session(struct se_session *se_sess) ...@@ -462,7 +462,7 @@ void transport_deregister_session(struct se_session *se_sess)
pr_debug("TARGET_CORE[%s]: Deregistered fabric_sess\n", pr_debug("TARGET_CORE[%s]: Deregistered fabric_sess\n",
se_tpg->se_tpg_tfo->get_fabric_name()); se_tpg->se_tpg_tfo->get_fabric_name());
/* /*
* If last kref is dropping now for an explict NodeACL, awake sleeping * If last kref is dropping now for an explicit NodeACL, awake sleeping
* ->acl_free_comp caller to wakeup configfs se_node_acl->acl_group * ->acl_free_comp caller to wakeup configfs se_node_acl->acl_group
* removal context. * removal context.
*/ */
...@@ -636,7 +636,7 @@ void target_complete_cmd(struct se_cmd *cmd, u8 scsi_status) ...@@ -636,7 +636,7 @@ void target_complete_cmd(struct se_cmd *cmd, u8 scsi_status)
cmd->transport_state |= CMD_T_FAILED; cmd->transport_state |= CMD_T_FAILED;
/* /*
* Check for case where an explict ABORT_TASK has been received * Check for case where an explicit ABORT_TASK has been received
* and transport_wait_for_tasks() will be waiting for completion.. * and transport_wait_for_tasks() will be waiting for completion..
*/ */
if (cmd->transport_state & CMD_T_ABORTED && if (cmd->transport_state & CMD_T_ABORTED &&
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
#define ASCQ_2AH_RESERVATIONS_RELEASED 0x04 #define ASCQ_2AH_RESERVATIONS_RELEASED 0x04
#define ASCQ_2AH_REGISTRATIONS_PREEMPTED 0x05 #define ASCQ_2AH_REGISTRATIONS_PREEMPTED 0x05
#define ASCQ_2AH_ASYMMETRIC_ACCESS_STATE_CHANGED 0x06 #define ASCQ_2AH_ASYMMETRIC_ACCESS_STATE_CHANGED 0x06
#define ASCQ_2AH_IMPLICT_ASYMMETRIC_ACCESS_STATE_TRANSITION_FAILED 0x07 #define ASCQ_2AH_IMPLICIT_ASYMMETRIC_ACCESS_STATE_TRANSITION_FAILED 0x07
#define ASCQ_2AH_PRIORITY_CHANGED 0x08 #define ASCQ_2AH_PRIORITY_CHANGED 0x08
#define ASCQ_2CH_PREVIOUS_RESERVATION_CONFLICT_STATUS 0x09 #define ASCQ_2CH_PREVIOUS_RESERVATION_CONFLICT_STATUS 0x09
......
...@@ -287,7 +287,7 @@ struct t10_alua_tg_pt_gp { ...@@ -287,7 +287,7 @@ struct t10_alua_tg_pt_gp {
int tg_pt_gp_alua_access_type; int tg_pt_gp_alua_access_type;
int tg_pt_gp_nonop_delay_msecs; int tg_pt_gp_nonop_delay_msecs;
int tg_pt_gp_trans_delay_msecs; int tg_pt_gp_trans_delay_msecs;
int tg_pt_gp_implict_trans_secs; int tg_pt_gp_implicit_trans_secs;
int tg_pt_gp_pref; int tg_pt_gp_pref;
int tg_pt_gp_write_metadata; int tg_pt_gp_write_metadata;
/* Used by struct t10_alua_tg_pt_gp->tg_pt_gp_md_buf_len */ /* Used by struct t10_alua_tg_pt_gp->tg_pt_gp_md_buf_len */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment