From: Waiman Long Date: Thu, 24 Aug 2017 16:04:29 +0000 (-0400) Subject: cpuset: Fix incorrect memory_pressure control file mapping X-Git-Tag: v4.12.11~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ae53897e22db8139d6ad8278599a122aba8dad7d;p=thirdparty%2Fkernel%2Fstable.git cpuset: Fix incorrect memory_pressure control file mapping commit 1c08c22c874ac88799cab1f78c40f46110274915 upstream. The memory_pressure control file was incorrectly set up without a private value (0, by default). As a result, this control file was treated like memory_migrate on read. By adding back the FILE_MEMORY_PRESSURE private value, the correct memory pressure value will be returned. Signed-off-by: Waiman Long Signed-off-by: Tejun Heo Fixes: 7dbdb199d3bf ("cgroup: replace cftype->mode with CFTYPE_WORLD_WRITABLE") Signed-off-by: Greg Kroah-Hartman --- diff --git a/kernel/cgroup/cpuset.c b/kernel/cgroup/cpuset.c index 8f26927f16a10..0e2fe5eb6c30c 100644 --- a/kernel/cgroup/cpuset.c +++ b/kernel/cgroup/cpuset.c @@ -1907,6 +1907,7 @@ static struct cftype files[] = { { .name = "memory_pressure", .read_u64 = cpuset_read_u64, + .private = FILE_MEMORY_PRESSURE, }, {