diff options
author | Hangyu Hua <hbh25y@gmail.com> | 2022-07-15 14:23:01 +0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2022-10-24 09:58:02 +0200 |
commit | a1f321051e0dcf2415fb94f81fdc5044cad4c1d6 (patch) | |
tree | 3a1c868bfdeffc0b53f4b7c9d267033e93b16ee3 | |
parent | 908bfb4f5ff88dc1a85820110a38e6ba9082ff2b (diff) | |
download | linux-stable-a1f321051e0dcf2415fb94f81fdc5044cad4c1d6.tar.gz linux-stable-a1f321051e0dcf2415fb94f81fdc5044cad4c1d6.tar.bz2 linux-stable-a1f321051e0dcf2415fb94f81fdc5044cad4c1d6.zip |
ipc: mqueue: fix possible memory leak in init_mqueue_fs()
[ Upstream commit c579d60f0d0cd87552f64fdebe68b5d941d20309 ]
commit db7cfc380900 ("ipc: Free mq_sysctls if ipc namespace creation
failed")
Here's a similar memory leak to the one fixed by the patch above.
retire_mq_sysctls need to be called when init_mqueue_fs fails after
setup_mq_sysctls.
Fixes: dc55e35f9e81 ("ipc: Store mqueue sysctls in the ipc namespace")
Signed-off-by: Hangyu Hua <hbh25y@gmail.com>
Link: https://lkml.kernel.org/r/20220715062301.19311-1-hbh25y@gmail.com
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
-rw-r--r-- | ipc/mqueue.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ipc/mqueue.c b/ipc/mqueue.c index 12ad7860bb88..83370fef8879 100644 --- a/ipc/mqueue.c +++ b/ipc/mqueue.c @@ -1746,6 +1746,7 @@ out_filesystem: unregister_filesystem(&mqueue_fs_type); out_sysctl: kmem_cache_destroy(mqueue_inode_cachep); + retire_mq_sysctls(&init_ipc_ns); return error; } |