On Sat, Dec 21, 2024 at 05:18:20PM +0100, David Hildenbrand wrote: [...] > > Yes, so I can see fuse > > (1) Breaking memory reclaim (memory cannot get freed up) > > (2) Breaking page migration (memory cannot be migrated) > > Due to (1) we might experience bigger memory pressure in the system I guess. > A handful of these pages don't really hurt, I have no idea how bad having > many of these pages can be. But yes, inherently we cannot throw away the > data as long as it is dirty without causing harm. (maybe we could move it to > some other cache, like swap/zswap; but that smells like a big and > complicated project) > > Due to (2) we turn pages that are supposed to be movable possibly for a long > time unmovable. Even a *single* such page will mean that CMA allocations / > memory unplug can start failing. > > We have similar situations with page pinning. With things like O_DIRECT, our > assumption/experience so far is that it will only take a couple of seconds > max, and retry loops are sufficient to handle it. That's why only long-term > pinning ("indeterminate", e.g., vfio) migrate these pages out of > ZONE_MOVABLE/MIGRATE_CMA areas in order to long-term pin them. > > > The biggest concern I have is that timeouts, while likely reasonable it many > scenarios, might not be desirable even for some sane workloads, and the > default in all system will be "no timeout", letting the clueless admin of > each and every system out there that might support fuse to make a decision. > > I might have misunderstood something, in which case I am very sorry, but we > also don't want CMA allocations to start failing simply because a network > connection is down for a couple of minutes such that a fuse daemon cannot > make progress. > I think you have valid concerns but these are not new and not unique to fuse. Any filesystem with a potential arbitrary stall can have similar issues. The arbitrary stall can be caused due to network issues or some faultly local storage. Regarding the reclaim, I wouldn't say fuse or similar filesystem are breaking memory reclaim as the kernel has mechanism to throttle the threads dirtying the file memory to reduce the chance of situations where most of memory becomes unreclaimable due to being dirty. Please note that such filesystems are mostly used in environments like data center or hyperscalar and usually have more advanced mechanisms to handle and avoid situations like long delays. For such environment network unavailability is a larger issue than some cma allocation failure. My point is: let's not assume the disastrous situaion is normal and overcomplicate the solution.