Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753149AbZGRPXW (ORCPT ); Sat, 18 Jul 2009 11:23:22 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752922AbZGRPXV (ORCPT ); Sat, 18 Jul 2009 11:23:21 -0400 Received: from mgw1.diku.dk ([130.225.96.91]:50537 "EHLO mgw1.diku.dk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752501AbZGRPXU (ORCPT ); Sat, 18 Jul 2009 11:23:20 -0400 Date: Sat, 18 Jul 2009 17:22:41 +0200 (CEST) From: Julia Lawall To: James.Bottomley@HansenPartnership.com, linux-scsi@vger.kernel.org, linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org Subject: [PATCH] drivers/scsi: possible double spin_lock_irqsave Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1790 Lines: 55 From: Julia Lawall If both the test on rport and the call to get_device fail, then the lock is already held. The re-lock is thus moved up into the two branches. On the other hand if kref_put should not be called with the lock held then something else should be done. The semantic match that finds this problem is as follows: (http://www.emn.fr/x-info/coccinelle/) // @@ expression lock1,lock2; expression flags; @@ *spin_lock_irqsave(lock1,flags) ... when != flags *spin_lock_irqsave(lock2,flags) // Signed-off-by: Julia Lawall --- drivers/scsi/ibmvscsi/ibmvfc.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/drivers/scsi/ibmvscsi/ibmvfc.c b/drivers/scsi/ibmvscsi/ibmvfc.c index 166d964..d2b88bd 100644 --- a/drivers/scsi/ibmvscsi/ibmvfc.c +++ b/drivers/scsi/ibmvscsi/ibmvfc.c @@ -4278,15 +4278,16 @@ static void ibmvfc_rport_add_thread(struct work_struct *work) if (!rport) { spin_unlock_irqrestore(vhost->host->host_lock, flags); ibmvfc_tgt_add_rport(tgt); + spin_lock_irqsave(vhost->host->host_lock, flags); } else if (get_device(&rport->dev)) { spin_unlock_irqrestore(vhost->host->host_lock, flags); tgt_dbg(tgt, "Setting rport roles\n"); fc_remote_port_rolechg(rport, tgt->ids.roles); put_device(&rport->dev); + spin_lock_irqsave(vhost->host->host_lock, flags); } kref_put(&tgt->kref, ibmvfc_release_tgt); - spin_lock_irqsave(vhost->host->host_lock, flags); break; } } -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/