]> git.karo-electronics.de Git - karo-tx-linux.git/commit
mm: add vm_area_add_early()
authorNicolas Pitre <nicolas.pitre@linaro.org>
Tue, 8 Nov 2011 00:20:15 +0000 (11:20 +1100)
committerStephen Rothwell <sfr@canb.auug.org.au>
Wed, 9 Nov 2011 02:10:17 +0000 (13:10 +1100)
commit0371681c8832c0ee14feb433be5816dc71794ce6
treeca3f49dadb994e22a6307c440f5df58bb2bd2a7f
parent4914a426304c5a903db2919231284e76533a11f2
mm: add vm_area_add_early()

The existing vm_area_register_early() allows for early vmalloc space
allocation.  However upcoming cleanups in the ARM architecture require
that some fixed locations in the vmalloc area be reserved also very early.

The name "vm_area_register_early" would have been a good name for the
reservation part without the allocation.  Since it is already in use with

Both vm_area_register_early() and vm_area_add_early() can be used together
meaning that the former is now implemented using the later where it is
ensured that no conflicting areas are added, but no attempt is made to
make the allocation scheme in vm_area_register_early() more sophisticated.
After all, you must know what you're doing when using those functions.

Signed-off-by: Nicolas Pitre <nicolas.pitre@linaro.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
include/linux/vmalloc.h
mm/vmalloc.c