]> git.karo-electronics.de Git - karo-tx-linux.git/commit
cgroup: fix an off-by-one bug which may trigger BUG_ON()
authorLi Zefan <lizefan@huawei.com>
Tue, 12 Mar 2013 22:36:00 +0000 (15:36 -0700)
committerTejun Heo <tj@kernel.org>
Tue, 12 Mar 2013 22:36:00 +0000 (15:36 -0700)
commit86b5cb4b4a68cb1b4c54fd1d68477652fc5f5136
treeceb09e8c3ec12fc98adbeec3faeb66458f26268c
parentc2c9ad164fa30d4662de2322e5dd191ac7e3921a
cgroup: fix an off-by-one bug which may trigger BUG_ON()

The 3rd parameter of flex_array_prealloc() is the number of elements,
not the index of the last element.

The effect of the bug is, when opening cgroup.procs, a flex array will
be allocated and all elements of the array is allocated with
GFP_KERNEL flag, but the last one is GFP_ATOMIC, and if we fail to
allocate memory for it, it'll trigger a BUG_ON().

Signed-off-by: Li Zefan <lizefan@huawei.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
Cc: stable@vger.kernel.org
kernel/cgroup.c