kselftests: cgroup: Avoid the reuse of fd after it is deallocated
authorHewenliang <hewenliang4@huawei.com>
Tue, 12 Nov 2019 02:16:55 +0000 (21:16 -0500)
committerTejun Heo <tj@kernel.org>
Tue, 12 Nov 2019 15:33:59 +0000 (07:33 -0800)
It is necessary to set fd to -1 when inotify_add_watch() fails in
cg_prepare_for_wait. Otherwise the fd which has been closed in
cg_prepare_for_wait may be misused in other functions such as
cg_enter_and_wait_for_frozen and cg_freeze_wait.

Fixes: 5313bfe425c8 ("selftests: cgroup: add freezer controller self-tests")
Signed-off-by: Hewenliang <hewenliang4@huawei.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
tools/testing/selftests/cgroup/test_freezer.c

index aadc52a..23d8fa4 100644 (file)
@@ -72,6 +72,7 @@ static int cg_prepare_for_wait(const char *cgroup)
        if (ret == -1) {
                debug("Error: inotify_add_watch() failed\n");
                close(fd);
+               fd = -1;
        }
 
        return fd;