Re: [PATCH] staging: android: ion: Check for register_shrinker() failure.

2017-12-06 Thread Greg KH
On Wed, Nov 29, 2017 at 10:33:39PM +0900, Tetsuo Handa wrote: > register_shrinker() might return -ENOMEM error since Linux 3.12. > But since callers of ion_device_add_heap() are not ready to receive an > error and it is not simple enough to fix within this patch, this patch > just prints a warning

Re: [PATCH] staging: android: ion: Check for register_shrinker() failure.

2017-11-29 Thread Greg KH
On Wed, Nov 29, 2017 at 10:33:39PM +0900, Tetsuo Handa wrote: > register_shrinker() might return -ENOMEM error since Linux 3.12. > But since callers of ion_device_add_heap() are not ready to receive an > error and it is not simple enough to fix within this patch, this patch > just prints a warning

[PATCH] staging: android: ion: Check for register_shrinker() failure.

2017-11-29 Thread Tetsuo Handa
register_shrinker() might return -ENOMEM error since Linux 3.12. But since callers of ion_device_add_heap() are not ready to receive an error and it is not simple enough to fix within this patch, this patch just prints a warning line when register_shrinker() failed. Signed-off-by: Tetsuo Handa Cc