From: Andreas Gruenbacher <agruenba@redhat.com>
To: cluster-devel@redhat.com, Christoph Hellwig <hch@lst.de>
Cc: linux-fsdevel@vger.kernel.org, Andreas Gruenbacher <agruenba@redhat.com>
Subject: [PATCH v5 14/14] gfs2: Handle stuffed files in iomap_{begin,end}
Date: Wed, 30 May 2018 11:48:42 +0200 [thread overview]
Message-ID: <20180530094842.13559-15-agruenba@redhat.com> (raw)
In-Reply-To: <20180530094842.13559-1-agruenba@redhat.com>
Proof of concept: move the gfs2 stuffed file handling from the
iomap_write_{begin,end} handlers to the iomap_{begin,end} handlers.
With this, the page written to is locked before faulting in the page to
read from, so when both refer to the same page, we end up with a
deadlock as demonstrated by xfstest generic/248.
Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
---
fs/gfs2/bmap.c | 91 ++++++++++++++++++++-----------------------
fs/iomap.c | 21 ++++++----
include/linux/iomap.h | 1 +
3 files changed, 57 insertions(+), 56 deletions(-)
diff --git a/fs/gfs2/bmap.c b/fs/gfs2/bmap.c
index c157af31dc56..05b599a70de6 100644
--- a/fs/gfs2/bmap.c
+++ b/fs/gfs2/bmap.c
@@ -966,15 +966,30 @@ static int gfs2_iomap_begin_write(struct inode *inode, loff_t pos, loff_t length
struct gfs2_inode *ip = GFS2_I(inode);
struct gfs2_sbd *sdp = GFS2_SB(inode);
unsigned int data_blocks = 0, ind_blocks = 0, rblocks;
- bool unstuff, alloc_required;
+ bool unstuff = false, alloc_required;
int ret;
ret = gfs2_write_lock(inode);
if (ret)
return ret;
- unstuff = gfs2_is_stuffed(ip) &&
- pos + length > gfs2_max_stuffed_size(ip);
+ if (gfs2_is_stuffed(ip)) {
+ unstuff = pos + length > gfs2_max_stuffed_size(ip);
+
+ if (!unstuff) {
+ iomap->page = grab_cache_page_write_begin(
+ inode->i_mapping, 0, flags);
+ ret = -ENOMEM;
+ if (!iomap->page)
+ goto out;
+
+ if (!PageUptodate(iomap->page)) {
+ ret = stuffed_readpage(ip, iomap->page);
+ if (ret)
+ goto out;
+ }
+ }
+ }
ret = gfs2_iomap_get(inode, pos, length, flags, iomap, &mp);
if (ret)
@@ -1044,6 +1059,12 @@ static int gfs2_iomap_begin_write(struct inode *inode, loff_t pos, loff_t length
gfs2_quota_unlock(ip);
out_release:
release_metapath(&mp);
+out:
+ if (iomap->page) {
+ unlock_page(iomap->page);
+ put_page(iomap->page);
+ iomap->page = NULL;
+ }
gfs2_write_unlock(inode);
return ret;
}
@@ -1073,54 +1094,10 @@ static int gfs2_iomap_begin(struct inode *inode, loff_t pos, loff_t length,
return ret;
}
-static int
-gfs2_iomap_write_begin(struct inode *inode, loff_t pos, unsigned len,
- unsigned flags, struct page **pagep, struct iomap *iomap)
-{
- struct gfs2_inode *ip = GFS2_I(inode);
- struct page *page;
- int ret;
-
- if (gfs2_is_stuffed(ip)) {
- BUG_ON(pos + len > gfs2_max_stuffed_size(ip));
-
- page = grab_cache_page_write_begin(inode->i_mapping, 0, flags);
- if (!page)
- return -ENOMEM;
-
- if (!PageUptodate(page)) {
- ret = stuffed_readpage(ip, page);
- if (ret) {
- unlock_page(page);
- put_page(page);
- return ret;
- }
- }
- *pagep = page;
- return 0;
- }
-
- return iomap_write_begin(inode, pos, len, flags, pagep, iomap);
-}
-
static int gfs2_iomap_write_end(struct inode *inode, loff_t pos, unsigned len,
unsigned copied, struct page *page)
{
struct gfs2_inode *ip = GFS2_I(inode);
- struct buffer_head *dibh;
- int ret;
-
- if (gfs2_is_stuffed(ip)) {
- ret = gfs2_meta_inode_buffer(ip, &dibh);
- if (ret) {
- unlock_page(page);
- put_page(page);
- return ret;
- }
- ret = gfs2_stuffed_write_end(inode, dibh, pos, copied, page);
- brelse(dibh);
- return ret;
- }
if (gfs2_is_jdata(ip))
gfs2_page_add_databufs(ip, page, offset_in_page(pos), len);
@@ -1139,6 +1116,23 @@ static int gfs2_iomap_end(struct inode *inode, loff_t pos, loff_t length,
if ((flags & (IOMAP_WRITE | IOMAP_DIRECT)) != IOMAP_WRITE)
return 0;
+ if (iomap->page) {
+ struct buffer_head *dibh;
+
+ ret = gfs2_meta_inode_buffer(ip, &dibh);
+ if (ret) {
+ unlock_page(iomap->page);
+ put_page(iomap->page);
+ iomap->page = NULL;
+ goto out;
+ }
+ ret = gfs2_stuffed_write_end(inode, dibh, pos, written,
+ iomap->page);
+ iomap->page = NULL;
+ brelse(dibh);
+ goto out;
+ }
+
gfs2_ordered_add_inode(ip);
if (tr->tr_num_buf_new)
@@ -1153,6 +1147,7 @@ static int gfs2_iomap_end(struct inode *inode, loff_t pos, loff_t length,
}
}
+out:
if (inode == sdp->sd_rindex) {
adjust_fs_space(inode);
sdp->sd_rindex_uptodate = 0;
@@ -1180,7 +1175,7 @@ static int gfs2_iomap_end(struct inode *inode, loff_t pos, loff_t length,
const struct iomap_ops gfs2_iomap_ops = {
.iomap_begin = gfs2_iomap_begin,
- .write_begin = gfs2_iomap_write_begin,
+ .write_begin = iomap_write_begin,
.write_end = gfs2_iomap_write_end,
.iomap_end = gfs2_iomap_end,
};
diff --git a/fs/iomap.c b/fs/iomap.c
index 819b6c56ecfe..2a1d78976775 100644
--- a/fs/iomap.c
+++ b/fs/iomap.c
@@ -196,10 +196,13 @@ iomap_write_actor(struct inode *inode, loff_t pos, loff_t length, void *data,
break;
}
- status = args->ops->write_begin(inode, pos, bytes, flags, &page,
- iomap);
- if (unlikely(status))
- break;
+ page = iomap->page;
+ if (!iomap->page) {
+ status = args->ops->write_begin(inode, pos, bytes, flags, &page,
+ iomap);
+ if (unlikely(status))
+ break;
+ }
if (mapping_writably_mapped(inode->i_mapping))
flush_dcache_page(page);
@@ -208,10 +211,12 @@ iomap_write_actor(struct inode *inode, loff_t pos, loff_t length, void *data,
flush_dcache_page(page);
- status = args->ops->write_end(inode, pos, bytes, copied, page);
- if (unlikely(status < 0))
- break;
- copied = status;
+ if (!iomap->page) {
+ status = args->ops->write_end(inode, pos, bytes, copied, page);
+ if (unlikely(status < 0))
+ break;
+ copied = status;
+ }
cond_resched();
diff --git a/include/linux/iomap.h b/include/linux/iomap.h
index 0a018a58d84e..db807157c154 100644
--- a/include/linux/iomap.h
+++ b/include/linux/iomap.h
@@ -47,6 +47,7 @@ struct iomap {
u64 length; /* length of mapping, bytes */
u16 type; /* type of mapping */
u16 flags; /* flags for mapping */
+ struct page *page;
struct block_device *bdev; /* block device for I/O */
struct dax_device *dax_dev; /* dax_dev for dax operations */
};
--
2.17.0
next prev parent reply other threads:[~2018-05-30 9:49 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-05-30 9:48 [PATCH v5 00/14] gfs2 iomap write support Andreas Gruenbacher
2018-05-30 9:48 ` [PATCH v5 01/14] gfs2: Update find_metapath comment Andreas Gruenbacher
2018-05-30 9:48 ` [PATCH v5 02/14] gfs2: hole_size improvement Andreas Gruenbacher
2018-05-30 9:48 ` [PATCH v5 03/14] gfs2: gfs2_stuffed_write_end cleanup Andreas Gruenbacher
2018-05-30 9:48 ` [PATCH v5 04/14] gfs2: Remove ordered write mode handling from gfs2_trans_add_data Andreas Gruenbacher
2018-05-30 9:48 ` [PATCH v5 05/14] gfs2: Iomap cleanups and improvements Andreas Gruenbacher
2018-05-30 9:48 ` [PATCH v5 06/14] iomap: Add write_{begin,end} iomap operations Andreas Gruenbacher
2018-05-30 9:48 ` [PATCH v5 07/14] iomap: Mark newly allocated buffer heads as new Andreas Gruenbacher
2018-05-30 9:48 ` [PATCH v5 08/14] gfs2: iomap buffered write support Andreas Gruenbacher
2018-05-30 9:48 ` [PATCH v5 09/14] gfs2: gfs2_extent_length cleanup Andreas Gruenbacher
2018-05-30 9:48 ` [PATCH v5 10/14] iomap: Complete partial direct I/O writes synchronously Andreas Gruenbacher
2018-05-30 9:48 ` [PATCH v5 11/14] gfs2: iomap direct I/O support Andreas Gruenbacher
2018-05-30 9:48 ` [PATCH v5 12/14] gfs2: Remove gfs2_write_{begin,end} Andreas Gruenbacher
2018-05-30 9:48 ` [PATCH v5 13/14] iomap: inline data should be an iomap type, not a flag Andreas Gruenbacher
2018-05-30 9:48 ` Andreas Gruenbacher [this message]
2018-05-30 9:57 ` [PATCH v5 14/14] gfs2: Handle stuffed files in iomap_{begin,end} Christoph Hellwig
2018-05-30 15:48 ` [Cluster-devel] [PATCH v5 00/14] gfs2 iomap write support Bob Peterson
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=20180530094842.13559-15-agruenba@redhat.com \
--to=agruenba@redhat.com \
--cc=cluster-devel@redhat.com \
--cc=hch@lst.de \
--cc=linux-fsdevel@vger.kernel.org \
/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;
as well as URLs for NNTP newsgroup(s).