History log of /linux/fs/fuse/req.c (Results 1 – 3 of 3)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: v7.2-rc1
# 9611c0ce 19-Jun-2026 Bartosz Golaszewski <bartosz.golaszewski@oss.qualcomm.com>

Merge commit '6beaec3aee9852438b89e4d7891caf5e84d45851' of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux into gpio/for-current

This pulls in the merge commit for MFD updates for v7.2.

Merge commit '6beaec3aee9852438b89e4d7891caf5e84d45851' of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux into gpio/for-current

This pulls in the merge commit for MFD updates for v7.2. The PR contains
a build-time dependency of one of the GPIO commits that will follow.

show more ...


# 6edc2007 18-Jun-2026 Linus Torvalds <torvalds@linux-foundation.org>

Merge tag 'fuse-update-7.2' of git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse

Pull fuse updates from Miklos Szeredi:

- Fix lots of bugs, most from the late 6.x era, but some going bac

Merge tag 'fuse-update-7.2' of git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse

Pull fuse updates from Miklos Szeredi:

- Fix lots of bugs, most from the late 6.x era, but some going back
to 2.6.x

- Add subsystems (io-uring, passthrough) and respective maintainers
(Bernd, Joanne and Amir)

- Separate transport and fs layers (Miklos)

- Don't block on cat /dev/fuse (Joanne)

- Perform some refactoring in fuse-uring (Joanne)

- Don't use bounce-buffer for READDIR reply in virtio-fs (Matthew Ochs)

- Clean up documentation (Randy)

- Improve tracing (Amir)

- Extend page cache invalidation after DIO (Cheng Ding)

- Invalidate readdir cache on epoch change (Jun Wu)

- Misc cleanups

* tag 'fuse-update-7.2' of git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse: (81 commits)
fuse-uring: clear ent->fuse_req in commit_fetch error path
fuse-uring: use named constants for io-uring iovec indices
fuse-uring: refactor setting up copy state for payload copying
fuse-uring: use enum types for header copying
fuse-uring: refactor io-uring header copying from ring
fuse-uring: refactor io-uring header copying to ring
fuse-uring: separate next request fetching from sending logic
fuse: invalidate readdir cache on epoch bump
virtio-fs: avoid double-free on failed queue setup
fuse: invalidate page cache after DIO and async DIO writes
fuse: set ff->flock only on success
fuse: clean up interrupt reading
fuse: remove stray newline in fuse_dev_do_read()
fuse: use READ_ONCE in fuse_chan_num_background()
fuse: dax: Move long delayed work on system_dfl_long_wq
fuse: add fuse_request_sent tracepoint
fuse: Add SPDX ID lines to some files
fuse: use QSTR() instead of QSTR_INIT() in fuse_get_dentry
fuse: convert page array allocation to kcalloc()
fuse: use current creds for backing files
...

show more ...


Revision tags: v7.1, v7.1-rc7, v7.1-rc6, v7.1-rc5, v7.1-rc4, v7.1-rc3, v7.1-rc2, v7.1-rc1, v7.0, v7.0-rc7
# 794e811d 30-Mar-2026 Miklos Szeredi <mszeredi@redhat.com>

fuse: split out filesystem part of request sending

Create a new source file: req.c and add the request sending entry
functions:

__fuse_simple_request()
fuse_simple_background()
fuse_simple_no

fuse: split out filesystem part of request sending

Create a new source file: req.c and add the request sending entry
functions:

__fuse_simple_request()
fuse_simple_background()
fuse_simple_notify_reply()

Introduce transport layer sending functions that are called by the
respective fs layer function:

fuse_chan_send()
fuse_chan_send_bg()
fuse_chan_send_notify_reply()

Move calculation of request header fields uid, gid and pid from
fuse_get_req() and fuse_force_creads() to a new helper: fuse_fill_creds().

These fileds are now passed to the transport layer via struct fuse_args.

Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>

show more ...