aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2008-03-02 09:09:22 -0500
committerAl Viro <viro@zeniv.linux.org.uk>2008-10-21 07:47:32 -0400
commitd4430d62fa77208824a37fe6f85ab2831d274769 (patch)
tree5d4d0bca31e63eb208fbebe4f39c912b964c1e4d /drivers/scsi
parentbadf8082c33d18b118d3a6f1b32d5ea6b97d3839 (diff)
[PATCH] beginning of methods conversion
To keep the size of changesets sane we split the switch by drivers; to keep the damn thing bisectable we do the following: 1) rename the affected methods, add ones with correct prototypes, make (few) callers handle both. That's this changeset. 2) for each driver convert to new methods. *ALL* drivers are converted in this series. 3) kill the old (renamed) methods. Note that it _is_ a flagday; all in-tree drivers are converted and by the end of this series no trace of old methods remain. The only reason why we do that this way is to keep the damn thing bisectable and allow per-driver debugging if anything goes wrong. New methods: open(bdev, mode) release(disk, mode) ioctl(bdev, mode, cmd, arg) /* Called without BKL */ compat_ioctl(bdev, mode, cmd, arg) locked_ioctl(bdev, mode, cmd, arg) /* Called with BKL, legacy */ Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'drivers/scsi')
-rw-r--r--drivers/scsi/ide-scsi.c6
-rw-r--r--drivers/scsi/sd.c8
-rw-r--r--drivers/scsi/sr.c6
3 files changed, 10 insertions, 10 deletions
diff --git a/drivers/scsi/ide-scsi.c b/drivers/scsi/ide-scsi.c
index 5bcc04e82c28..9069afbad9d3 100644
--- a/drivers/scsi/ide-scsi.c
+++ b/drivers/scsi/ide-scsi.c
@@ -483,9 +483,9 @@ static int idescsi_ide_ioctl(struct inode *inode, struct file *file,
483 483
484static struct block_device_operations idescsi_ops = { 484static struct block_device_operations idescsi_ops = {
485 .owner = THIS_MODULE, 485 .owner = THIS_MODULE,
486 .open = idescsi_ide_open, 486 .__open = idescsi_ide_open,
487 .release = idescsi_ide_release, 487 .__release = idescsi_ide_release,
488 .ioctl = idescsi_ide_ioctl, 488 .__ioctl = idescsi_ide_ioctl,
489}; 489};
490 490
491static int idescsi_slave_configure(struct scsi_device * sdp) 491static int idescsi_slave_configure(struct scsi_device * sdp)
diff --git a/drivers/scsi/sd.c b/drivers/scsi/sd.c
index 5a18528a69d0..c8b95e8d2859 100644
--- a/drivers/scsi/sd.c
+++ b/drivers/scsi/sd.c
@@ -962,12 +962,12 @@ static long sd_compat_ioctl(struct file *file, unsigned int cmd, unsigned long a
962 962
963static struct block_device_operations sd_fops = { 963static struct block_device_operations sd_fops = {
964 .owner = THIS_MODULE, 964 .owner = THIS_MODULE,
965 .open = sd_open, 965 .__open = sd_open,
966 .release = sd_release, 966 .__release = sd_release,
967 .ioctl = sd_ioctl, 967 .__ioctl = sd_ioctl,
968 .getgeo = sd_getgeo, 968 .getgeo = sd_getgeo,
969#ifdef CONFIG_COMPAT 969#ifdef CONFIG_COMPAT
970 .compat_ioctl = sd_compat_ioctl, 970 .__compat_ioctl = sd_compat_ioctl,
971#endif 971#endif
972 .media_changed = sd_media_changed, 972 .media_changed = sd_media_changed,
973 .revalidate_disk = sd_revalidate_disk, 973 .revalidate_disk = sd_revalidate_disk,
diff --git a/drivers/scsi/sr.c b/drivers/scsi/sr.c
index 2fb8d4d2d6f6..9446cbf4de84 100644
--- a/drivers/scsi/sr.c
+++ b/drivers/scsi/sr.c
@@ -540,9 +540,9 @@ static int sr_block_media_changed(struct gendisk *disk)
540static struct block_device_operations sr_bdops = 540static struct block_device_operations sr_bdops =
541{ 541{
542 .owner = THIS_MODULE, 542 .owner = THIS_MODULE,
543 .open = sr_block_open, 543 .__open = sr_block_open,
544 .release = sr_block_release, 544 .__release = sr_block_release,
545 .ioctl = sr_block_ioctl, 545 .__ioctl = sr_block_ioctl,
546 .media_changed = sr_block_media_changed, 546 .media_changed = sr_block_media_changed,
547 /* 547 /*
548 * No compat_ioctl for now because sr_block_ioctl never 548 * No compat_ioctl for now because sr_block_ioctl never