diff mbox series

nfsd: fix file memleak on client_opens_relaese

Message ID 20231110182104.23039-1-mngyadam@amazon.com (mailing list archive)
State New
Headers show
Series nfsd: fix file memleak on client_opens_relaese | expand

Commit Message

Mahmoud Adam Nov. 10, 2023, 6:21 p.m. UTC
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(-)

--
2.40.1

Comments

NeilBrown Nov. 10, 2023, 9:31 p.m. UTC | #1
On Sat, 11 Nov 2023, Mahmoud Adam wrote:
> 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>

Fixes: 78599c42ae3c ("nfsd4: add file to display list of client's opens")
Reviewed-by: NeilBrown <neilb@suse.de>

Thanks,
NeilBrown
 

> ---
>  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
>
Jeffrey Layton Nov. 10, 2023, 9:35 p.m. UTC | #2
On Fri, 2023-11-10 at 19:21 +0100, Mahmoud Adam wrote:
> 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

Reviewed-by: Jeff Layton <jlayton@kernel.org>
Chuck Lever Nov. 10, 2023, 9:55 p.m. UTC | #3
> On Nov 10, 2023, at 4:31 PM, NeilBrown <neilb@suse.de> wrote:
> 
> On Sat, 11 Nov 2023, Mahmoud Adam wrote:
>> 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>
> 
> Fixes: 78599c42ae3c ("nfsd4: add file to display list of client's opens")

Agreed, and pushed to nfsd-fixes.


> Reviewed-by: NeilBrown <neilb@suse.de>
> 
> Thanks,
> NeilBrown
> 
> 
>> ---
>> 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
>> 
> 

--
Chuck Lever
diff mbox series

Patch

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