Re: [PATCH 12/15] fuse: Reduce max read size

2025-03-27 Thread Stefan Hajnoczi
On Tue, Mar 25, 2025 at 05:06:52PM +0100, Hanna Czenczek wrote: > We are going to introduce parallel processing via coroutines, a maximum > read size of 64 MB may be problematic, allowing users of the export to > force us to allocate quite large amounts of memory with just a few > requests. > > At

[PATCH 12/15] fuse: Reduce max read size

2025-03-25 Thread Hanna Czenczek
We are going to introduce parallel processing via coroutines, a maximum read size of 64 MB may be problematic, allowing users of the export to force us to allocate quite large amounts of memory with just a few requests. At least tone it down to 1 MB, which is still probably far more than enough.