summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormav <mav@FreeBSD.org>2014-12-18 08:32:56 +0000
committermav <mav@FreeBSD.org>2014-12-18 08:32:56 +0000
commite99b2957653669b2da2b3e720d04e1433d97acc8 (patch)
tree52621f851c765eb8d46c7808767a6fbac1c74975
parent510c6d695ec3a76a46b39d6c063d09af2a472322 (diff)
downloadFreeBSD-src-e99b2957653669b2da2b3e720d04e1433d97acc8.zip
FreeBSD-src-e99b2957653669b2da2b3e720d04e1433d97acc8.tar.gz
MFC r275459: Unify function names after r275458.
-rw-r--r--sys/cam/ctl/ctl.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/sys/cam/ctl/ctl.c b/sys/cam/ctl/ctl.c
index c9d716e..4cbc14f 100644
--- a/sys/cam/ctl/ctl.c
+++ b/sys/cam/ctl/ctl.c
@@ -7908,7 +7908,7 @@ retry:
}
static void
-ctl_set_res_ua(struct ctl_lun *lun, uint32_t residx, ctl_ua_type ua)
+ctl_est_res_ua(struct ctl_lun *lun, uint32_t residx, ctl_ua_type ua)
{
int off = lun->ctl_softc->persis_offset;
@@ -7970,7 +7970,7 @@ ctl_pro_preempt(struct ctl_softc *softc, struct ctl_lun *lun, uint64_t res_key,
continue;
ctl_clr_prkey(lun, i);
- ctl_set_res_ua(lun, i, CTL_UA_REG_PREEMPT);
+ ctl_est_res_ua(lun, i, CTL_UA_REG_PREEMPT);
}
lun->pr_key_count = 1;
lun->res_type = type;
@@ -8041,7 +8041,7 @@ ctl_pro_preempt(struct ctl_softc *softc, struct ctl_lun *lun, uint64_t res_key,
found = 1;
ctl_clr_prkey(lun, i);
lun->pr_key_count--;
- ctl_set_res_ua(lun, i, CTL_UA_REG_PREEMPT);
+ ctl_est_res_ua(lun, i, CTL_UA_REG_PREEMPT);
}
if (!found) {
mtx_unlock(&lun->lun_lock);
@@ -8116,11 +8116,11 @@ ctl_pro_preempt(struct ctl_softc *softc, struct ctl_lun *lun, uint64_t res_key,
if (sa_res_key == ctl_get_prkey(lun, i)) {
ctl_clr_prkey(lun, i);
lun->pr_key_count--;
- ctl_set_res_ua(lun, i, CTL_UA_REG_PREEMPT);
+ ctl_est_res_ua(lun, i, CTL_UA_REG_PREEMPT);
} else if (type != lun->res_type
&& (lun->res_type == SPR_TYPE_WR_EX_RO
|| lun->res_type ==SPR_TYPE_EX_AC_RO)){
- ctl_set_res_ua(lun, i, CTL_UA_RES_RELEASE);
+ ctl_est_res_ua(lun, i, CTL_UA_RES_RELEASE);
}
}
lun->res_type = type;
@@ -8159,7 +8159,7 @@ ctl_pro_preempt(struct ctl_softc *softc, struct ctl_lun *lun, uint64_t res_key,
found = 1;
ctl_clr_prkey(lun, i);
lun->pr_key_count--;
- ctl_set_res_ua(lun, i, CTL_UA_REG_PREEMPT);
+ ctl_est_res_ua(lun, i, CTL_UA_REG_PREEMPT);
}
if (!found) {
@@ -8215,7 +8215,7 @@ ctl_pro_preempt_other(struct ctl_lun *lun, union ctl_ha_msg *msg)
continue;
ctl_clr_prkey(lun, i);
- ctl_set_res_ua(lun, i, CTL_UA_REG_PREEMPT);
+ ctl_est_res_ua(lun, i, CTL_UA_REG_PREEMPT);
}
lun->pr_key_count = 1;
@@ -8230,7 +8230,7 @@ ctl_pro_preempt_other(struct ctl_lun *lun, union ctl_ha_msg *msg)
ctl_clr_prkey(lun, i);
lun->pr_key_count--;
- ctl_set_res_ua(lun, i, CTL_UA_REG_PREEMPT);
+ ctl_est_res_ua(lun, i, CTL_UA_REG_PREEMPT);
}
}
} else {
@@ -8242,11 +8242,11 @@ ctl_pro_preempt_other(struct ctl_lun *lun, union ctl_ha_msg *msg)
if (sa_res_key == ctl_get_prkey(lun, i)) {
ctl_clr_prkey(lun, i);
lun->pr_key_count--;
- ctl_set_res_ua(lun, i, CTL_UA_REG_PREEMPT);
+ ctl_est_res_ua(lun, i, CTL_UA_REG_PREEMPT);
} else if (msg->pr.pr_info.res_type != lun->res_type
&& (lun->res_type == SPR_TYPE_WR_EX_RO
|| lun->res_type == SPR_TYPE_EX_AC_RO)) {
- ctl_set_res_ua(lun, i, CTL_UA_RES_RELEASE);
+ ctl_est_res_ua(lun, i, CTL_UA_RES_RELEASE);
}
}
lun->res_type = msg->pr.pr_info.res_type;
@@ -8632,7 +8632,7 @@ ctl_persistent_reserve_out(struct ctl_scsiio *ctsio)
for (i=0; i < 2*CTL_MAX_INITIATORS; i++)
if (ctl_get_prkey(lun, i) != 0) {
ctl_clr_prkey(lun, i);
- ctl_set_res_ua(lun, i, CTL_UA_REG_PREEMPT);
+ ctl_est_res_ua(lun, i, CTL_UA_REG_PREEMPT);
}
lun->PRGeneration++;
mtx_unlock(&lun->lun_lock);
@@ -8774,7 +8774,7 @@ ctl_hndl_per_res_out_on_other_sc(union ctl_ha_msg *msg)
if (ctl_get_prkey(lun, i) == 0)
continue;
ctl_clr_prkey(lun, i);
- ctl_set_res_ua(lun, i, CTL_UA_REG_PREEMPT);
+ ctl_est_res_ua(lun, i, CTL_UA_REG_PREEMPT);
}
lun->PRGeneration++;
break;
OpenPOWER on IntegriCloud