gpu: ion: several bugfixes and enhancements of ION
authorKyongHo Cho <pullip.cho@samsung.com>
Wed, 7 Sep 2011 02:27:07 +0000 (11:27 +0900)
committerArve Hjønnevåg <arve@android.com>
Mon, 1 Jul 2013 20:40:46 +0000 (13:40 -0700)
commitbae1a85e33216aea3b6a307df367cef41b58bad1
tree81b44038387229b65a45d66d52ea68f5a9fd60c6
parent4654918605feb8d235728b0aecdae1e7eb1b6d02
gpu: ion: several bugfixes and enhancements of ION

1. Verifying if the size of memory allocation in ion_alloc() is aligned
by PAGE_SIZE at least. If it is not, this change makes the size to be
aligned by PAGE_SIZE.

2. Unmaps all mappings to the kernel and DMA address spaces when
destroying ion_buffer in ion_buffer_destroy(). This prevents leaks in
those virtual address spaces.

3. Makes the return value of ion_alloc() to be explicit Linux error code
when it fails to allocate a buffer.

4. Makes ion_alloc() implementation simpler. Removes 'goto' statement and
relavant call to ion_buffer_put().

5. Checks if the task is valid before calling put_task_struct() due
to failure on creating a ion client in ion_client_create().

6. Returns error when buffer allocation requested by userspace is failed.

Change-Id: I4fa9859f4a0b665fcb44e5c0da43c569732e93ae
Signed-off-by: KyongHo Cho <pullip.cho@samsung.com>
drivers/gpu/ion/ion.c