aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/target/target_core_pr.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/target/target_core_pr.c b/drivers/target/target_core_pr.c
index 703890c12071..f75a4baf6e56 100644
--- a/drivers/target/target_core_pr.c
+++ b/drivers/target/target_core_pr.c
@@ -2274,6 +2274,7 @@ core_scsi3_pro_reserve(struct se_cmd *cmd, int type, int scope, u64 res_key)
2274 spin_lock(&dev->dev_reservation_lock); 2274 spin_lock(&dev->dev_reservation_lock);
2275 pr_res_holder = dev->dev_pr_res_holder; 2275 pr_res_holder = dev->dev_pr_res_holder;
2276 if (pr_res_holder) { 2276 if (pr_res_holder) {
2277 int pr_res_type = pr_res_holder->pr_res_type;
2277 /* 2278 /*
2278 * From spc4r17 Section 5.7.9: Reserving: 2279 * From spc4r17 Section 5.7.9: Reserving:
2279 * 2280 *
@@ -2284,7 +2285,9 @@ core_scsi3_pro_reserve(struct se_cmd *cmd, int type, int scope, u64 res_key)
2284 * the logical unit, then the command shall be completed with 2285 * the logical unit, then the command shall be completed with
2285 * RESERVATION CONFLICT status. 2286 * RESERVATION CONFLICT status.
2286 */ 2287 */
2287 if (pr_res_holder != pr_reg) { 2288 if ((pr_res_holder != pr_reg) &&
2289 (pr_res_type != PR_TYPE_WRITE_EXCLUSIVE_ALLREG) &&
2290 (pr_res_type != PR_TYPE_EXCLUSIVE_ACCESS_ALLREG)) {
2288 struct se_node_acl *pr_res_nacl = pr_res_holder->pr_reg_nacl; 2291 struct se_node_acl *pr_res_nacl = pr_res_holder->pr_reg_nacl;
2289 pr_err("SPC-3 PR: Attempted RESERVE from" 2292 pr_err("SPC-3 PR: Attempted RESERVE from"
2290 " [%s]: %s while reservation already held by" 2293 " [%s]: %s while reservation already held by"