Re: [PATCH v2 0/2] 9pfs: v9fs_reclaim_fd() fixes

2025-03-18 Thread Christian Schoenebeck
On Friday, March 7, 2025 10:24:12 AM CET Christian Schoenebeck wrote: > Three fixes for 9p server's v9fs_reclaim_fd() function: > > * Patch 1 fixes a concurrency issue. > > * Patch 2 fixes a file descriptor leak and optimizes overall latency. On a > test > machine with ~800,000 FIDs, this redu

[PATCH v2 0/2] 9pfs: v9fs_reclaim_fd() fixes

2025-03-07 Thread Christian Schoenebeck
Three fixes for 9p server's v9fs_reclaim_fd() function: * Patch 1 fixes a concurrency issue. * Patch 2 fixes a file descriptor leak and optimizes overall latency. On a test machine with ~800,000 FIDs, this reduced execution duration of v9fs_reclaim_fd() from 30ms to 1ms. V2: - Patch 2: Dec