Message ID | 20210331083602.2089030-1-yangyingliang@huawei.com (mailing list archive) |
---|---|
State | Accepted |
Commit | ac1db7acea67777be1ba86e36e058c479eab6508 |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [-next] net/tipc: fix missing destroy_workqueue() on error in tipc_crypto_start() | expand |
Context | Check | Description |
---|---|---|
netdev/cover_letter | success | Link |
netdev/fixes_present | success | Link |
netdev/patch_count | success | Link |
netdev/tree_selection | success | Guessed tree name to be net-next |
netdev/subject_prefix | warning | Target tree name not specified in the subject |
netdev/cc_maintainers | fail | 2 blamed authors not CCed: tuong.t.lien@dektech.com.au jmaloy@redhat.com; 4 maintainers not CCed: tuong.t.lien@dektech.com.au ying.xue@windriver.com jmaloy@redhat.com kuba@kernel.org |
netdev/source_inline | success | Was 0 now: 0 |
netdev/verify_signedoff | success | Link |
netdev/module_param | success | Was 0 now: 0 |
netdev/build_32bit | success | Errors and warnings before: 0 this patch: 0 |
netdev/kdoc | success | Errors and warnings before: 0 this patch: 0 |
netdev/verify_fixes | success | Link |
netdev/checkpatch | success | total: 0 errors, 0 warnings, 0 checks, 8 lines checked |
netdev/build_allmodconfig_warn | success | Errors and warnings before: 0 this patch: 0 |
netdev/header_inline | success | Link |
Hello: This patch was applied to netdev/net-next.git (refs/heads/master): On Wed, 31 Mar 2021 16:36:02 +0800 you wrote: > Add the missing destroy_workqueue() before return from > tipc_crypto_start() in the error handling case. > > Fixes: 1ef6f7c9390f ("tipc: add automatic session key exchange") > Reported-by: Hulk Robot <hulkci@huawei.com> > Signed-off-by: Yang Yingliang <yangyingliang@huawei.com> > > [...] Here is the summary with links: - [-next] net/tipc: fix missing destroy_workqueue() on error in tipc_crypto_start() https://git.kernel.org/netdev/net-next/c/ac1db7acea67 You are awesome, thank you! -- Deet-doot-dot, I am a bot. https://korg.docs.kernel.org/patchwork/pwbot.html
diff --git a/net/tipc/crypto.c b/net/tipc/crypto.c index 6f64acef73dc..76b8428c94a7 100644 --- a/net/tipc/crypto.c +++ b/net/tipc/crypto.c @@ -1492,6 +1492,8 @@ int tipc_crypto_start(struct tipc_crypto **crypto, struct net *net, /* Allocate statistic structure */ c->stats = alloc_percpu_gfp(struct tipc_crypto_stats, GFP_ATOMIC); if (!c->stats) { + if (c->wq) + destroy_workqueue(c->wq); kfree_sensitive(c); return -ENOMEM; }
Add the missing destroy_workqueue() before return from tipc_crypto_start() in the error handling case. Fixes: 1ef6f7c9390f ("tipc: add automatic session key exchange") Reported-by: Hulk Robot <hulkci@huawei.com> Signed-off-by: Yang Yingliang <yangyingliang@huawei.com> --- net/tipc/crypto.c | 2 ++ 1 file changed, 2 insertions(+)