staging: android: ion: return -ENOMEM in ion_cma_heap allocation failure
authorJaewon Kim <jaewon31.kim@samsung.com>
Fri, 9 Dec 2016 05:05:30 +0000 (14:05 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 3 Jan 2017 14:22:30 +0000 (15:22 +0100)
commitaacd178373413163d051d75c0fcabe65bcc74cea
tree380caf285dbf1caecbcfaaac3cdb38c0c4597bea
parente795491822c4c5bbb2c0d016676f5648d78cacb0
staging: android: ion: return -ENOMEM in ion_cma_heap allocation failure

Initial Commit 349c9e138551 ("gpu: ion: add CMA heap") returns -1 in allocation
failure. The returned value is passed up to userspace through ioctl. So user can
misunderstand error reason as -EPERM(1) rather than -ENOMEM(12).

This patch simply changed this to return -ENOMEM.

Signed-off-by: Jaewon Kim <jaewon31.kim@samsung.com>
Acked-by: Laura Abbott <labbott@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/android/ion/ion_cma_heap.c