Re: [PATCH v2 18/21] fuse: Implement multi-threading

2025-07-01 Thread Hanna Czenczek
On 27.06.25 03:08, Brian wrote: On 6/4/25 9:28 AM, Hanna Czenczek wrote: FUSE allows creating multiple request queues by "cloning" /dev/fuse FDs (via open("/dev/fuse") + ioctl(FUSE_DEV_IOC_CLONE)). We can use this to implement multi-threading. For configuration, we don't need any more inform

Re: [PATCH v2 18/21] fuse: Implement multi-threading

2025-06-26 Thread Brian
On 6/4/25 9:28 AM, Hanna Czenczek wrote: FUSE allows creating multiple request queues by "cloning" /dev/fuse FDs (via open("/dev/fuse") + ioctl(FUSE_DEV_IOC_CLONE)). We can use this to implement multi-threading. For configuration, we don't need any more information beyond the simple array pr

Re: [PATCH v2 18/21] fuse: Implement multi-threading

2025-06-09 Thread Stefan Hajnoczi
On Wed, Jun 04, 2025 at 03:28:10PM +0200, Hanna Czenczek wrote: > FUSE allows creating multiple request queues by "cloning" /dev/fuse FDs > (via open("/dev/fuse") + ioctl(FUSE_DEV_IOC_CLONE)). > > We can use this to implement multi-threading. > > For configuration, we don't need any more informat

[PATCH v2 18/21] fuse: Implement multi-threading

2025-06-04 Thread Hanna Czenczek
FUSE allows creating multiple request queues by "cloning" /dev/fuse FDs (via open("/dev/fuse") + ioctl(FUSE_DEV_IOC_CLONE)). We can use this to implement multi-threading. For configuration, we don't need any more information beyond the simple array provided by the core block export interface: The