aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ide
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/ide
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/ide')
-rw-r--r--drivers/ide/ide-cd.c6
-rw-r--r--drivers/ide/ide-gd.c6
-rw-r--r--drivers/ide/ide-tape.c6
3 files changed, 9 insertions, 9 deletions
diff --git a/drivers/ide/ide-cd.c b/drivers/ide/ide-cd.c
index 87d90200b169..3533984355a6 100644
--- a/drivers/ide/ide-cd.c
+++ b/drivers/ide/ide-cd.c
@@ -2200,9 +2200,9 @@ static int idecd_revalidate_disk(struct gendisk *disk)
2200 2200
2201static struct block_device_operations idecd_ops = { 2201static struct block_device_operations idecd_ops = {
2202 .owner = THIS_MODULE, 2202 .owner = THIS_MODULE,
2203 .open = idecd_open, 2203 .__open = idecd_open,
2204 .release = idecd_release, 2204 .__release = idecd_release,
2205 .ioctl = idecd_ioctl, 2205 .__ioctl = idecd_ioctl,
2206 .media_changed = idecd_media_changed, 2206 .media_changed = idecd_media_changed,
2207 .revalidate_disk = idecd_revalidate_disk 2207 .revalidate_disk = idecd_revalidate_disk
2208}; 2208};
diff --git a/drivers/ide/ide-gd.c b/drivers/ide/ide-gd.c
index 948af08abe23..d118bbed7cd3 100644
--- a/drivers/ide/ide-gd.c
+++ b/drivers/ide/ide-gd.c
@@ -298,9 +298,9 @@ static int ide_gd_ioctl(struct inode *inode, struct file *file,
298 298
299static struct block_device_operations ide_gd_ops = { 299static struct block_device_operations ide_gd_ops = {
300 .owner = THIS_MODULE, 300 .owner = THIS_MODULE,
301 .open = ide_gd_open, 301 .__open = ide_gd_open,
302 .release = ide_gd_release, 302 .__release = ide_gd_release,
303 .ioctl = ide_gd_ioctl, 303 .__ioctl = ide_gd_ioctl,
304 .getgeo = ide_gd_getgeo, 304 .getgeo = ide_gd_getgeo,
305 .media_changed = ide_gd_media_changed, 305 .media_changed = ide_gd_media_changed,
306 .revalidate_disk = ide_gd_revalidate_disk 306 .revalidate_disk = ide_gd_revalidate_disk
diff --git a/drivers/ide/ide-tape.c b/drivers/ide/ide-tape.c
index 2b263281ffea..c5df53c4838c 100644
--- a/drivers/ide/ide-tape.c
+++ b/drivers/ide/ide-tape.c
@@ -2376,9 +2376,9 @@ static int idetape_ioctl(struct inode *inode, struct file *file,
2376 2376
2377static struct block_device_operations idetape_block_ops = { 2377static struct block_device_operations idetape_block_ops = {
2378 .owner = THIS_MODULE, 2378 .owner = THIS_MODULE,
2379 .open = idetape_open, 2379 .__open = idetape_open,
2380 .release = idetape_release, 2380 .__release = idetape_release,
2381 .ioctl = idetape_ioctl, 2381 .__ioctl = idetape_ioctl,
2382}; 2382};
2383 2383
2384static int ide_tape_probe(ide_drive_t *drive) 2384static int ide_tape_probe(ide_drive_t *drive)