lkml.org 
[lkml]   [2008]   [Oct]   [1]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
SubjectRe: disk IO directly from PCI memory to block device sectors
On Mon, Sep 29 2008, Jens Axboe wrote:
> On Fri, Sep 26 2008, Leisner, Martin wrote:
> >
> >
> > > -----Original Message-----
> > > From: Jens Axboe [mailto:jens.axboe@oracle.com]
> > > Sent: Friday, September 26, 2008 5:12 AM
> > > To: Alan Cox
> > > Cc: marty; linux-kernel@vger.kernel.org; Leisner, Martin
> > > Subject: Re: disk IO directly from PCI memory to block device
> > sectors
> > >
> > > On Fri, Sep 26 2008, Alan Cox wrote:
> > > > > What I'm looking is for a more generic/driver independent way of
> > > sticking
> > > > > contents of PCI ram onto a disk.
> > > >
> > > > Ermm seriously why not have a userspace task with the PCI RAM
> > mmapped
> > > > and just use write() like normal sane people do ?
> > >
> > > To avoid the fault and copy, I would assume.
> > >
> > > --
> > > Jens Axboe
> >
> > Also:
> > a) to deal with interrupts from the hardware
> > b) using legacy code/design/architecture
> >
> > The splice approaches look very interesting...thanks...
>
> Just for kicks, I did the read part of the fast bdev interface as well.
> As with the write, it's totally untested (apart from compiled). Just in
> case anyone is curious... I plan to do a bit of testing on this this
> week.
>
> IMHO, this interface totally rocks. It's really async like splice was
> intended, and it's fast too. I may have to look into some generic IO
> mechanism to unify them all, O_DIRECT/page cache/splice. Famous last
> words, I'm sure.

Alright, so this one actually works :-)
Apart from fixing the bugs in it, it's also more clever in using the bio
for the write part. It'll reuse the same bio in the splice actor until
it's full, only then submitting it and allocating a new one. The read
part works the same way.

diff --git a/fs/block_dev.c b/fs/block_dev.c
index aff5421..1e807a3 100644
--- a/fs/block_dev.c
+++ b/fs/block_dev.c
@@ -24,6 +24,7 @@
#include <linux/uio.h>
#include <linux/namei.h>
#include <linux/log2.h>
+#include <linux/splice.h>
#include <asm/uaccess.h>
#include "internal.h"

@@ -1155,6 +1156,346 @@ static long block_ioctl(struct file *file, unsigned cmd, unsigned long arg)
return blkdev_ioctl(file->f_mapping->host, file, cmd, arg);
}

