Home
last modified time | relevance | path

Searched refs:carveout_heap (Results 1 – 1 of 1) sorted by relevance

/linux-4.1.27/drivers/staging/android/ion/
Dion_carveout_heap.c38 struct ion_carveout_heap *carveout_heap = in ion_carveout_allocate() local
40 unsigned long offset = gen_pool_alloc(carveout_heap->pool, size); in ion_carveout_allocate()
51 struct ion_carveout_heap *carveout_heap = in ion_carveout_free() local
56 gen_pool_free(carveout_heap->pool, addr, size); in ion_carveout_free()
151 struct ion_carveout_heap *carveout_heap; in ion_carveout_heap_create() local
166 carveout_heap = kzalloc(sizeof(struct ion_carveout_heap), GFP_KERNEL); in ion_carveout_heap_create()
167 if (!carveout_heap) in ion_carveout_heap_create()
170 carveout_heap->pool = gen_pool_create(12, -1); in ion_carveout_heap_create()
171 if (!carveout_heap->pool) { in ion_carveout_heap_create()
172 kfree(carveout_heap); in ion_carveout_heap_create()
[all …]