Files
mirror_zfs/module/zfs
Shaan Nobee 9e5a297de6 Speed up WB_SYNC_NONE when a WB_SYNC_ALL occurs simultaneously
Page writebacks with WB_SYNC_NONE can take several seconds to complete
since they wait for the transaction group to close before being
committed. This is usually not a problem since the caller does not
need to wait. However, if we're simultaneously doing a writeback
with WB_SYNC_ALL (e.g via msync), the latter can block for several
seconds (up to zfs_txg_timeout) due to the active WB_SYNC_NONE
writeback since it needs to wait for the transaction to complete
and the PG_writeback bit to be cleared.

This commit deals with 2 cases:

- No page writeback is active. A WB_SYNC_ALL page writeback starts
  and even completes. But when it's about to check if the PG_writeback
  bit has been cleared, another writeback with WB_SYNC_NONE starts.
  The sync page writeback ends up waiting for the non-sync page
  writeback to complete.

- A page writeback with WB_SYNC_NONE is already active when a
  WB_SYNC_ALL writeback starts. The WB_SYNC_ALL writeback ends up
  waiting for the WB_SYNC_NONE writeback.

The fix works by carefully keeping track of active sync/non-sync
writebacks and committing when beneficial.

Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Shaan Nobee <sniper111@gmail.com>
Closes #12662
Closes #12790
2023-06-05 10:59:02 -07:00
..
2023-06-02 11:17:11 -07:00
2021-06-09 13:05:34 -07:00
2023-03-24 11:55:36 -05:00
2020-08-20 10:30:06 -07:00
2019-07-26 10:54:14 -07:00
2023-03-02 14:37:07 -08:00
2023-03-02 14:37:07 -08:00
2021-06-09 13:05:34 -07:00
2023-03-07 09:07:58 -08:00
2020-11-02 11:51:12 -08:00
2023-05-11 09:08:08 -07:00
2023-03-29 10:40:49 -07:00
2020-06-18 12:21:25 -07:00
2022-02-16 17:58:56 -08:00
2020-11-13 13:51:51 -08:00
2019-06-19 09:48:12 -07:00
2020-07-29 16:35:33 -07:00
2022-02-16 17:58:56 -08:00
2020-06-18 12:21:25 -07:00
2020-06-18 12:21:25 -07:00
2021-06-24 13:12:36 -07:00
2021-06-10 10:50:16 -07:00
2023-05-26 10:09:04 -07:00
2022-09-21 16:12:14 -07:00
2019-10-09 10:36:03 -07:00
2021-11-02 09:50:30 -07:00
2021-11-02 09:50:30 -07:00
2020-11-13 13:51:51 -08:00
2023-05-26 10:08:04 -07:00
2023-03-02 14:37:07 -08:00
2023-03-02 14:37:07 -08:00
2020-06-18 12:21:25 -07:00
2019-09-02 17:56:41 -07:00
2020-10-02 17:44:10 -07:00
2020-06-18 12:20:38 -07:00
2022-12-01 12:39:43 -08:00
2023-05-26 10:09:04 -07:00
2021-11-02 09:50:30 -07:00
2021-01-20 21:27:30 -08:00
2023-06-02 17:26:41 -07:00
2020-06-18 12:21:25 -07:00
2023-03-02 14:37:07 -08:00