[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-ppc] [Qemu-devel] [PATCH 0/4] qapi/error: converts error_setg(
From: |
Markus Armbruster |
Subject: |
Re: [Qemu-ppc] [Qemu-devel] [PATCH 0/4] qapi/error: converts error_setg(&error_fatal) to error_report() + exit() |
Date: |
Thu, 07 Jun 2018 15:48:47 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/25.3 (gnu/linux) |
Philippe Mathieu-Daudé <address@hidden> writes:
> Hi,
>
> This series converts error_setg(&error_fatal) to error_report() + exit() as
> suggested by the "qapi/error.h" documentation.
Appreciated!
The series actually converts two anti-patterns.
1. From
if (COND) {
error_setg(&error_fatal, ...);
}
to
if (COND) {
error_report(...);
exit(1);
}
This is exactly what error.h asks for.
2. From
if (COND) {
error_setg(&error_abort, ...);
}
to
if (COND) {
error_report(...);
abort();
}
error.h asks for
assert(!COND);
instead. See my reply to PATCH 1 for why.
- Re: [Qemu-ppc] [Qemu-devel] [PATCH 0/4] qapi/error: converts error_setg(&error_fatal) to error_report() + exit(),
Markus Armbruster <=