From mboxrd@z Thu Jan 1 00:00:00 1970 From: Junxiao Bi Date: Wed, 28 Apr 2021 09:02:13 -0700 Subject: [Cluster-devel] [PATCH 3/3] gfs2: fix out of inode size writeback In-Reply-To: <20210426220552.45413-3-junxiao.bi@oracle.com> References: <20210426220552.45413-1-junxiao.bi@oracle.com> <20210426220552.45413-3-junxiao.bi@oracle.com> Message-ID: <3d364174-53dd-ee07-ac3a-6ea57878f8d8@oracle.com> List-Id: To: cluster-devel.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Hi Bob & Andreas, Can you help review this patch? Thanks, Junxiao. On 4/26/21 3:05 PM, Junxiao Bi wrote: > Dirty flag of buffers out of inode size will be cleared and will not > be writeback. > > Cc: > Signed-off-by: Junxiao Bi > --- > 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); > } > > /**