Re: [PATCH RFC 04/29] fsverity: add per-sb workqueue for post read processing
From: Christoph Hellwig
Date: Mon Aug 11 2025 - 07:45:39 EST
On Mon, Jul 28, 2025 at 10:30:08PM +0200, Andrey Albershteyn wrote:
> From: Andrey Albershteyn <aalbersh@xxxxxxxxxx>
>
> For XFS, fsverity's global workqueue is not really suitable due to:
>
> 1. High priority workqueues are used within XFS to ensure that data
> IO completion cannot stall processing of journal IO completions.
> Hence using a WQ_HIGHPRI workqueue directly in the user data IO
> path is a potential filesystem livelock/deadlock vector.
Do they? I though the whole point of WQ_HIGHPRI was that they'd
have separate rescue workers to avoid any global pool effects.
> 2. The fsverity workqueue is global - it creates a cross-filesystem
> contention point.
How does this not affect the other file systems?
If the global workqueue is such an issue, maybe it should be addressed
in an initial series before the xfs support?