Re: [PATCH v14 1/4] cgroup: fix uninitialised iterator in for_each_subsys_which

2015-06-09 Thread Tejun Heo
On Tue, Jun 09, 2015 at 09:32:07PM +1000, Aleksa Sarai wrote: > Fix the fact that @ssid is uninitialised in the case where > CGROUP_SUBSYS_COUNT = 0 by setting ssid to 0. > > Fixes: cb4a31675270 ("cgroup: use bitmask to filter for_each_subsys") > Signed-off-by: Aleksa Sarai Applied to cgroup/for

[PATCH v14 1/4] cgroup: fix uninitialised iterator in for_each_subsys_which

2015-06-09 Thread Aleksa Sarai
Fix the fact that @ssid is uninitialised in the case where CGROUP_SUBSYS_COUNT = 0 by setting ssid to 0. Fixes: cb4a31675270 ("cgroup: use bitmask to filter for_each_subsys") Signed-off-by: Aleksa Sarai --- kernel/cgroup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kerne