ion: optimize ion_heap_buffer_zero
authorColin Cross <ccross@android.com>
Mon, 25 Nov 2013 21:32:51 +0000 (13:32 -0800)
committerColin Cross <ccross@android.com>
Thu, 12 Dec 2013 23:27:09 +0000 (15:27 -0800)
commitfc04e484c319b8df647886d4cf17f7c450453d1d
treee534abf1f32f9126ef50eea84b5ecd194845b5bc
parent63ddadde39e91931890798084ef023ebab4b4a90
ion: optimize ion_heap_buffer_zero

ion_heap_buffer_zero can spend a long time in unmap_kernel_range
if it has to broadcast a tlb flush to every cpu for every page.
Modify it to batch pages into a larger region to clear using a
single mapping.  This may cause the mapping size to change if
the buffer size is not a multiple of the mapping size, so
switch to allocating the address space for each chunk.  This
allows us to use vm_map_ram to handle the allocation and mapping
together.

The number of pages to zero using a single mapping is set to 32
to hit the fastpath in vm_map_ram.

Change-Id: I1accfe67b285cbc9e95e387bea4246864197827d
Signed-off-by: Colin Cross <ccross@android.com>
drivers/staging/android/ion/ion_heap.c