vmalloc: fix use of non-existent percpu variable in put_cpu_var()
authorTejun Heo <tj@kernel.org>
Thu, 29 Oct 2009 13:34:12 +0000 (22:34 +0900)
committerTejun Heo <tj@kernel.org>
Thu, 29 Oct 2009 13:34:12 +0000 (22:34 +0900)
commit3f04ba859597412afbfb31f2fcbe289f2461f9a1
tree63ee0a7423f94a109e630de7aca06b32c075acd0
parentdec54bf538326a1503dd780c9f2811f495af95c5
vmalloc: fix use of non-existent percpu variable in put_cpu_var()

vmalloc used non-existent percpu variable vmap_cpu_blocks instead of
the intended vmap_block_queue.  This went unnoticed because
put_cpu_var() didn't evaluate the parameter.  Fix it.

Signed-off-by: Tejun Heo <tj@kernel.org>
Cc: Nick Piggin <npiggin@suse.de>
mm/vmalloc.c