diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2007-08-29 20:34:12 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2008-10-21 07:47:26 -0400 |
commit | 633a08b81206122469365b4c72eaeb71f04f2cb4 (patch) | |
tree | 9cd30507efd30645d30d351c7ad0d5966f806532 /drivers/md | |
parent | a0eb62a0a4470fef5a5f41e7f1442fdd667220ef (diff) |
[PATCH] introduce __blkdev_driver_ioctl()
Analog of blkdev_driver_ioctl() with sane arguments. For
now uses fake struct file, by the end of the series it won't
and blkdev_driver_ioctl() will become a wrapper around it.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'drivers/md')
-rw-r--r-- | drivers/md/dm-linear.c | 10 | ||||
-rw-r--r-- | drivers/md/dm-mpath.c | 11 |
2 files changed, 4 insertions, 17 deletions
diff --git a/drivers/md/dm-linear.c b/drivers/md/dm-linear.c index fa358385eed3..373442b1e98f 100644 --- a/drivers/md/dm-linear.c +++ b/drivers/md/dm-linear.c | |||
@@ -114,15 +114,7 @@ static int linear_ioctl(struct dm_target *ti, unsigned int cmd, | |||
114 | unsigned long arg) | 114 | unsigned long arg) |
115 | { | 115 | { |
116 | struct linear_c *lc = (struct linear_c *) ti->private; | 116 | struct linear_c *lc = (struct linear_c *) ti->private; |
117 | struct block_device *bdev = lc->dev->bdev; | 117 | return __blkdev_driver_ioctl(lc->dev->bdev, lc->dev->mode, cmd, arg); |
118 | struct file fake_file = {}; | ||
119 | struct dentry fake_dentry = {}; | ||
120 | |||
121 | fake_file.f_mode = lc->dev->mode; | ||
122 | fake_file.f_path.dentry = &fake_dentry; | ||
123 | fake_dentry.d_inode = bdev->bd_inode; | ||
124 | |||
125 | return blkdev_driver_ioctl(bdev->bd_inode, &fake_file, bdev->bd_disk, cmd, arg); | ||
126 | } | 118 | } |
127 | 119 | ||
128 | static int linear_merge(struct dm_target *ti, struct bvec_merge_data *bvm, | 120 | static int linear_merge(struct dm_target *ti, struct bvec_merge_data *bvm, |
diff --git a/drivers/md/dm-mpath.c b/drivers/md/dm-mpath.c index c681d5e5f45c..d85c65a46433 100644 --- a/drivers/md/dm-mpath.c +++ b/drivers/md/dm-mpath.c | |||
@@ -1400,13 +1400,10 @@ static int multipath_ioctl(struct dm_target *ti, unsigned int cmd, | |||
1400 | { | 1400 | { |
1401 | struct multipath *m = (struct multipath *) ti->private; | 1401 | struct multipath *m = (struct multipath *) ti->private; |
1402 | struct block_device *bdev = NULL; | 1402 | struct block_device *bdev = NULL; |
1403 | fmode_t mode = 0; | ||
1403 | unsigned long flags; | 1404 | unsigned long flags; |
1404 | struct file fake_file = {}; | ||
1405 | struct dentry fake_dentry = {}; | ||
1406 | int r = 0; | 1405 | int r = 0; |
1407 | 1406 | ||
1408 | fake_file.f_path.dentry = &fake_dentry; | ||
1409 | |||
1410 | spin_lock_irqsave(&m->lock, flags); | 1407 | spin_lock_irqsave(&m->lock, flags); |
1411 | 1408 | ||
1412 | if (!m->current_pgpath) | 1409 | if (!m->current_pgpath) |
@@ -1414,8 +1411,7 @@ static int multipath_ioctl(struct dm_target *ti, unsigned int cmd, | |||
1414 | 1411 | ||
1415 | if (m->current_pgpath) { | 1412 | if (m->current_pgpath) { |
1416 | bdev = m->current_pgpath->path.dev->bdev; | 1413 | bdev = m->current_pgpath->path.dev->bdev; |
1417 | fake_dentry.d_inode = bdev->bd_inode; | 1414 | mode = m->current_pgpath->path.dev->mode; |
1418 | fake_file.f_mode = m->current_pgpath->path.dev->mode; | ||
1419 | } | 1415 | } |
1420 | 1416 | ||
1421 | if (m->queue_io) | 1417 | if (m->queue_io) |
@@ -1425,8 +1421,7 @@ static int multipath_ioctl(struct dm_target *ti, unsigned int cmd, | |||
1425 | 1421 | ||
1426 | spin_unlock_irqrestore(&m->lock, flags); | 1422 | spin_unlock_irqrestore(&m->lock, flags); |
1427 | 1423 | ||
1428 | return r ? : blkdev_driver_ioctl(bdev->bd_inode, &fake_file, | 1424 | return r ? : __blkdev_driver_ioctl(bdev, mode, cmd, arg); |
1429 | bdev->bd_disk, cmd, arg); | ||
1430 | } | 1425 | } |
1431 | 1426 | ||
1432 | /*----------------------------------------------------------------- | 1427 | /*----------------------------------------------------------------- |