diff options
author | Christoph Hellwig <hch@lst.de> | 2020-11-03 13:00:18 +0300 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2020-11-16 18:14:29 +0300 |
commit | a7cb3d2f09c8405aed59d97a7d02cebea43cd3c7 (patch) | |
tree | 620ec73e4343bdbf571d27cf53975682d33e0ab9 /drivers/md/bcache/request.c | |
parent | 98f49b63e84d4ee1a5c327d0b5f4e8699f6c70fe (diff) | |
download | linux-a7cb3d2f09c8405aed59d97a7d02cebea43cd3c7.tar.xz |
block: remove __blkdev_driver_ioctl
Just open code it in the few callers.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'drivers/md/bcache/request.c')
-rw-r--r-- | drivers/md/bcache/request.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/md/bcache/request.c b/drivers/md/bcache/request.c index 214326383145..afac8d07c1bd 100644 --- a/drivers/md/bcache/request.c +++ b/drivers/md/bcache/request.c @@ -1230,8 +1230,9 @@ static int cached_dev_ioctl(struct bcache_device *d, fmode_t mode, if (dc->io_disable) return -EIO; - - return __blkdev_driver_ioctl(dc->bdev, mode, cmd, arg); + if (!dc->bdev->bd_disk->fops->ioctl) + return -ENOTTY; + return dc->bdev->bd_disk->fops->ioctl(dc->bdev, mode, cmd, arg); } void bch_cached_dev_request_init(struct cached_dev *dc) |