Re: [PATCH 10/52] migration/rdma: Eliminate error_propagate()

2023-09-27 Thread Markus Armbruster
Eric Blake writes: > On Mon, Sep 18, 2023 at 04:41:24PM +0200, Markus Armbruster wrote: >> When all we do with an Error we receive into a local variable is >> propagating to somewhere else, we can just as well receive it there >> right away. >> >> Signed-off-by: Markus Armbruster >> --- >>

Re: [PATCH 10/52] migration/rdma: Eliminate error_propagate()

2023-09-27 Thread Eric Blake
On Mon, Sep 18, 2023 at 04:41:24PM +0200, Markus Armbruster wrote: > When all we do with an Error we receive into a local variable is > propagating to somewhere else, we can just as well receive it there > right away. > > Signed-off-by: Markus Armbruster > --- > > ret =

Re: [PATCH 10/52] migration/rdma: Eliminate error_propagate()

2023-09-21 Thread Zhijian Li (Fujitsu)
On 18/09/2023 22:41, Markus Armbruster wrote: > When all we do with an Error we receive into a local variable is > propagating to somewhere else, we can just as well receive it there > right away. > > Signed-off-by: Markus Armbruster Reviewed-by: Li Zhijian > --- > migration/rdma.c | 19

Re: [PATCH 10/52] migration/rdma: Eliminate error_propagate()

2023-09-18 Thread Fabiano Rosas
Markus Armbruster writes: > When all we do with an Error we receive into a local variable is > propagating to somewhere else, we can just as well receive it there > right away. > > Signed-off-by: Markus Armbruster Reviewed-by: Fabiano Rosas

[PATCH 10/52] migration/rdma: Eliminate error_propagate()

2023-09-18 Thread Markus Armbruster
When all we do with an Error we receive into a local variable is propagating to somewhere else, we can just as well receive it there right away. Signed-off-by: Markus Armbruster --- migration/rdma.c | 19 +++ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git