All of lore.kernel.org
 help / color / mirror / Atom feed
From: Junxiao Bi <junxiao.bi@oracle.com>
To: ocfs2-devel@oss.oracle.com, cluster-devel@redhat.com,
	linux-fsdevel@vger.kernel.org
Cc: junxiao.bi@oracle.com
Subject: [PATCH 3/3] gfs2: fix out of inode size writeback
Date: Mon, 26 Apr 2021 15:05:52 -0700	[thread overview]
Message-ID: <20210426220552.45413-3-junxiao.bi@oracle.com> (raw)
In-Reply-To: <20210426220552.45413-1-junxiao.bi@oracle.com>

Dirty flag of buffers out of inode size will be cleared and will not
be writeback.

Cc: <stable@vger.kernel.org>
Signed-off-by: Junxiao Bi <junxiao.bi@oracle.com>
---
 fs/gfs2/aops.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/fs/gfs2/aops.c b/fs/gfs2/aops.c
index cc4f987687f3..cd8a87555b3a 100644
--- a/fs/gfs2/aops.c
+++ b/fs/gfs2/aops.c
@@ -133,8 +133,8 @@ static int gfs2_write_jdata_page(struct page *page,
 	if (page->index == end_index && offset)
 		zero_user_segment(page, offset, PAGE_SIZE);
 
-	return __block_write_full_page(inode, page, gfs2_get_block_noalloc, wbc,
-				       end_buffer_async_write);
+	return __block_write_full_page_eof(inode, page, gfs2_get_block_noalloc, wbc,
+				       end_buffer_async_write, true);
 }
 
 /**
-- 
2.24.3 (Apple Git-128)


WARNING: multiple messages have this Message-ID (diff)
From: Junxiao Bi <junxiao.bi@oracle.com>
To: ocfs2-devel@oss.oracle.com, cluster-devel@redhat.com,
	linux-fsdevel@vger.kernel.org
Subject: [Ocfs2-devel] [PATCH 3/3] gfs2: fix out of inode size writeback
Date: Mon, 26 Apr 2021 15:05:52 -0700	[thread overview]
Message-ID: <20210426220552.45413-3-junxiao.bi@oracle.com> (raw)
In-Reply-To: <20210426220552.45413-1-junxiao.bi@oracle.com>

Dirty flag of buffers out of inode size will be cleared and will not
be writeback.

Cc: <stable@vger.kernel.org>
Signed-off-by: Junxiao Bi <junxiao.bi@oracle.com>
---
 fs/gfs2/aops.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/fs/gfs2/aops.c b/fs/gfs2/aops.c
index cc4f987687f3..cd8a87555b3a 100644
--- a/fs/gfs2/aops.c
+++ b/fs/gfs2/aops.c
@@ -133,8 +133,8 @@ static int gfs2_write_jdata_page(struct page *page,
 	if (page->index == end_index && offset)
 		zero_user_segment(page, offset, PAGE_SIZE);
 
-	return __block_write_full_page(inode, page, gfs2_get_block_noalloc, wbc,
-				       end_buffer_async_write);
+	return __block_write_full_page_eof(inode, page, gfs2_get_block_noalloc, wbc,
+				       end_buffer_async_write, true);
 }
 
 /**
-- 
2.24.3 (Apple Git-128)


_______________________________________________
Ocfs2-devel mailing list
Ocfs2-devel@oss.oracle.com
https://oss.oracle.com/mailman/listinfo/ocfs2-devel

WARNING: multiple messages have this Message-ID (diff)
From: Junxiao Bi <junxiao.bi@oracle.com>
To: cluster-devel.redhat.com
Subject: [Cluster-devel] [PATCH 3/3] gfs2: fix out of inode size writeback
Date: Mon, 26 Apr 2021 15:05:52 -0700	[thread overview]
Message-ID: <20210426220552.45413-3-junxiao.bi@oracle.com> (raw)
In-Reply-To: <20210426220552.45413-1-junxiao.bi@oracle.com>

Dirty flag of buffers out of inode size will be cleared and will not
be writeback.

Cc: <stable@vger.kernel.org>
Signed-off-by: Junxiao Bi <junxiao.bi@oracle.com>
---
 fs/gfs2/aops.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/fs/gfs2/aops.c b/fs/gfs2/aops.c
index cc4f987687f3..cd8a87555b3a 100644
--- a/fs/gfs2/aops.c
+++ b/fs/gfs2/aops.c
@@ -133,8 +133,8 @@ static int gfs2_write_jdata_page(struct page *page,
 	if (page->index == end_index && offset)
 		zero_user_segment(page, offset, PAGE_SIZE);
 
-	return __block_write_full_page(inode, page, gfs2_get_block_noalloc, wbc,
-				       end_buffer_async_write);
+	return __block_write_full_page_eof(inode, page, gfs2_get_block_noalloc, wbc,
+				       end_buffer_async_write, true);
 }
 
 /**
-- 
2.24.3 (Apple Git-128)



  parent reply	other threads:[~2021-04-26 22:07 UTC|newest]

Thread overview: 60+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-26 22:05 [PATCH 1/3] fs/buffer.c: add new api to allow eof writeback Junxiao Bi
2021-04-26 22:05 ` [Cluster-devel] " Junxiao Bi
2021-04-26 22:05 ` [Ocfs2-devel] " Junxiao Bi
2021-04-26 22:05 ` [PATCH 2/3] ocfs2: allow writing back pages out of inode size Junxiao Bi
2021-04-26 22:05   ` [Cluster-devel] " Junxiao Bi
2021-04-26 22:05   ` [Ocfs2-devel] " Junxiao Bi
2021-04-28 16:00   ` Junxiao Bi
2021-04-28 16:00     ` [Cluster-devel] " Junxiao Bi
2021-04-28 16:00     ` [Ocfs2-devel] " Junxiao Bi
2021-04-29 13:09   ` Joseph Qi
2021-04-29 13:09     ` [Cluster-devel] " Joseph Qi
2021-04-29 13:09     ` Joseph Qi
2021-04-26 22:05 ` Junxiao Bi [this message]
2021-04-26 22:05   ` [Cluster-devel] [PATCH 3/3] gfs2: fix out of inode size writeback Junxiao Bi
2021-04-26 22:05   ` [Ocfs2-devel] " Junxiao Bi
2021-04-28 16:02   ` Junxiao Bi
2021-04-28 16:02     ` [Cluster-devel] " Junxiao Bi
2021-04-28 16:02     ` [Ocfs2-devel] " Junxiao Bi
2021-04-29 11:58 ` [Ocfs2-devel] [PATCH 1/3] fs/buffer.c: add new api to allow eof writeback Joseph Qi
2021-04-29 11:58   ` [Cluster-devel] " Joseph Qi
2021-04-29 11:58   ` Joseph Qi
2021-04-29 17:14 ` [Cluster-devel] " Andreas Gruenbacher
2021-04-29 17:14   ` Andreas Gruenbacher
2021-04-29 17:14   ` [Ocfs2-devel] " Andreas Gruenbacher
2021-04-29 18:07   ` Junxiao Bi
2021-04-29 18:07     ` Junxiao Bi
2021-04-29 18:07     ` [Ocfs2-devel] " Junxiao Bi
2021-04-30 12:47     ` Jan Kara
2021-04-30 12:47       ` Jan Kara
2021-04-30 12:47       ` [Ocfs2-devel] " Jan Kara
2021-04-30 21:18       ` Junxiao Bi
2021-04-30 21:18         ` Junxiao Bi
2021-04-30 21:18         ` [Ocfs2-devel] " Junxiao Bi
2021-05-03 10:29         ` Jan Kara
2021-05-03 10:29           ` Jan Kara
2021-05-03 10:29           ` [Ocfs2-devel] " Jan Kara
2021-05-03 17:25           ` Junxiao Bi
2021-05-03 17:25             ` Junxiao Bi
2021-05-03 17:25             ` [Ocfs2-devel] " Junxiao Bi
2021-05-04  9:02             ` Jan Kara
2021-05-04  9:02               ` Jan Kara
2021-05-04  9:02               ` [Ocfs2-devel] " Jan Kara
2021-05-04 23:35               ` Junxiao Bi
2021-05-04 23:35                 ` Junxiao Bi
2021-05-04 23:35                 ` [Ocfs2-devel] " Junxiao Bi
2021-05-05 11:43                 ` Jan Kara
2021-05-05 11:43                   ` Jan Kara
2021-05-05 11:43                   ` [Ocfs2-devel] " Jan Kara
2021-05-05 15:54                   ` Junxiao Bi
2021-05-05 15:54                     ` Junxiao Bi
2021-05-05 15:54                     ` [Ocfs2-devel] " Junxiao Bi
2021-05-09 23:23 ` [Ocfs2-devel] " Andrew Morton
2021-05-09 23:23   ` [Cluster-devel] " Andrew Morton
2021-05-09 23:23   ` Andrew Morton
2021-05-10 22:15   ` Junxiao Bi
2021-05-10 22:15     ` [Cluster-devel] " Junxiao Bi
2021-05-10 22:15     ` Junxiao Bi
2021-05-11 12:19     ` Bob Peterson
2021-05-11 12:19       ` [Cluster-devel] " Bob Peterson
2021-05-11 12:19       ` 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=20210426220552.45413-3-junxiao.bi@oracle.com \
    --to=junxiao.bi@oracle.com \
    --cc=cluster-devel@redhat.com \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=ocfs2-devel@oss.oracle.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.