diff options
| author | Linus Torvalds <[email protected]> | 2023-11-18 19:23:32 +0000 |
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2023-11-18 19:23:32 +0000 |
| commit | bb28378af3921ea50f316d025acd1f7290873b51 (patch) | |
| tree | cc2a99a06b9e0b2a209eb09cb86acbf6d9701e06 /fs/nfsd/nfs4state.c | |
| parent | Merge tag '6.7-rc1-smb3-client-fixes' of git://git.samba.org/sfrench/cifs-2.6 (diff) | |
| parent | NFSD: Fix checksum mismatches in the duplicate reply cache (diff) | |
| download | kernel-bb28378af3921ea50f316d025acd1f7290873b51.tar.gz kernel-bb28378af3921ea50f316d025acd1f7290873b51.zip | |
Merge tag 'nfsd-6.7-1' of git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux
Pull nfsd fixes from Chuck Lever:
- Fix several long-standing bugs in the duplicate reply cache
- Fix a memory leak
* tag 'nfsd-6.7-1' of git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux:
NFSD: Fix checksum mismatches in the duplicate reply cache
NFSD: Fix "start of NFS reply" pointer passed to nfsd_cache_update()
NFSD: Update nfsd_cache_append() to use xdr_stream
nfsd: fix file memleak on client_opens_release
Diffstat (limited to 'fs/nfsd/nfs4state.c')
| -rw-r--r-- | fs/nfsd/nfs4state.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfsd/nfs4state.c b/fs/nfsd/nfs4state.c index 4045c852a450..40415929e2ae 100644 --- a/fs/nfsd/nfs4state.c +++ b/fs/nfsd/nfs4state.c @@ -2804,7 +2804,7 @@ static int client_opens_release(struct inode *inode, struct file *file) /* XXX: alternatively, we could get/drop in seq start/stop */ drop_client(clp); - return 0; + return seq_release(inode, file); } static const struct file_operations client_states_fops = { |
