diff options
author | Damien Le Moal <damien.lemoal@wdc.com> | 2018-11-20 04:52:33 +0300 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2018-11-20 05:03:43 +0300 |
commit | 23464f8c3407b83106463999b64fe10dc66ff6a3 (patch) | |
tree | 7547acf1bb7263c336a14422db10775300c6a420 | |
parent | 92f806d678e5136e4777b21e5ed5368482ac9ea9 (diff) | |
download | linux-23464f8c3407b83106463999b64fe10dc66ff6a3.tar.xz |
aio: Comment use of IOCB_FLAG_IOPRIO aio flag
Comment the use of the IOCB_FLAG_IOPRIO aio flag similarly to the
IOCB_FLAG_RESFD flag.
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Johannes Thumshirn <jthumshirn@suse.de>
Signed-off-by: Damien Le Moal <damien.lemoal@wdc.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
-rw-r--r-- | include/uapi/linux/aio_abi.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/uapi/linux/aio_abi.h b/include/uapi/linux/aio_abi.h index ce43d340f010..8387e0af0f76 100644 --- a/include/uapi/linux/aio_abi.h +++ b/include/uapi/linux/aio_abi.h @@ -50,6 +50,8 @@ enum { * * IOCB_FLAG_RESFD - Set if the "aio_resfd" member of the "struct iocb" * is valid. + * IOCB_FLAG_IOPRIO - Set if the "aio_reqprio" member of the "struct iocb" + * is valid. */ #define IOCB_FLAG_RESFD (1 << 0) #define IOCB_FLAG_IOPRIO (1 << 1) |