From: Damien Le Moal Date: Tue, 20 Nov 2018 01:52:33 +0000 (+0900) Subject: aio: Comment use of IOCB_FLAG_IOPRIO aio flag X-Git-Tag: v5.15~7255^2~208 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=23464f8c3407b83106463999b64fe10dc66ff6a3;p=platform%2Fkernel%2Flinux-starfive.git 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 Reviewed-by: Johannes Thumshirn Signed-off-by: Damien Le Moal Signed-off-by: Jens Axboe --- diff --git a/include/uapi/linux/aio_abi.h b/include/uapi/linux/aio_abi.h index ce43d34..8387e0a 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)