diff options
author | Bernd Schubert <bschubert@ddn.com> | 2025-05-28 15:13:47 +0200 |
---|---|---|
committer | Bernd Schubert <bernd@bsbernd.com> | 2025-08-22 23:07:24 +0200 |
commit | d52ae4f9d44d7e08375bfacac0bc7cc02ad1b54b (patch) | |
tree | 4a0e084061d7e5305c4eee54ce062118eeda3854 /lib/fuse_versionscript | |
parent | 253ea916fd5122e1c182cb3ffbff1ac2eeea3991 (diff) | |
download | libfuse-d52ae4f9d44d7e08375bfacac0bc7cc02ad1b54b.tar.gz |
Allow applications to retrieve the req payload (io-uring only)
With io-uring the req owns the payload buffer, the application
can directly access it and copy data into it.
fuse_buf_copy_one() already has a check for dstmem == srcmem
and skips data copies.
fuse_reply_data
fuse_reply_data_uring
fuse_buf_copy
fuse_buf_copy_one
Signed-off-by: Bernd Schubert <bschubert@ddn.com>
Diffstat (limited to 'lib/fuse_versionscript')
-rw-r--r-- | lib/fuse_versionscript | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/fuse_versionscript b/lib/fuse_versionscript index 0e581f1..2feafcf 100644 --- a/lib/fuse_versionscript +++ b/lib/fuse_versionscript @@ -205,6 +205,7 @@ FUSE_3.17 { FUSE_3.18 { global: fuse_req_is_uring; + fuse_req_get_payload; fuse_set_feature_flag; fuse_unset_feature_flag; fuse_get_feature_flag; |