diff options
author | Martin K. Petersen <martin.petersen@oracle.com> | 2012-01-11 16:29:31 +0100 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2012-01-11 16:29:31 +0100 |
commit | ef00f59c95fe6e002e7c6e3663cdea65e253f4cc (patch) | |
tree | 8e84273162b7a743767098cc08b6c6eb2b041281 /block/compat_ioctl.c | |
parent | b1bd055d397e09f99dcef9b138ed104ff1812fcb (diff) | |
download | linux-3.10-ef00f59c95fe6e002e7c6e3663cdea65e253f4cc.tar.gz linux-3.10-ef00f59c95fe6e002e7c6e3663cdea65e253f4cc.tar.bz2 linux-3.10-ef00f59c95fe6e002e7c6e3663cdea65e253f4cc.zip |
block: Add BLKROTATIONAL ioctl
Introduce an ioctl which permits applications to query whether a block
device is rotational.
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
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 7b725020823..7c668c8a6f9 100644 --- a/block/compat_ioctl.c +++ b/block/compat_ioctl.c @@ -719,6 +719,9 @@ long compat_blkdev_ioctl(struct file *file, unsigned cmd, unsigned long arg) case BLKSECTGET: return compat_put_ushort(arg, queue_max_sectors(bdev_get_queue(bdev))); + case BLKROTATIONAL: + return compat_put_ushort(arg, + !blk_queue_nonrot(bdev_get_queue(bdev))); case BLKRASET: /* compatible, but no compat_ptr (!) */ case BLKFRASET: if (!capable(CAP_SYS_ADMIN)) |