From: "Darrick J. Wong" <darrick.wong@oracle.com>
To: Avi Kivity <avi@scylladb.com>
Cc: Christoph Hellwig <hch@lst.de>, linux-mm@kvack.org, xfs@oss.sgi.com
Subject: Re: [PATCH] xfs: fail ->bmap for reflink inodes
Date: Fri, 27 May 2016 10:40:50 -0700 [thread overview]
Message-ID: <20160527174050.GA3509@birch.djwong.org> (raw)
In-Reply-To: <71afd256-5dfe-2ff9-ac25-b7519dadd5f9@scylladb.com>
On Fri, May 27, 2016 at 08:32:18PM +0300, Avi Kivity wrote:
> On 05/26/2016 04:02 PM, Christoph Hellwig wrote:
> >Signed-off-by: Christoph Hellwig <hch@lst.de>
> >---
> > fs/xfs/xfs_aops.c | 11 +++++++++++
> > 1 file changed, 11 insertions(+)
> >
> >diff --git a/fs/xfs/xfs_aops.c b/fs/xfs/xfs_aops.c
> >index a955552..d053a9e 100644
> >--- a/fs/xfs/xfs_aops.c
> >+++ b/fs/xfs/xfs_aops.c
> >@@ -1829,6 +1829,17 @@ xfs_vm_bmap(
> > trace_xfs_vm_bmap(XFS_I(inode));
> > xfs_ilock(ip, XFS_IOLOCK_SHARED);
> >+
> >+ /*
> >+ * The swap code (ab-)uses ->bmap to get a block mapping and then
> >+ * bypasseN? the file system for actual I/O. We really can't allow
> >+ * that on reflinks inodes, so we have to skip out here. And yes,
> >+ * 0 is the magic code for a bmap error..
> >+ */
> >+ if (xfs_is_reflink_inode(ip)) {
> >+ xfs_iunlock(ip, XFS_IOLOCK_SHARED);
> >+ return 0;
> >+ }
> > filemap_write_and_wait(mapping);
> > xfs_iunlock(ip, XFS_IOLOCK_SHARED);
> > return generic_block_bmap(mapping, block, xfs_get_blocks);
>
> Don't you also have to prevent a swapfile from being reflinked after it's
> bmapped? Or is that already taken care of?
Already taken care of, at least for XFS.
--D
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
prev parent reply other threads:[~2016-05-27 17:40 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-05-26 13:02 oh the joy of swap files Christoph Hellwig
2016-05-26 13:02 ` [PATCH] xfs: fail ->bmap for reflink inodes Christoph Hellwig
2016-05-27 4:11 ` Darrick J. Wong
2016-05-27 17:32 ` Avi Kivity
2016-05-27 17:40 ` Darrick J. Wong [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=20160527174050.GA3509@birch.djwong.org \
--to=darrick.wong@oracle.com \
--cc=avi@scylladb.com \
--cc=hch@lst.de \
--cc=linux-mm@kvack.org \
--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