public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Adam Manzanares <adam.manzanares@wdc.com>
To: Jan Kara <jack@suse.cz>
Cc: <bcrl@kvack.org>, <viro@zeniv.linux.org.uk>,
	<jlayton@poochiereds.net>, <bfields@fieldses.org>,
	<linux-aio@kvack.org>, <linux-fsdevel@vger.kernel.org>,
	<linux-kernel@vger.kernel.org>, <linux-api@vger.kernel.org>
Subject: Re: [RFC PATCH] fs: block dev aio request priority support
Date: Tue, 23 May 2017 08:26:51 -0700	[thread overview]
Message-ID: <20170523152651.GA7568@hgst.com> (raw)
In-Reply-To: <20170523084607.GG1230@quack2.suse.cz>

The 05/23/2017 10:46, Jan Kara wrote:
> On Mon 22-05-17 10:19:33, adam.manzanares@wdc.com wrote:
> > From: Adam Manzanares <adam.manzanares@wdc.com>
> > 
> > Map the aio_reqprio to the bio priority field at
> > the point the bio is created from the aio iocb.
> > 
> > The aio_reqprio field of iocb is used as a kernel IO class and priority
> > iff the IOCB_FLAG_IOPRIO flag is set on the iocb.
> > 
> > Late last year device IO priority support was introduced to reduce application
> > tail latency when iopriority information was set on the process [1]. This 
> > patch mapped iopriority information to block io requests. This information 
> > could be leveraged by device drivers to build device specific prioritized 
> > commands.
> > 
> > The iopriority is set on the iocontext which is a structure associated with 
> > a process. There exists a system call to set this iopriority information on 
> > a process, but I believe it would be useful to also have a mechanism to set 
> > priority on a per io command basis. 
> > 
> > The aio iocb has a field for the request priority which is currently not used 
> > within the kernel. This patch leverages this field to pass a per command 
> > iopriority value to devices. This work leverages the work in the previously 
> > referenced patch [1]. When the bio is generated from the iocb we copy the 
> > iocb iopriority information into the bio, which is eventually turned into a 
> > request which also gets a copy of the iopriority information. 
> > 
> > To demonstrate how to use this feature I modified fio to use the new aio 
> > feature. The modification to fio can be found at [2] and the new options 
> > are cmndprioclass and cmndprio.
> > 
> > [1] https://lkml.org/lkml/2016/12/6/495
> > [2] https://github.com/nmtadam/fio/tree/cmnd-prio.v2
> > 
> > Signed-off-by: Adam Manzanares <adam.manzanares@wdc.com>
> 
> Using aio_flags is problematic because we never checked this for containing
> only expected flags. So userspace may be leaving this flag set
> unintentionally and currently it doesn't have any adverse effects. So it
> was decided to use a reserved word in struct iocb for new flags. And
> Goldwyn already did this as a part of his series [1] together with other IO
> flags. If you want, you can lobby for merging this particular patch earlier
> :).

Thanks for pointing this patch out, I missed it. I will base my work off of 
this patch given that adding new flags to aio_flags is problematic. 

> 
> 								Honza
> 
> [1] https://patchwork.kernel.org/patch/9722865/
> 
> 
> > ---
> >  fs/aio.c                     | 9 +++++++++
> >  fs/block_dev.c               | 1 +
> >  include/linux/fs.h           | 1 +
> >  include/uapi/linux/aio_abi.h | 6 ++++++
> >  4 files changed, 17 insertions(+)
> > 
> > diff --git a/fs/aio.c b/fs/aio.c
> > index f52d925..a75a279 100644
> > --- a/fs/aio.c
> > +++ b/fs/aio.c
> > @@ -1568,6 +1568,15 @@ static int io_submit_one(struct kioctx *ctx, struct iocb __user *user_iocb,
> >  	req->common.ki_pos = iocb->aio_offset;
> >  	req->common.ki_complete = aio_complete;
> >  	req->common.ki_flags = iocb_flags(req->common.ki_filp);
> > +	if (iocb->aio_flags & IOCB_FLAG_IOPRIO)
> > +		/*
> > +		 * If the IOCB_FLAG_IOPRIO flag of aio_flags is set,
> > +		 * then the aio_reqprio is interpreted as a I/O
> > +		 * scheduling class and priority. This is then set
> > +		 * on the bio that is created from this request, which
> > +		 * enables the priority to be passed to device drivers.
> > +		 */
> > +		req->common.ki_ioprio = iocb->aio_reqprio;
> >  
> >  	if (iocb->aio_flags & IOCB_FLAG_RESFD) {
> >  		/*
> > diff --git a/fs/block_dev.c b/fs/block_dev.c
> > index 2eca00e..20d18db 100644
> > --- a/fs/block_dev.c
> > +++ b/fs/block_dev.c
> > @@ -360,6 +360,7 @@ __blkdev_direct_IO(struct kiocb *iocb, struct iov_iter *iter, int nr_pages)
> >  		bio->bi_iter.bi_sector = pos >> 9;
> >  		bio->bi_private = dio;
> >  		bio->bi_end_io = blkdev_bio_end_io;
> > +		bio->bi_ioprio = iocb->ki_ioprio;
> >  
> >  		ret = bio_iov_iter_get_pages(bio, iter);
> >  		if (unlikely(ret)) {
> > diff --git a/include/linux/fs.h b/include/linux/fs.h
> > index 866c955..83135f0 100644
> > --- a/include/linux/fs.h
> > +++ b/include/linux/fs.h
> > @@ -276,6 +276,7 @@ struct kiocb {
> >  	void (*ki_complete)(struct kiocb *iocb, long ret, long ret2);
> >  	void			*private;
> >  	int			ki_flags;
> > +	u16			ki_ioprio; /* See linux/ioprio.h */
> >  };
> >  
> >  static inline bool is_sync_kiocb(struct kiocb *kiocb)
> > diff --git a/include/uapi/linux/aio_abi.h b/include/uapi/linux/aio_abi.h
> > index bb2554f..415980d 100644
> > --- a/include/uapi/linux/aio_abi.h
> > +++ b/include/uapi/linux/aio_abi.h
> > @@ -54,6 +54,12 @@ enum {
> >   */
> >  #define IOCB_FLAG_RESFD		(1 << 0)
> >  
> > +/*
> > + * IOCB_FLAG_IOPRIO - Set if the "aio_reqprio" member of the "struct iocb"
> > + *                    is interpreted as an I/O scheduling class and priority
> > + */
> > +#define IOCB_FLAG_IOPRIO	(1 << 1)
> > +
> >  /* read() from /dev/aio returns these structures. */
> >  struct io_event {
> >  	__u64		data;		/* the data field from the iocb */
> > -- 
> > 2.7.4
> > 
> -- 
> Jan Kara <jack@suse.com>
> SUSE Labs, CR

      reply	other threads:[~2017-05-23 15:27 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-05-22 17:19 [RFC PATCH] fs: block dev aio request priority support adam.manzanares
2017-05-23  8:46 ` Jan Kara
2017-05-23 15:26   ` Adam Manzanares [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20170523152651.GA7568@hgst.com \
    --to=adam.manzanares@wdc.com \
    --cc=bcrl@kvack.org \
    --cc=bfields@fieldses.org \
    --cc=jack@suse.cz \
    --cc=jlayton@poochiereds.net \
    --cc=linux-aio@kvack.org \
    --cc=linux-api@vger.kernel.org \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=viro@zeniv.linux.org.uk \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox