diff options
author | Joakim Sindholt <opensource@zhasha.com> | 2024-03-18 12:22:32 +0100 |
---|---|---|
committer | Eric Van Hensbergen <ericvh@kernel.org> | 2024-04-12 01:40:55 +0200 |
commit | 7fd524b9bd1be210fe79035800f4bd78a41b349f (patch) | |
tree | 137526a35c8748bd4ea09c613730db1dc7625bce /fs/9p/vfs_super.c | |
parent | fs/9p: Revert "fs/9p: fix dups even in uncached mode" (diff) | |
download | linux-7fd524b9bd1be210fe79035800f4bd78a41b349f.tar.xz linux-7fd524b9bd1be210fe79035800f4bd78a41b349f.zip |
fs/9p: drop inodes immediately on non-.L too
Signed-off-by: Joakim Sindholt <opensource@zhasha.com>
Signed-off-by: Eric Van Hensbergen <ericvh@kernel.org>
Diffstat (limited to 'fs/9p/vfs_super.c')
-rw-r--r-- | fs/9p/vfs_super.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/9p/vfs_super.c b/fs/9p/vfs_super.c index eeac06c2a84c..55e67e36ae68 100644 --- a/fs/9p/vfs_super.c +++ b/fs/9p/vfs_super.c @@ -283,6 +283,7 @@ static const struct super_operations v9fs_super_ops = { .alloc_inode = v9fs_alloc_inode, .free_inode = v9fs_free_inode, .statfs = simple_statfs, + .drop_inode = v9fs_drop_inode, .evict_inode = v9fs_evict_inode, .show_options = v9fs_show_options, .umount_begin = v9fs_umount_begin, |