Re: [PATCH] Staging: rtl8723bs: core: Replace rtw_malloc with kmalloc

2019-04-19 Thread Greg Kroah-Hartman
On Fri, Apr 19, 2019 at 07:02:47PM +0530, Bhanusree Mahesh wrote: > On Fri, 19 Apr 2019 at 16:52, Greg Kroah-Hartman > wrote: > > > > On Fri, Apr 19, 2019 at 03:52:43PM +0530, Bhanusree Pola wrote: > > > Replace rtw_malloc with kmalloc to make code OS independent > > > use kmalloc second argument

Re: [PATCH] Staging: rtl8723bs: core: Replace rtw_malloc with kmalloc

2019-04-19 Thread Bhanusree Mahesh
On Fri, 19 Apr 2019 at 16:52, Greg Kroah-Hartman wrote: > > On Fri, Apr 19, 2019 at 03:52:43PM +0530, Bhanusree Pola wrote: > > Replace rtw_malloc with kmalloc to make code OS independent > > use kmalloc second argument as GFP_ATOMIC as these are called by functions > > that holds lock. > > > >

Re: [PATCH] Staging: rtl8723bs: core: Replace rtw_malloc with kmalloc

2019-04-19 Thread Greg Kroah-Hartman
On Fri, Apr 19, 2019 at 03:52:43PM +0530, Bhanusree Pola wrote: > Replace rtw_malloc with kmalloc to make code OS independent > use kmalloc second argument as GFP_ATOMIC as these are called by functions > that holds lock. > > Signed-off-by: Bhanusree Pola > --- >

[PATCH] Staging: rtl8723bs: core: Replace rtw_malloc with kmalloc

2019-04-19 Thread Bhanusree Pola
Replace rtw_malloc with kmalloc to make code OS independent use kmalloc second argument as GFP_ATOMIC as these are called by functions that holds lock. Signed-off-by: Bhanusree Pola --- drivers/staging/rtl8723bs/core/rtw_ap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git