xfs: up(ic_sema) if flushing data device fails
authorLeah Rumancik <leah.rumancik@gmail.com>
Mon, 30 Oct 2023 20:33:49 +0000 (13:33 -0700)
committerChandan Babu R <chandanbabu@kernel.org>
Mon, 13 Nov 2023 03:41:40 +0000 (09:11 +0530)
commit471de20303dda0b67981e06d59cc6c4a83fd2a3c
treee94ea170081be1a04afe6e27f072f425384c15fd
parent55f669f34184ecb25b8353f29c7f6f1ae5b313d1
xfs: up(ic_sema) if flushing data device fails

We flush the data device cache before we issue external log IO. If
the flush fails, we shut down the log immediately and return. However,
the iclog->ic_sema is left in a decremented state so let's add an up().
Prior to this patch, xfs/438 would fail consistently when running with
an external log device:

sync
  -> xfs_log_force
  -> xlog_write_iclog
      -> down(&iclog->ic_sema)
      -> blkdev_issue_flush (fail causes us to intiate shutdown)
          -> xlog_force_shutdown
          -> return

unmount
  -> xfs_log_umount
      -> xlog_wait_iclog_completion
          -> down(&iclog->ic_sema) --------> HANG

There is a second early return / shutdown. Make sure the up() happens
for it as well. Also make sure we cleanup the iclog state,
xlog_state_done_syncing, before dropping the iclog lock.

Fixes: b5d721eaae47 ("xfs: external logs need to flush data device")
Fixes: 842a42d126b4 ("xfs: shutdown on failure to add page to log bio")
Fixes: 7d839e325af2 ("xfs: check return codes when flushing block devices")
Signed-off-by: Leah Rumancik <leah.rumancik@gmail.com>
Reviewed-by: "Darrick J. Wong" <djwong@kernel.org>
Signed-off-by: Chandan Babu R <chandanbabu@kernel.org>
fs/xfs/xfs_log.c