From: Christoph Hellwig <hch@infradead.org>
To: Dave Chinner <david@fromorbit.com>
Cc: xfs@oss.sgi.com
Subject: Re: [PATCH 6/8] xfs: don't chain ioends during writepage submission
Date: Wed, 10 Feb 2016 03:36:09 -0800 [thread overview]
Message-ID: <20160210113609.GC15221@infradead.org> (raw)
In-Reply-To: <1455094043-9694-7-git-send-email-david@fromorbit.com>
> -STATIC void
> +STATIC int
> xfs_submit_ioend(
> struct writeback_control *wbc,
> xfs_ioend_t *ioend,
> int fail)
No that almost all of the function is rewritten can you rename
fail to error or status? fail always suggests a boolean to me and
is rather confusing.
> + * Return the ioend we finished off so that the caller can submit it
> + * once it has finished processing the dirty page.
> */
> -STATIC void
> +STATIC struct xfs_ioend *
> xfs_add_to_ioend(
> struct inode *inode,
> struct buffer_head *bh,
> xfs_off_t offset,
> struct xfs_writepage_ctx *wpc)
> {
> + struct xfs_ioend *prev = NULL;
> +
> if (!wpc->ioend || wpc->io_type != wpc->ioend->io_type ||
> bh->b_blocknr != wpc->last_block + 1) {
> struct xfs_ioend *new;
>
> + prev = wpc->ioend;
Looking at the new list_head based code it might be either to just
pass in a pointer to the submit_list and just add the previous ioend
here directly.
> + LIST_HEAD(submit_list);
> + struct xfs_ioend *ioend, *next;
> struct buffer_head *bh, *head;
> ssize_t len = 1 << inode->i_blkbits;
> int error = 0;
> int uptodate = 1;
> int count = 0;
The count variable is pointless now - we only check for it being
non-zero, and we can do the same with a list_emptry on submit_list.
>
> +
> bh = head = page_buffers(page);
> offset = page_offset(page);
nit: pointless second empty line added above
> ret = xfs_do_writepage(page, wbc, &wpc);
> - return xfs_writepage_submit(&wpc, wbc, ret);
> + if (wpc.ioend)
> + xfs_submit_ioend(wbc, wpc.ioend, ret);
> + return ret;
> }
>
> STATIC int
> @@ -1019,7 +1022,9 @@ xfs_vm_writepages(
>
> xfs_iflags_clear(XFS_I(mapping->host), XFS_ITRUNCATED);
> ret = write_cache_pages(mapping, wbc, xfs_do_writepage, &wpc);
> - return xfs_writepage_submit(&wpc, wbc, ret);
> + if (wpc.ioend)
> + xfs_submit_ioend(wbc, wpc.ioend, ret);
> + return ret;
And this is where ignoreing the xfs_setfilesize_trans_alloc errors
reappears after a previous patch mostly fixed it up.
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
next prev parent reply other threads:[~2016-02-10 11:36 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-02-10 8:47 [PATCH 0/8 v4] xfs: get rid of xfs_cluster_write Dave Chinner
2016-02-10 8:47 ` [PATCH 1/8] xfs: remove nonblocking mode from xfs_vm_writepage Dave Chinner
2016-02-10 8:47 ` [PATCH 2/8] xfs: remove xfs_cancel_ioend Dave Chinner
2016-02-10 11:28 ` Christoph Hellwig
2016-02-11 0:21 ` Dave Chinner
2016-02-11 15:14 ` Christoph Hellwig
2016-02-11 20:59 ` Dave Chinner
2016-02-10 8:47 ` [PATCH 3/8] xfs: Introduce writeback context for writepages Dave Chinner
2016-02-10 11:31 ` Christoph Hellwig
2016-02-11 0:25 ` Dave Chinner
2016-02-10 8:47 ` [PATCH 4/8] xfs: xfs_cluster_write is redundant Dave Chinner
2016-02-10 8:47 ` [PATCH 5/8] xfs: factor mapping out of xfs_do_writepage Dave Chinner
2016-02-10 8:47 ` [PATCH 6/8] xfs: don't chain ioends during writepage submission Dave Chinner
2016-02-10 11:36 ` Christoph Hellwig [this message]
2016-02-11 0:26 ` Dave Chinner
2016-02-11 6:39 ` Dave Chinner
2016-02-10 8:47 ` [PATCH 7/8] [RFC] xfs: build bios directly in xfs_add_to_ioend Dave Chinner
2016-02-10 8:47 ` [PATCH 8/8] [RFC] xfs: don't release bios on completion immediately Dave Chinner
2016-02-10 9:05 ` [PATCH 0/8 v4] xfs: get rid of xfs_cluster_write Christoph Hellwig
2016-02-10 18:25 ` Christoph Hellwig
2016-02-10 21:25 ` Dave Chinner
2016-02-11 15:13 ` Christoph Hellwig
2016-02-11 20:12 ` Dave Chinner
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=20160210113609.GC15221@infradead.org \
--to=hch@infradead.org \
--cc=david@fromorbit.com \
--cc=xfs@oss.sgi.com \
/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