summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorAndrew Patterson <andrew.patterson@hp.com>2008-09-04 14:27:35 -0600
committerJens Axboe <jens.axboe@oracle.com>2008-10-09 08:56:13 +0200
commitf98a8cae12f2b2a8f9bfd7a53c990a1a405e880e (patch)
tree3fcfd762a5841b8cbc5ab0987da8da3ee37a9201 /drivers
parent9bc3ffbfbdf71fefda8a261ef8d6fdc388a29b42 (diff)
downloadlinux-0-day-f98a8cae12f2b2a8f9bfd7a53c990a1a405e880e.tar.gz
linux-0-day-f98a8cae12f2b2a8f9bfd7a53c990a1a405e880e.tar.xz
SCSI sd driver calls revalidate_disk wrapper.
Modify the SCSI disk driver to call the revalidate_disk() wrapper. This allows us to do some housekeeping such as accounting for a disk being resized online. The wrapper will call sd_revalidate_disk() at the appropriate time. Signed-off-by: Andrew Patterson <andrew.patterson@hp.com> Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/scsi/sd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/scsi/sd.c b/drivers/scsi/sd.c
index bcb04b2a7676b..cb115d1bf2284 100644
--- a/drivers/scsi/sd.c
+++ b/drivers/scsi/sd.c
@@ -165,7 +165,7 @@ sd_store_cache_type(struct device *dev, struct device_attribute *attr,
sd_print_sense_hdr(sdkp, &sshdr);
return -EINVAL;
}
- sd_revalidate_disk(sdkp->disk);
+ revalidate_disk(sdkp->disk);
return count;
}
@@ -916,7 +916,7 @@ static void sd_rescan(struct device *dev)
struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
if (sdkp) {
- sd_revalidate_disk(sdkp->disk);
+ revalidate_disk(sdkp->disk);
scsi_disk_put(sdkp);
}
}