aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEwan D. Milne <emilne@redhat.com>2014-12-04 11:49:26 -0500
committerChristoph Hellwig <hch@lst.de>2014-12-15 07:34:26 -0500
commit4bc6b63482a069baa2eeaba3e4a0b5df75263dc5 (patch)
tree91459de2c97b39f534c43fddd19ffdcf421656be
parent6d6f3807ccb7ac884ff0d0dcb2510a0ca4dd3ace (diff)
scsi_debug: take sdebug_host_list_lock when changing capacity
All other traversals of the sdebug_host_list take the lock. Signed-off-by: Ewan D. Milne <emilne@redhat.com> Acked-by: Douglas Gilbert <dgilbert@interlog.com> Signed-off-by: Christoph Hellwig <hch@lst.de>
-rw-r--r--drivers/scsi/scsi_debug.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/scsi/scsi_debug.c b/drivers/scsi/scsi_debug.c
index 2e32a4c09fbc..0d0e0593e3c5 100644
--- a/drivers/scsi/scsi_debug.c
+++ b/drivers/scsi/scsi_debug.c
@@ -4438,6 +4438,7 @@ static ssize_t virtual_gb_store(struct device_driver *ddp, const char *buf,
4438 struct sdebug_host_info *sdhp; 4438 struct sdebug_host_info *sdhp;
4439 struct sdebug_dev_info *dp; 4439 struct sdebug_dev_info *dp;
4440 4440
4441 spin_lock(&sdebug_host_list_lock);
4441 list_for_each_entry(sdhp, &sdebug_host_list, 4442 list_for_each_entry(sdhp, &sdebug_host_list,
4442 host_list) { 4443 host_list) {
4443 list_for_each_entry(dp, &sdhp->dev_info_list, 4444 list_for_each_entry(dp, &sdhp->dev_info_list,
@@ -4446,6 +4447,7 @@ static ssize_t virtual_gb_store(struct device_driver *ddp, const char *buf,
4446 dp->uas_bm); 4447 dp->uas_bm);
4447 } 4448 }
4448 } 4449 }
4450 spin_unlock(&sdebug_host_list_lock);
4449 } 4451 }
4450 return count; 4452 return count;
4451 } 4453 }