On 1/7/25 00:25, Bernd Schubert wrote:
This prepares queueing and sending background requests through io-uring.
Reviewed-by: Pavel Begunkov <asml.silence@xxxxxxxxx> # io_uring
Signed-off-by: Bernd Schubert <bschubert@xxxxxxx> --- fs/fuse/dev.c | 24 ++++++++++++- fs/fuse/dev_uring.c | 99 +++++++++++++++++++++++++++++++++++++++++++++++++++ fs/fuse/dev_uring_i.h | 12 +++++++ 3 files changed, 134 insertions(+), 1 deletion(-) diff --git a/fs/fuse/dev.c b/fs/fuse/dev.c index ecf2f805f456222fda02598397beba41fc356460..afafa960d4725d9b64b22f17bf09c846219396d6 100644 --- a/fs/fuse/dev.c +++ b/fs/fuse/dev.c
-- Pavel Begunkov