aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/md/dm-flakey.c
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2012-01-12 10:01:29 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2012-01-14 18:07:24 -0500
commitec8013beddd717d1740cfefb1a9b900deef85462 (patch)
tree7aa28de51cb2f375baf6fe943afd85e75ca7bcb9 /drivers/md/dm-flakey.c
parent0bfc96cb77224736dfa35c3c555d37b3646ef35e (diff)
dm: do not forward ioctls from logical volumes to the underlying device
A logical volume can map to just part of underlying physical volume. In this case, it must be treated like a partition. Based on a patch from Alasdair G Kergon. Cc: Alasdair G Kergon <agk@redhat.com> Cc: dm-devel@redhat.com Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/md/dm-flakey.c')
-rw-r--r--drivers/md/dm-flakey.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/drivers/md/dm-flakey.c b/drivers/md/dm-flakey.c
index f84c08029b2..9fb18c14782 100644
--- a/drivers/md/dm-flakey.c
+++ b/drivers/md/dm-flakey.c
@@ -368,8 +368,17 @@ static int flakey_status(struct dm_target *ti, status_type_t type,
368static int flakey_ioctl(struct dm_target *ti, unsigned int cmd, unsigned long arg) 368static int flakey_ioctl(struct dm_target *ti, unsigned int cmd, unsigned long arg)
369{ 369{
370 struct flakey_c *fc = ti->private; 370 struct flakey_c *fc = ti->private;
371 struct dm_dev *dev = fc->dev;
372 int r = 0;
371 373
372 return __blkdev_driver_ioctl(fc->dev->bdev, fc->dev->mode, cmd, arg); 374 /*
375 * Only pass ioctls through if the device sizes match exactly.
376 */
377 if (fc->start ||
378 ti->len != i_size_read(dev->bdev->bd_inode) >> SECTOR_SHIFT)
379 r = scsi_verify_blk_ioctl(NULL, cmd);
380
381 return r ? : __blkdev_driver_ioctl(dev->bdev, dev->mode, cmd, arg);
373} 382}
374 383
375static int flakey_merge(struct dm_target *ti, struct bvec_merge_data *bvm, 384static int flakey_merge(struct dm_target *ti, struct bvec_merge_data *bvm,