Signed-off-by: Andrew Jones <drjones@xxxxxxxxxx> --- lib/report.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/report.c b/lib/report.c index 4cd75534f978..2a8b6df1368d 100644 --- a/lib/report.c +++ b/lib/report.c @@ -118,12 +118,14 @@ void report_abort(const char *msg_fmt, ...) { va_list va; + spin_lock(&lock); puts("ABORT: "); puts(prefixes); va_start(va, msg_fmt); vprintf(msg_fmt, va); va_end(va); puts("\n"); + spin_unlock(&lock); report_summary(); abort(); } -- 2.7.4 -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html