From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756459AbZCRB4m (ORCPT ); Tue, 17 Mar 2009 21:56:42 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752931AbZCRB4d (ORCPT ); Tue, 17 Mar 2009 21:56:33 -0400 Received: from n13b.bullet.mail.mud.yahoo.com ([68.142.207.222]:32871 "HELO n13b.bullet.mail.mud.yahoo.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1752750AbZCRB4c (ORCPT ); Tue, 17 Mar 2009 21:56:32 -0400 X-Greylist: delayed 318 seconds by postgrey-1.27 at vger.kernel.org; Tue, 17 Mar 2009 21:56:32 EDT X-Yahoo-Newman-Id: 681767.12653.bm@omp418.mail.mud.yahoo.com X-YMail-OSG: KWY_PSoVM1miFs652UjCH66t.L7hOb_uUxYCBHTpXqHg0lYkZRmqce0Qjujh8dfX78Ew4sUqK1VuJla0lA1BiWN5EuSbr2qyL_jBS5w2N4oXZMghBLV._G_r67BEx9.vosbXHzrqkanLOlFyGpp_6g2wGyi7pafJCjLkSyEkXupq9SjUxeAiiPWoLiKk10Ho0cXI6M8e.QqJa1ciAXR4mCQ1TaQOl4j0FNMkMpeut9xC8lRu8qc- X-Yahoo-Newman-Property: ymail-3 Subject: [PATCH 2/2] [Target_Core_Mod/Persistent_Reservations]: Allow non WRITE CDBs from unregistered initiators From: "Nicholas A. Bellinger" To: LKML , linux-scsi Cc: James Bottomley , "Martin K. Petersen" , Andrew Morton , Mike Christie , FUJITA Tomonori , Hannes Reinecke Content-Type: text/plain Date: Tue, 17 Mar 2009 18:50:45 -0700 Message-Id: <1237341045.4214.53.camel@haakon2.linux-iscsi.org> Mime-Version: 1.0 X-Mailer: Evolution 2.22.3.1 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org >>From 669b1b2d3d69a5a31eae803f85baa1fe4295b190 Mon Sep 17 00:00:00 2001 From: Nicholas Bellinger Date: Tue, 17 Mar 2009 16:34:38 -0700 Subject: [PATCH 2/2] [Target_Core_Mod/Persistent_Reservations]: Allow non WRITE CDBs from unregistered initiators This patch allows unregistered initiators to issue non WRITE CDBs when a PR_TYPE_WRITE_EXCLUSIVE, PR_TYPE_WRITE_EXCLUSIVE_REGONLY or PR_TYPE_WRITE_EXCLUSIVE_ALLREG reservation is held for a given Logical Unit. Previously we expected initiators to PROUT REGISTER before allowing a LUN to accept any CDBs beyond the explictly allowed CDBs list (as defined by spc4r17, table 45) when a reservation was held by another initiator port in core_scsi3_pr_seq_non_holder(). Signed-off-by: Nicholas A. Bellinger --- drivers/lio-core/target_core_pr.c | 22 ++++++++++++++++------ 1 files changed, 16 insertions(+), 6 deletions(-) diff --git a/drivers/lio-core/target_core_pr.c b/drivers/lio-core/target_core_pr.c index a76535f..82dde64 100644 --- a/drivers/lio-core/target_core_pr.c +++ b/drivers/lio-core/target_core_pr.c @@ -191,6 +191,8 @@ static int core_scsi3_pr_seq_non_holder( * Some commands are only allowed for the persistent reservation * holder. */ + if (se_deve->deve_flags & DEF_PR_REGISTERED) + registered_nexus = 1; break; case PR_TYPE_WRITE_EXCLUSIVE_REGONLY: we = 1; @@ -350,14 +352,22 @@ static int core_scsi3_pr_seq_non_holder( " to %s reservation\n", cdb[0], core_scsi3_pr_dump_type(pr_reg_type)); return 1; - } else if (registered_nexus) { + } else { /* - * Allow non WRITE CDBs for PR_*_REG_ONLY and - * PR_*_ALL_REG to pass for registered_nexuxes. + * Allow non WRITE CDBs for all Write Exclusive + * PR TYPEs to pass for registered and + * non-registered_nexuxes NOT holding the reservation. + * + * We only make noise for the unregisterd nexuses, + * as we expect registered non-reservation holding + * nexuses to issue CDBs. */ - printk(KERN_INFO "Allowing implict CDB: 0x%02x for %s" - " reservation\n", cdb[0], - core_scsi3_pr_dump_type(pr_reg_type)); + if (!(registered_nexus)) { + printk(KERN_INFO "Allowing implict CDB: 0x%02x" + " for %s reservation on unregistered" + " nexus\n", cdb[0], + core_scsi3_pr_dump_type(pr_reg_type)); + } return 0; } } else if (all_reg) { -- 1.5.4.1