Re: [PATCH 3/4] error: Remove NULL checks on error_propagate() calls (again)

2020-07-23 Thread Eric Blake
On 7/23/20 8:38 AM, Markus Armbruster wrote: +++ b/migration/colo.c @@ -798,9 +798,7 @@ static void colo_incoming_process_checkpoint(MigrationIncomingState *mis, colo_send_message(mis->to_src_file, COLO_MESSAGE_VMSTATE_LOADED, _err); -if (local_err) { -

Re: [PATCH 3/4] error: Remove NULL checks on error_propagate() calls (again)

2020-07-23 Thread Markus Armbruster
Markus Armbruster writes: > Eric Blake writes: > >> On 7/22/20 3:40 AM, Markus Armbruster wrote: >>> Patch created mechanically by rerunning: >>> >>> $ spatch --sp-file scripts/coccinelle/error_propagate_null.cocci \ >>> --macro-file scripts/cocci-macro-file.h \ >>>

Re: [PATCH 3/4] error: Remove NULL checks on error_propagate() calls (again)

2020-07-23 Thread Markus Armbruster
Eric Blake writes: > On 7/22/20 3:40 AM, Markus Armbruster wrote: >> Patch created mechanically by rerunning: >> >> $ spatch --sp-file scripts/coccinelle/error_propagate_null.cocci \ >> --macro-file scripts/cocci-macro-file.h \ >> --use-gitgrep . >> >> Cc: Jens

Re: [PATCH 3/4] error: Remove NULL checks on error_propagate() calls (again)

2020-07-22 Thread Eric Blake
On 7/22/20 3:40 AM, Markus Armbruster wrote: Patch created mechanically by rerunning: $ spatch --sp-file scripts/coccinelle/error_propagate_null.cocci \ --macro-file scripts/cocci-macro-file.h \ --use-gitgrep . Cc: Jens Freimann Cc: Hailiang Zhang Cc: Juan

[PATCH 3/4] error: Remove NULL checks on error_propagate() calls (again)

2020-07-22 Thread Markus Armbruster
Patch created mechanically by rerunning: $ spatch --sp-file scripts/coccinelle/error_propagate_null.cocci \ --macro-file scripts/cocci-macro-file.h \ --use-gitgrep . Cc: Jens Freimann Cc: Hailiang Zhang Cc: Juan Quintela Signed-off-by: Markus Armbruster ---