]> git.baikalelectronics.ru Git - kernel.git/commit
gfs2: Fix case in which ail writes are done to jdata holes
authorBob Peterson <rpeterso@redhat.com>
Thu, 12 Nov 2020 16:02:48 +0000 (10:02 -0600)
committerAndreas Gruenbacher <agruenba@redhat.com>
Thu, 12 Nov 2020 17:55:20 +0000 (18:55 +0100)
commit65d1d5339b6cd00545931c6d7b0c51efe9db55cf
tree110850256687b7d4cb4b4d97b5bf143c370a8988
parent722668312f231f5750fd736aaf78716ca0f81485
gfs2: Fix case in which ail writes are done to jdata holes

Patch bea4b1bbb580 ("gfs2: Ignore journal log writes for jdata holes")
tried (unsuccessfully) to fix a case in which writes were done to jdata
blocks, the blocks are sent to the ail list, then a punch_hole or truncate
operation caused the blocks to be freed. In other words, the ail items
are for jdata holes. Before bea4b1bbb580, the jdata hole caused function
gfs2_block_map to return -EIO, which was eventually interpreted as an
IO error to the journal, and then withdraw.

This patch changes function gfs2_get_block_noalloc, which is only used
for jdata writes, so it returns -ENODATA rather than -EIO, and when
-ENODATA is returned to gfs2_ail1_start_one, the error is ignored.
We can safely ignore it because gfs2_ail1_start_one is only called
when the jdata pages have already been written and truncated, so the
ail1 content no longer applies.

Signed-off-by: Bob Peterson <rpeterso@redhat.com>
Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
fs/gfs2/aops.c
fs/gfs2/log.c