diff mbox series

[v3,3/3] tst_cgroup: make use of alias in safe_cgroup_has

Message ID 20210623062456.430406-3-liwang@redhat.com
State Accepted
Headers show
Series [v3,1/3] mem: child alloc memory should larger than memory.max + memory.swap.max if lite==1 | expand

Commit Message

Li Wang June 23, 2021, 6:24 a.m. UTC
This is to fix the check issue of 'memory.swap.max' on CGroup v1.

Reviewed-by: Richard Palethorpe <rpalethorpe@suse.com>
Signed-off-by: Li Wang <liwang@redhat.com>
---
 lib/tst_cgroup.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/lib/tst_cgroup.c b/lib/tst_cgroup.c
index 18e3b6169..61cc02fa7 100644
--- a/lib/tst_cgroup.c
+++ b/lib/tst_cgroup.c
@@ -1010,7 +1010,7 @@  int safe_cgroup_has(const char *const file, const int lineno,
 		if (!(alias = cgroup_file_alias(cfile, *dir)))
 		    continue;
 
-		if (!faccessat((*dir)->dir_fd, file_name, F_OK, 0))
+		if (!faccessat((*dir)->dir_fd, alias, F_OK, 0))
 			return 1;
 
 		if (errno == ENOENT)