linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: [PATCH v2] afs: Fix memory leak in afs_put_sysnames()
@ 2020-06-01 14:40 Markus Elfring
  2020-06-01 17:08 ` David Howells
  0 siblings, 1 reply; 6+ messages in thread
From: Markus Elfring @ 2020-06-01 14:40 UTC (permalink / raw)
  To: Zhihao Cheng, linux-afs, linux-fsdevel
  Cc: linux-kernel, David Howells, Yi Zhang

> sysnames should be freed after refcnt being decreased to zero in
> afs_put_sysnames().

How do you think about a wording variant like the following?

   Release the sysnames object after its reference counter was decreased
   to zero.


Will it matter to mention the size of the data structure "afs_sysnames"?

Regards,
Markus

^ permalink raw reply	[flat|nested] 6+ messages in thread
* [PATCH v2] afs: Fix memory leak in afs_put_sysnames()
@ 2020-06-01 13:27 Zhihao Cheng
  0 siblings, 0 replies; 6+ messages in thread
From: Zhihao Cheng @ 2020-06-01 13:27 UTC (permalink / raw)
  To: linux-afs, linux-fsdevel, linux-kernel; +Cc: dhowells, yi.zhang

sysnames should be freed after refcnt being decreased to zero in
afs_put_sysnames().

Signed-off-by: Zhihao Cheng <chengzhihao1@huawei.com>
Cc: <Stable@vger.kernel.org> # v4.17+
Fixes: 6f8880d8e681557 ("afs: Implement @sys substitution handling")
---
 fs/afs/proc.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/fs/afs/proc.c b/fs/afs/proc.c
index 468e1713bce1..6f34c84a0fd0 100644
--- a/fs/afs/proc.c
+++ b/fs/afs/proc.c
@@ -563,6 +563,7 @@ void afs_put_sysnames(struct afs_sysnames *sysnames)
 			if (sysnames->subs[i] != afs_init_sysname &&
 			    sysnames->subs[i] != sysnames->blank)
 				kfree(sysnames->subs[i]);
+		kfree(sysnames);
 	}
 }
 
-- 
2.25.4


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

end of thread, other threads:[~2020-06-02  5:51 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-01 14:40 [PATCH v2] afs: Fix memory leak in afs_put_sysnames() Markus Elfring
2020-06-01 17:08 ` David Howells
2020-06-01 18:04   ` [v2] " Markus Elfring
2020-06-01 18:52   ` David Howells
2020-06-02  5:51     ` Markus Elfring
  -- strict thread matches above, loose matches on Subject: below --
2020-06-01 13:27 [PATCH v2] " Zhihao Cheng

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).