From: Gao Xiang <hsiangkao@linux.alibaba.com> To: Matthew Wilcox <willy@infradead.org> Cc: "Darrick J. Wong" <djwong@kernel.org>, LKML <linux-kernel@vger.kernel.org>, Christoph Hellwig <hch@infradead.org>, Joseph Qi <joseph.qi@linux.alibaba.com>, Liu Bo <bo.liu@linux.alibaba.com>, linux-fsdevel@vger.kernel.org, Liu Jiang <gerry@linux.alibaba.com>, linux-erofs@lists.ozlabs.org Subject: Re: [PATCH 1/2] iomap: support tail packing inline read Date: Fri, 16 Jul 2021 23:03:04 +0800 [thread overview] Message-ID: <YPGfqLcSiH3/z2RT@B-P7TQMD6M-0146.local> (raw) In-Reply-To: <YPGbNCdCNXIpNdqd@casper.infradead.org> On Fri, Jul 16, 2021 at 03:44:04PM +0100, Matthew Wilcox wrote: > On Fri, Jul 16, 2021 at 09:56:23PM +0800, Gao Xiang wrote: > > Hi Matthew, > > > > On Fri, Jul 16, 2021 at 02:02:29PM +0100, Matthew Wilcox wrote: > > > On Fri, Jul 16, 2021 at 01:07:23PM +0800, Gao Xiang wrote: > > > > This tries to add tail packing inline read to iomap. Different from > > > > the previous approach, it only marks the block range uptodate in the > > > > page it covers. > > > > > > Why? This path is called under two circumstances: readahead and readpage. > > > In both cases, we're trying to bring the entire page uptodate. The inline > > > extent is always the tail of the file, so we may as well zero the part of > > > the page past the end of file and mark the entire page uptodate instead > > > and leaving the end of the page !uptodate. > > > > > > I see the case where, eg, we have the first 2048 bytes of the file > > > out-of-inode and then 20 bytes in the inode. So we'll create the iop > > > for the head of the file, but then we may as well finish the entire > > > PAGE_SIZE chunk as part of this iteration rather than update 2048-3071 > > > as being uptodate and leave the 3072-4095 block for a future iteration. > > > > Thanks for your comments. Hmm... If I understand the words above correctly, > > what I'd like to do is to cover the inline extents (blocks) only > > reported by iomap_begin() rather than handling other (maybe) > > logical-not-strictly-relevant areas such as post-EOF (even pages > > will be finally entirely uptodated), I think such zeroed area should > > be handled by from the point of view of the extent itself > > > > if (iomap_block_needs_zeroing(inode, iomap, pos)) { > > zero_user(page, poff, plen); > > iomap_set_range_uptodate(page, poff, plen); > > goto done; > > } > > That does work. But we already mapped the page to write to it, and > we already have to zero to the end of the block. Why not zero to > the end of the page? It saves an iteration around the loop, it saves > a mapping of the page, and it saves a call to flush_dcache_page(). I completely understand your concern, and that's also (sort of) why I left iomap_read_inline_page() to make the old !pos behavior as before. Anyway, I could update Christoph's patch to behave like what you suggested. Will do later since I'm now taking some rest... > > > The benefits I can think out are 1) it makes the logic understand > > easier and no special cases just for tail-packing handling 2) it can > > be then used for any inline extent cases (I mean e.g. in the middle of > > the file) rather than just tail-packing inline blocks although currently > > there is a BUG_ON to prevent this but it's easier to extend even further. > > 3) it can be used as a part for later partial page uptodate logic in > > order to match the legacy buffer_head logic (I remember something if my > > memory is not broken about this...) > > Hopefully the legacy buffer_head logic will go away soon. Hmmm.. I partially agree on this (I agree buffer_head is a legacy stuff but...), considering some big PAGE_SIZE like 64kb or bigger, partial uptodate can save I/O for random file read pattern in general (not mmap read, yes, also considering readahead, but I received some regression due to I/O amplification like this when I was at the previous * 2 company). Thanks, Gao Xiang
next prev parent reply other threads:[~2021-07-16 15:03 UTC|newest] Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-07-16 5:07 [PATCH 0/2] erofs: iomap support for tailpacking cases Gao Xiang 2021-07-16 5:07 ` [PATCH 1/2] iomap: support tail packing inline read Gao Xiang 2021-07-16 9:19 ` Christoph Hellwig 2021-07-16 9:46 ` Gao Xiang 2021-07-16 13:47 ` Matthew Wilcox 2021-07-16 14:38 ` Matthew Wilcox 2021-07-16 13:02 ` Matthew Wilcox 2021-07-16 13:56 ` Gao Xiang 2021-07-16 14:44 ` Matthew Wilcox 2021-07-16 15:03 ` Gao Xiang [this message] 2021-07-16 15:53 ` Andreas Grünbacher 2021-07-17 13:38 ` Gao Xiang 2021-07-17 15:01 ` Matthew Wilcox 2021-07-17 15:15 ` Gao Xiang 2021-07-17 18:40 ` Matthew Wilcox 2021-07-19 11:19 ` Christoph Hellwig 2021-07-19 13:45 ` Gao Xiang 2021-07-19 11:15 ` Christoph Hellwig 2021-07-19 13:31 ` Gao Xiang 2021-07-16 5:07 ` [PATCH 2/2] erofs: convert all uncompressed cases to iomap Gao Xiang
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=YPGfqLcSiH3/z2RT@B-P7TQMD6M-0146.local \ --to=hsiangkao@linux.alibaba.com \ --cc=bo.liu@linux.alibaba.com \ --cc=djwong@kernel.org \ --cc=gerry@linux.alibaba.com \ --cc=hch@infradead.org \ --cc=joseph.qi@linux.alibaba.com \ --cc=linux-erofs@lists.ozlabs.org \ --cc=linux-fsdevel@vger.kernel.org \ --cc=linux-kernel@vger.kernel.org \ --cc=willy@infradead.org \ --subject='Re: [PATCH 1/2] iomap: support tail packing inline read' \ /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
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).