Re: [PATCH] cpumask: Remove error message and backtrace on out-of-memory condition

2019-05-28 Thread Andrew Morton
On Mon, 27 May 2019 14:29:58 +0200 Geert Uytterhoeven wrote: > There is no need to print an error message and backtrace if > kmalloc_node() fails, as the memory allocation core already takes care > of that. > > ... > > --- a/lib/cpumask.c > +++ b/lib/cpumask.c > @@ -114,13 +114,6 @@ bool alloc_

[PATCH] cpumask: Remove error message and backtrace on out-of-memory condition

2019-05-27 Thread Geert Uytterhoeven
There is no need to print an error message and backtrace if kmalloc_node() fails, as the memory allocation core already takes care of that. Signed-off-by: Geert Uytterhoeven --- lib/cpumask.c | 7 --- 1 file changed, 7 deletions(-) diff --git a/lib/cpumask.c b/lib/cpumask.c index 0cb672eb10