percpu: make pcpu_alloc_chunk() use pcpu_mem_free() instead of kfree()
authorJianyu Zhan <nasa4836@gmail.com>
Mon, 14 Apr 2014 05:47:40 +0000 (13:47 +0800)
committerJiri Slaby <jslaby@suse.cz>
Mon, 9 Jun 2014 13:53:39 +0000 (15:53 +0200)
commitad7a831e71fa8d469536bb7548a87a769eba4be6
tree1d276044b16c84cace98044869618085509e5deb
parent98c8a2e7a0a9de304203cfd722ce31053391f922
percpu: make pcpu_alloc_chunk() use pcpu_mem_free() instead of kfree()

commit 5a838c3b60e3a36ade764cf7751b8f17d7c9c2da upstream.

pcpu_chunk_struct_size = sizeof(struct pcpu_chunk) +
BITS_TO_LONGS(pcpu_unit_pages) * sizeof(unsigned long)

It hardly could be ever bigger than PAGE_SIZE even for large-scale machine,
but for consistency with its couterpart pcpu_mem_zalloc(),
use pcpu_mem_free() instead.

Commit b4916cb17c26 ("percpu: make pcpu_free_chunk() use
pcpu_mem_free() instead of kfree()") addressed this problem, but
missed this one.

tj: commit message updated

Signed-off-by: Jianyu Zhan <nasa4836@gmail.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
Fixes: 099a19d91ca4 ("percpu: allow limited allocation before slab is online)
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
mm/percpu.c