From 680c30692dc9e8f6d63ad0eb6ddb2a9ace0503cf Mon Sep 17 00:00:00 2001 From: aliguori Date: Fri, 27 Feb 2009 20:05:13 +0000 Subject: [PATCH] x86: use qemu_log_mask on triple faults (Chris Wright) replace open coded qemu_log_mask with proper macro Signed-off-by: Chris Wright Signed-off-by: Anthony Liguori git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6649 c046a42c-6fe2-441c-8c8c-71466251a162 --- target-i386/op_helper.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/target-i386/op_helper.c b/target-i386/op_helper.c index 217916a05c..25e079b8fd 100644 --- a/target-i386/op_helper.c +++ b/target-i386/op_helper.c @@ -1275,8 +1275,7 @@ static int check_exception(int intno, int *error_code) if (env->hflags & HF_SVMI_MASK) helper_vmexit(SVM_EXIT_SHUTDOWN, 0); /* does not return */ - if (qemu_loglevel_mask(CPU_LOG_RESET)) - fprintf(logfile, "Triple fault\n"); + qemu_log_mask(CPU_LOG_RESET, "Triple fault\n"); qemu_system_reset_request(); return EXCP_HLT;