@@ -242,8 +242,12 @@ __releases(fiq->lock)
void fuse_queue_forget(struct fuse_conn *fc, u64 nodeid, u64 nlookup)
{
struct fuse_iqueue *fiq = &fc->iq;
- struct fuse_forget_link *forget = fuse_alloc_forget();
+ struct fuse_forget_link *forget;
+ if (fc->no_forget)
+ return;
+
+ forget = fuse_alloc_forget();
forget->forget_one.nodeid = nodeid;
forget->forget_one.nlookup = nlookup;
@@ -236,9 +236,7 @@ static int fuse_dentry_revalidate(struct dentry *entry, unsigned int flags)
fuse_queue_forget(fm->fc, outarg.nodeid, 1);
goto invalid;
}
- spin_lock(&fi->lock);
- fi->nlookup++;
- spin_unlock(&fi->lock);
+ fuse_inc_nlookup(fm->fc, fi);
}
if (ret == -ENOMEM || ret == -EINTR)
goto out;
@@ -854,6 +854,9 @@ struct fuse_conn {
/** Passthrough support for read/write IO */
unsigned int passthrough:1;
+ /** Is forget not implemented by fs? */
+ unsigned int no_forget:1;
+
/** Maximum stack depth for passthrough backing files */
int max_stack_depth;
@@ -1023,6 +1026,26 @@ static inline void fuse_sync_bucket_dec(struct fuse_sync_bucket *bucket)
rcu_read_unlock();
}
+static inline void fuse_inc_nlookup(struct fuse_conn *fc, struct fuse_inode *fi)
+{
+ if (fc->no_forget)
+ return;
+
+ spin_lock(&fi->lock);
+ fi->nlookup++;
+ spin_lock(&fi->lock);
+}
+
+static inline void fuse_dec_nlookup(struct fuse_conn *fc, struct fuse_inode *fi)
+{
+ if (fc->no_forget)
+ return;
+
+ spin_lock(&fi->lock);
+ fi->nlookup--;
+ spin_lock(&fi->lock);
+}
+
/** Device operations */
extern const struct file_operations fuse_dev_operations;
@@ -458,9 +458,7 @@ struct inode *fuse_iget(struct super_block *sb, u64 nodeid,
}
}
fi = get_fuse_inode(inode);
- spin_lock(&fi->lock);
- fi->nlookup++;
- spin_unlock(&fi->lock);
+ fuse_inc_nlookup(fc, fi);
done:
fuse_change_attributes(inode, attr, NULL, attr_valid, attr_version);
@@ -1306,6 +1304,8 @@ static void process_init_reply(struct fuse_mount *fm, struct fuse_args *args,
}
if (flags & FUSE_NO_EXPORT_SUPPORT)
fm->sb->s_export_op = &fuse_export_fid_operations;
+ if (flags & FUSE_NO_FORGET_SUPPORT)
+ fc->no_forget = 1;
} else {
ra_pages = fc->max_read / PAGE_SIZE;
fc->no_lock = 1;
@@ -1353,7 +1353,7 @@ void fuse_send_init(struct fuse_mount *fm)
FUSE_HANDLE_KILLPRIV_V2 | FUSE_SETXATTR_EXT | FUSE_INIT_EXT |
FUSE_SECURITY_CTX | FUSE_CREATE_SUPP_GROUP |
FUSE_HAS_EXPIRE_ONLY | FUSE_DIRECT_IO_ALLOW_MMAP |
- FUSE_NO_EXPORT_SUPPORT | FUSE_HAS_RESEND;
+ FUSE_NO_EXPORT_SUPPORT | FUSE_HAS_RESEND | FUSE_NO_FORGET_SUPPORT;
#ifdef CONFIG_FUSE_DAX
if (fm->fc->dax)
flags |= FUSE_MAP_ALIGNMENT;
@@ -1568,7 +1568,7 @@ static int fuse_fill_super_submount(struct super_block *sb,
* that, though, so undo it here.
*/
fi = get_fuse_inode(root);
- fi->nlookup--;
+ fuse_dec_nlookup(fm->fc, fi);
sb->s_d_op = &fuse_dentry_operations;
sb->s_root = d_make_root(root);
@@ -218,9 +218,7 @@ static int fuse_direntplus_link(struct file *file,
}
fi = get_fuse_inode(inode);
- spin_lock(&fi->lock);
- fi->nlookup++;
- spin_unlock(&fi->lock);
+ fuse_inc_nlookup(fc, fi);
forget_all_cached_acls(inode);
fuse_change_attributes(inode, &o->attr, NULL,
@@ -247,9 +245,7 @@ static int fuse_direntplus_link(struct file *file,
if (!IS_ERR(inode)) {
struct fuse_inode *fi = get_fuse_inode(inode);
- spin_lock(&fi->lock);
- fi->nlookup--;
- spin_unlock(&fi->lock);
+ fuse_dec_nlookup(fc, fi);
}
return PTR_ERR(dentry);
}
@@ -217,6 +217,7 @@
* - add backing_id to fuse_open_out, add FOPEN_PASSTHROUGH open flag
* - add FUSE_NO_EXPORT_SUPPORT init flag
* - add FUSE_NOTIFY_RESEND, add FUSE_HAS_RESEND init flag
+ * - add FUSE_NO_FORGET_SUPPORT init flag
*/
#ifndef _LINUX_FUSE_H
@@ -421,6 +422,7 @@ struct fuse_file_lock {
* FUSE_NO_EXPORT_SUPPORT: explicitly disable export support
* FUSE_HAS_RESEND: kernel supports resending pending requests, and the high bit
* of the request ID indicates resend requests
+ * FUSE_NO_FORGET_SUPPORT: disable forget requests
*/
#define FUSE_ASYNC_READ (1 << 0)
#define FUSE_POSIX_LOCKS (1 << 1)
@@ -463,6 +465,7 @@ struct fuse_file_lock {
#define FUSE_PASSTHROUGH (1ULL << 37)
#define FUSE_NO_EXPORT_SUPPORT (1ULL << 38)
#define FUSE_HAS_RESEND (1ULL << 39)
+#define FUSE_NO_FORGET_SUPPORT (1ULL << 40)
/* Obsolete alias for FUSE_DIRECT_IO_ALLOW_MMAP */
#define FUSE_DIRECT_IO_RELAX FUSE_DIRECT_IO_ALLOW_MMAP
FUSE_FORGET requests are not used if the fuse file system does not implement the forget operation in userspace (e.g., fuse file system does not cache any inodes). However, the kernel is invisible to the userspace implementation and always sends FUSE_FORGET requests, which can lead to performance degradation because of useless contex switch and memory copy in some cases (e.g., many inodes are evicted from icache which was described in commit 07e77dca8a1f ("fuse: separate queue for FORGET requests")). Just like 'no_interrupt' in 'struct fuse_conn', we add 'no_forget'. But since FUSE_FORGET request does not have a reply from userspace, we can not use ENOSYS to reflect the 'no_forget' assignment. So add the FUSE_NO_FORGET_SUPPORT init flag. Besides, if no_forget is enabled, 'nlookup' in 'struct fuse_inode' does not used and its value change can be disabled which are protected by spin_lock to reduce lock contention. Signed-off-by: yangyun <yangyun50@huawei.com> --- fs/fuse/dev.c | 6 +++++- fs/fuse/dir.c | 4 +--- fs/fuse/fuse_i.h | 23 +++++++++++++++++++++++ fs/fuse/inode.c | 10 +++++----- fs/fuse/readdir.c | 8 ++------ include/uapi/linux/fuse.h | 3 +++ 6 files changed, 39 insertions(+), 15 deletions(-)