diff options
author | Arnd Bergmann <arnd@arndb.de> | 2019-11-29 13:28:22 +0300 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2019-12-21 17:26:41 +0300 |
commit | 4b43f31d65dac587dae09ee27a48fd68a0cfd8c2 (patch) | |
tree | b260374ba7fe1b3ef4a613fd70196199c48b7dbe /block/compat_ioctl.c | |
parent | 21d37340912d74b1222d43c11aa9dd0687162573 (diff) | |
download | linux-4b43f31d65dac587dae09ee27a48fd68a0cfd8c2.tar.xz |
compat_ioctl: block: handle add zone open, close and finish ioctl
These were added to blkdev_ioctl() in linux-5.5 but not
blkdev_compat_ioctl, so add them now.
Fixes: e876df1fe0ad ("block: add zone open, close and finish ioctl support")
Reviewed-by: Damien Le Moal <damien.lemoal@wdc.com>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'block/compat_ioctl.c')
-rw-r--r-- | block/compat_ioctl.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/block/compat_ioctl.c b/block/compat_ioctl.c index f5c1140b8624..5b13e344229c 100644 --- a/block/compat_ioctl.c +++ b/block/compat_ioctl.c @@ -356,6 +356,9 @@ long compat_blkdev_ioctl(struct file *file, unsigned cmd, unsigned long arg) case BLKRRPART: case BLKREPORTZONE: case BLKRESETZONE: + case BLKOPENZONE: + case BLKCLOSEZONE: + case BLKFINISHZONE: case BLKGETZONESZ: case BLKGETNRZONES: return blkdev_ioctl(bdev, mode, cmd, |