[PATCH v2 0/2] fuse: add no forget support

yangyun posted 2 patches 1 year, 3 months ago
There is a newer version of this series
fs/fuse/dev.c             | 14 +++++++--
fs/fuse/dir.c             | 63 +++++++++------------------------------
fs/fuse/fuse_i.h          | 34 ++++++++++++++-------
fs/fuse/inode.c           | 43 ++++++--------------------
fs/fuse/readdir.c         | 37 +++++------------------
include/uapi/linux/fuse.h |  3 ++
6 files changed, 70 insertions(+), 124 deletions(-)
[PATCH v2 0/2] fuse: add no forget support
Posted by yangyun 1 year, 3 months ago
FUSE_FORGET requests are not used in some cases (e.g., juicefs) but have 
an impact on the system. So add no forget support.

---

v1: 
https://lore.kernel.org/linux-fsdevel/20240726083752.302301-1-yangyun50@huawei.com/

Changes from v1->v2:
- Still use fuse_queue_forget in patch 1 (Miklos)
- Simplify function name in patch 2 (Josef)

yangyun (2):
  fuse: move fuse_forget_link allocation inside fuse_queue_forget()
  fuse: add support for no forget requests

 fs/fuse/dev.c             | 14 +++++++--
 fs/fuse/dir.c             | 63 +++++++++------------------------------
 fs/fuse/fuse_i.h          | 34 ++++++++++++++-------
 fs/fuse/inode.c           | 43 ++++++--------------------
 fs/fuse/readdir.c         | 37 +++++------------------
 include/uapi/linux/fuse.h |  3 ++
 6 files changed, 70 insertions(+), 124 deletions(-)

-- 
2.33.0
Re: [PATCH v2 0/2] fuse: add no forget support
Posted by Miklos Szeredi 1 year, 3 months ago
On Sat, 24 Aug 2024 at 11:26, yangyun <yangyun50@huawei.com> wrote:
>
> FUSE_FORGET requests are not used in some cases (e.g., juicefs) but have
> an impact on the system. So add no forget support.

Applied, thanks.

Miklos