Re: [PATCH 3/3] fastrpc: remove redundant fastrpc_map_create() call

2021-02-23 Thread Srinivas Kandagatla
On 22/02/2021 13:53, Jonathan Marek wrote: On 2/22/21 7:37 AM, Srinivas Kandagatla wrote: On 18/02/2021 03:20, Jonathan Marek wrote: fastrpc_internal_invoke() will call fastrpc_map_create, so there is no point in having it called here. This does change the behavior somewhat as

Re: [PATCH 3/3] fastrpc: remove redundant fastrpc_map_create() call

2021-02-22 Thread Jonathan Marek
On 2/22/21 7:37 AM, Srinivas Kandagatla wrote: On 18/02/2021 03:20, Jonathan Marek wrote: fastrpc_internal_invoke() will call fastrpc_map_create, so there is no point in having it called here. This does change the behavior somewhat as fastrpc_internal_invoke() will release the map afterwards,

Re: [PATCH 3/3] fastrpc: remove redundant fastrpc_map_create() call

2021-02-22 Thread Srinivas Kandagatla
On 18/02/2021 03:20, Jonathan Marek wrote: fastrpc_internal_invoke() will call fastrpc_map_create, so there is no point in having it called here. This does change the behavior somewhat as fastrpc_internal_invoke() will release the map afterwards, but that's what we want to happen in this

[PATCH 3/3] fastrpc: remove redundant fastrpc_map_create() call

2021-02-17 Thread Jonathan Marek
fastrpc_internal_invoke() will call fastrpc_map_create, so there is no point in having it called here. This does change the behavior somewhat as fastrpc_internal_invoke() will release the map afterwards, but that's what we want to happen in this case. Signed-off-by: Jonathan Marek ---