The patch 971ff4935538: "cgroup: use a per-cgroup work for release
agent" from Sep 18, 2014, leads to the following static checker
warning:

        kernel/cgroup.c:5310 cgroup_release_agent()
        warn: 'mutex:&cgroup_mutex' is sometimes locked here and sometimes 
unlocked.

Reported-by: Dan Carpenter <dan.carpen...@oracle.com>
Signed-off-by: Zefan Li <lize...@huawei.com>
---
 kernel/cgroup.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/kernel/cgroup.c b/kernel/cgroup.c
index 7f23551..33f15b3 100644
--- a/kernel/cgroup.c
+++ b/kernel/cgroup.c
@@ -5290,7 +5290,10 @@ static void cgroup_release_agent(struct work_struct 
*work)
 
        mutex_unlock(&cgroup_mutex);
        call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
+       goto out_free;
 out:
+       mutex_unlock(&cgroup_mutex);
+out_free:
        kfree(agentbuf);
        kfree(pathbuf);
 }
-- 
1.8.0.2

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to