Skip to content

Commit

Permalink
loop: Add LOOP_SET_BLOCK_SIZE in compat ioctl
Browse files Browse the repository at this point in the history
This change adds LOOP_SET_BLOCK_SIZE as one of the supported ioctls
in lo_compat_ioctl. It only takes an unsigned long argument, and
in practice a 32-bit value works fine.

Reviewed-by: Omar Sandoval <[email protected]>
Signed-off-by: Evan Green <[email protected]>
Signed-off-by: Jens Axboe <[email protected]>
  • Loading branch information
Evan Green authored and axboe committed Jul 3, 2018
1 parent 64dafbc commit 9fea4b3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions drivers/block/loop.c
Original file line number Diff line number Diff line change
Expand Up @@ -1612,6 +1612,7 @@ static int lo_compat_ioctl(struct block_device *bdev, fmode_t mode,
arg = (unsigned long) compat_ptr(arg);
case LOOP_SET_FD:
case LOOP_CHANGE_FD:
case LOOP_SET_BLOCK_SIZE:
err = lo_ioctl(bdev, mode, cmd, arg);
break;
default:
Expand Down

0 comments on commit 9fea4b3

Please sign in to comment.