+static void block_splice_write_end_io(struct bio *bio, int err)
+{
+ bio_put(bio);
+}
+
+/*
+ * No need going above PIPE_BUFFERS, as we cannot fill that anyway
+ */
+static inline unsigned len_to_max_pages(unsigned int len)
+{
+ unsigned pages = (len + PAGE_SIZE - 1) / PAGE_SIZE;
+
+ return min_t(unsigned, pages, PIPE_BUFFERS);
+}
+
+/*
+ * A bit of state data, to allow us to make larger bios
+ */
+struct block_splice_data {
+ struct file *file;
+ struct bio *bio;
+};
+
+static int pipe_to_disk(struct pipe_inode_info *pipe, struct pipe_buffer *buf,
+ struct splice_desc *sd)
+{
+ struct block_splice_data *bsd = sd->u.data;
+ struct block_device *bdev = I_BDEV(bsd->file->f_mapping->host);
+ unsigned int mask;
+ struct bio *bio;
+ int ret;
+
+ mask = queue_hardsect_size(bdev_get_queue(bdev)) - 1;
+ if ((sd->pos & mask) || (buf->len & mask) || (buf->offset & mask))
+ return -EINVAL;
+
+ ret = buf->ops->confirm(pipe, buf);
+ if (unlikely(ret))
+ return ret;
+
+ bio = bsd->bio;
+ if (!bio) {
+new_bio:
+ bio = bio_alloc(GFP_KERNEL, len_to_max_pages(sd->total_len));
+ bio->bi_sector = sd->pos;
+ do_div(bio->bi_sector, mask + 1);
+ bio->bi_bdev = bdev;
+ bio->bi_end_io = block_splice_write_end_io;
+ bsd->bio = bio;
+ }
+
+ if (bio_add_page(bio, buf->page, buf->len, buf->offset) != buf->len) {
+ submit_bio(WRITE, bio);
+ bsd->bio = NULL;
+ goto new_bio;
+ }
+
+ return buf->len;
+}
+
+/*
+ * Splice to file opened with O_DIRECT. Bypass caching completely and
+ * just go direct-to-bio
+ */
+static ssize_t __block_splice_write(struct pipe_inode_info *pipe,
+ struct file *out, loff_t *ppos, size_t len,
+ unsigned int flags)
+{
+ struct block_splice_data bsd;
+ struct splice_desc sd = {
+ .total_len = len,
+ .flags = flags,
+ .pos = *ppos,
+ .u.data = &bsd,
+ };
+ struct inode *inode = out->f_mapping->host;
+ ssize_t ret;
+
+ if (unlikely(*ppos & 511))
+ return -EINVAL;
+
+ bsd.file = out;
+ bsd.bio = NULL;
+
+ inode_double_lock(inode, pipe->inode);
+ ret = __splice_from_pipe(pipe, &sd, pipe_to_disk);
+ inode_double_unlock(inode, pipe->inode);
+
+ /*
+ * submit a potential in-progress bio
+ */
+ if (bsd.bio)
+ submit_bio(WRITE, bsd.bio);
+
+ return ret;
+}
+
+static ssize_t block_splice_write(struct pipe_inode_info *pipe,
+ struct file *out, loff_t *ppos, size_t len,
+ unsigned int flags)
+{
+ ssize_t ret;
+
+ if (out->f_flags & O_DIRECT) {
+ ret = __block_splice_write(pipe, out, ppos, len, flags);
+ if (ret > 0)
+ *ppos += ret;
+ } else
+ ret = generic_file_splice_write(pipe, out, ppos, len, flags);
+
+ return ret;
+}
+
+/*
+ * Free the pipe page and put the pipe_buffer reference to the bio
+ */
+static void block_drop_buf_ref(struct page *page, unsigned long data)
+{
+ struct bio *bio;
+
+ bio = (struct bio *) data;
+ if (bio) {
+ struct completion *comp;
+
+ comp = bio->bi_private;
+ if (comp)
+ wait_for_completion(comp);
+
+ bio_put(bio);
+ }
+
+ __free_page(page);
+}
+
+static void block_pipe_buf_release(struct pipe_inode_info *pipe,
+ struct pipe_buffer *buf)
+{
+ block_drop_buf_ref(buf->page, buf->private);
+}
+
+/*
+ * Wait for IO to be done on the bio that this buf belongs to
+ */
+static int block_pipe_buf_confirm(struct pipe_inode_info *pipe,
+ struct pipe_buffer *buf)
+{
+ struct bio *bio = (struct bio *) buf->private;
+ struct completion *comp = bio->bi_private;
+
+ wait_for_completion(comp);
+ return 0;
+}
+
+static void block_pipe_buf_get(struct pipe_inode_info *pipe, struct pipe_buffer *buf)
+{
+ struct bio *bio;
+
+ bio = (struct bio *) buf->private;
+ if (bio)
+ bio_get(bio);
+
+ get_page(buf->page);
+}
+
+static const struct pipe_buf_operations block_pipe_buf_ops = {
+ .can_merge = 0,
+ .map = generic_pipe_buf_map,
+ .unmap = generic_pipe_buf_unmap,
+ .confirm = block_pipe_buf_confirm,
+ .release = block_pipe_buf_release,
+ .steal = generic_pipe_buf_steal,
+ .get = block_pipe_buf_get,
+};
+
+/*
+ * Free the pipe page and put the pipe_buffer reference to the bio
+ */
+static void block_release_page(struct splice_pipe_desc *spd, unsigned int i)
+{
+ block_drop_buf_ref(spd->pages[i], spd->partial[i].private);
+}
+
+/*
+ * READ end io handling completes the bio, so that we can wakeup
+ * anyone waiting in ->confirm().
+ */
+static void block_splice_read_end_io(struct bio *bio, int err)
+{
+ struct completion *comp = bio->bi_private;
+
+ /*
+ * IO done, so complete to wake up potential waiters. Put our
+ * allocation reference to the bio
+ */
+ complete_all(comp);
+ bio_put(bio);
+}
+
+/*
+ * Overload the default destructor, so we can safely free our completion too
+ */
+static void block_splice_bio_destructor(struct bio *bio)
+{
+ kfree(bio->bi_private);
+ bio_free(bio, fs_bio_set);
+}
+
+/*
+ * Bypass the page cache and allocate pages for IO directly
+ */
+static ssize_t __block_splice_read(struct pipe_inode_info *pipe,
+ struct file *in, loff_t *ppos, size_t len,
+ unsigned int flags)
+{
+ struct page *pages[PIPE_BUFFERS];
+ struct partial_page partial[PIPE_BUFFERS];
+ struct splice_pipe_desc spd = {
+ .pages = pages,
+ .partial = partial,
+ .nr_pages = 0,
+ .flags = flags,
+ .ops = &block_pipe_buf_ops,
+ .spd_release = block_release_page,
+ };
+ struct inode *inode = in->f_mapping->host;
+ struct block_device *bdev = I_BDEV(inode);
+ struct bio *bio;
+ sector_t sector;
+ loff_t isize, left;
+ int bs, err;
+
+ /*
+ * First to alignment and length sanity checks
+ */
+ bs = queue_hardsect_size(bdev_get_queue(bdev));
+ if (*ppos & (bs - 1))
+ return -EINVAL;
+
+ isize = i_size_read(inode);
+ if (unlikely(*ppos >= isize))
+ return 0;
+
+ left = isize - *ppos;
+ if (unlikely(left < len))
+ len = left;
+
+ err = 0;
+ sector = *ppos;
+ do_div(sector, bs);
+ bio = NULL;
+ while (len && spd.nr_pages < PIPE_BUFFERS) {
+ unsigned int this_len = min_t(unsigned int, len, PAGE_SIZE);
+ struct completion *comp;
+ struct page *page;
+
+ page = alloc_page(GFP_KERNEL);
+ if (!page) {
+ err = -ENOMEM;
+ break;
+ }
+
+ if (!bio) {
+alloc_new_bio:
+ comp = kmalloc(sizeof(*comp), GFP_KERNEL);
+ if (!comp) {
+ __free_page(page);
+ err = -ENOMEM;
+ break;
+ }
+
+ init_completion(comp);
+
+ bio = bio_alloc(GFP_KERNEL, len_to_max_pages(len));
+ bio->bi_sector = sector;
+ bio->bi_bdev = bdev;
+ bio->bi_private = comp;
+ bio->bi_end_io = block_splice_read_end_io;
+
+ /*
+ * Not too nice...
+ */
+ bio->bi_destructor = block_splice_bio_destructor;
+ }
+
+ /*
+ * if we fail adding the page, then submit this bio and go
+ * fetch a new one
+ */
+ if (bio_add_page(bio, page, this_len, 0) != this_len) {
+ submit_bio(READ, bio);
+ bio = NULL;
+ goto alloc_new_bio;
+ }
+
+ /*
+ * The pipe buffer needs to hang on to the bio, so that we
+ * can reuse it in the ->confirm() part of the pipe ops
+ */
+ bio_get(bio);
+
+ sector += (this_len / bs);
+ len -= this_len;
+ partial[spd.nr_pages].offset = 0;
+ partial[spd.nr_pages].len = this_len;
+ partial[spd.nr_pages].private = (unsigned long) bio;
+ pages[spd.nr_pages] = page;
+ spd.nr_pages++;
+ }
+
+ /*
+ * submit the current bio, if any
+ */
+ if (bio)
+ submit_bio(READ, bio);
+
+ /*
+ * if we succeeded in adding some pages, fill them into the pipe
+ */
+ if (spd.nr_pages)
+ return splice_to_pipe(pipe, &spd);
+
+ return err;
+}
+
+static ssize_t block_splice_read(struct file *in, loff_t *ppos,
+ struct pipe_inode_info *pipe, size_t len,
+ unsigned int flags)
+{
+ ssize_t ret;
+
+ if (in->f_flags & O_DIRECT) {
+ ret = __block_splice_read(pipe, in, ppos, len, flags);
+ if (ret > 0)
+ *ppos += ret;
+ } else
+ ret = generic_file_splice_read(in, ppos, pipe, len, flags);
+
+ return ret;
+}
+
static const struct address_space_operations def_blk_aops = {
.readpage = blkdev_readpage,
.writepage = blkdev_writepage,
@@ -1179,8 +1520,8 @@ const struct file_operations def_blk_fops = {
#ifdef CONFIG_COMPAT
.compat_ioctl = compat_blkdev_ioctl,
#endif
- .splice_read = generic_file_splice_read,
- .splice_write = generic_file_splice_write,
+ .splice_read = block_splice_read,
+ .splice_write = block_splice_write,
};

int ioctl_by_bdev(struct block_device *bdev, unsigned cmd, unsigned long arg)
--
Jens Axboe



\
 
 \ /
  Last update: 2008-10-01 21:09    [W:0.082 / U:0.168 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site