Linux NFS development
 help / color / mirror / Atom feed
* [PATCH] nfsd: fix file memleak on client_opens_relaese
@ 2023-11-10 18:21 Mahmoud Adam
  2023-11-10 21:31 ` NeilBrown
  2023-11-10 21:35 ` Jeff Layton
  0 siblings, 2 replies; 4+ messages in thread
From: Mahmoud Adam @ 2023-11-10 18:21 UTC (permalink / raw)
  To: chuck.lever, jlayton; +Cc: neilb, kolga, Dai.Ngo, tom, linux-nfs, Mahmoud Adam

seq_release should be called to free the allocated seq_file

Cc: stable@vger.kernel.org # v5.3+
Signed-off-by: Mahmoud Adam <mngyadam@amazon.com>
---
 fs/nfsd/nfs4state.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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 = {
--
2.40.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-11-10 21:56 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-10 18:21 [PATCH] nfsd: fix file memleak on client_opens_relaese Mahmoud Adam
2023-11-10 21:31 ` NeilBrown
2023-11-10 21:55   ` Chuck Lever III
2023-11-10 21:35 ` Jeff Layton

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox