From nobody Mon Feb 9 10:58:19 2026 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) client-ip=208.118.235.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zoho.com; spf=pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; Return-Path: Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) by mx.zohomail.com with SMTPS id 1487615053018165.69567403508506; Mon, 20 Feb 2017 10:24:13 -0800 (PST) Received: from localhost ([::1]:40326 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cfsd7-00033w-MG for importer@patchew.org; Mon, 20 Feb 2017 13:24:09 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33234) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cfsb7-0001Yf-Mh for qemu-devel@nongnu.org; Mon, 20 Feb 2017 13:22:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cfsb2-00044n-VU for qemu-devel@nongnu.org; Mon, 20 Feb 2017 13:22:05 -0500 Received: from mailhub.sw.ru ([195.214.232.25]:9778 helo=relay.sw.ru) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cfsb2-00043J-Ju for qemu-devel@nongnu.org; Mon, 20 Feb 2017 13:22:00 -0500 Received: from hades.sw.ru (msk-vpn.virtuozzo.com [195.214.232.6]) by relay.sw.ru (8.13.4/8.13.4) with ESMTP id v1KILt0d017342; Mon, 20 Feb 2017 21:21:56 +0300 (MSK) From: "Denis V. Lunev" To: qemu-devel@nongnu.org Date: Mon, 20 Feb 2017 21:21:53 +0300 Message-Id: <1487614915-18710-2-git-send-email-den@openvz.org> X-Mailer: git-send-email 2.5.0 In-Reply-To: <1487614915-18710-1-git-send-email-den@openvz.org> References: <1487614915-18710-1-git-send-email-den@openvz.org> X-detected-operating-system: by eggs.gnu.org: OpenBSD 3.x [fuzzy] X-Received-From: 195.214.232.25 Subject: [Qemu-devel] [PATCH 1/3] i386/cpu: release GuestPanicInformation memory X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: den@openvz.org, Anton Nefedov , Paolo Bonzini Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" From: Anton Nefedov Do not make some foreign function do it. Signed-off-by: Anton Nefedov Signed-off-by: Denis V. Lunev CC: Paolo Bonzini CC: Eric Blake --- kvm-all.c | 5 ++++- vl.c | 22 +++++++++------------- 2 files changed, 13 insertions(+), 14 deletions(-) diff --git a/kvm-all.c b/kvm-all.c index 0c94637..ac07902 100644 --- a/kvm-all.c +++ b/kvm-all.c @@ -1909,6 +1909,7 @@ int kvm_cpu_exec(CPUState *cpu) =20 do { MemTxAttrs attrs; + GuestPanicInformation *crash_info; =20 if (cpu->kvm_vcpu_dirty) { kvm_arch_put_registers(cpu, KVM_PUT_RUNTIME_STATE); @@ -2001,9 +2002,11 @@ int kvm_cpu_exec(CPUState *cpu) break; case KVM_SYSTEM_EVENT_CRASH: kvm_cpu_synchronize_state(cpu); + crash_info =3D cpu_get_crash_info(cpu); qemu_mutex_lock_iothread(); - qemu_system_guest_panicked(cpu_get_crash_info(cpu)); + qemu_system_guest_panicked(crash_info); qemu_mutex_unlock_iothread(); + qapi_free_GuestPanicInformation(crash_info); ret =3D 0; break; default: diff --git a/vl.c b/vl.c index 27d9829..81382b6 100644 --- a/vl.c +++ b/vl.c @@ -1682,6 +1682,15 @@ void qemu_system_reset(bool report) void qemu_system_guest_panicked(GuestPanicInformation *info) { qemu_log_mask(LOG_GUEST_ERROR, "Guest crashed\n"); + if (info && info->type =3D=3D GUEST_PANIC_INFORMATION_KIND_HYPER_V) { + qemu_log_mask(LOG_GUEST_ERROR, "HV crash parameters: (%#"PRIx64 + " %#"PRIx64" %#"PRIx64" %#"PRIx64" %#"PRIx64")\n", + info->u.hyper_v.data->arg1, + info->u.hyper_v.data->arg2, + info->u.hyper_v.data->arg3, + info->u.hyper_v.data->arg4, + info->u.hyper_v.data->arg5); + } =20 if (current_cpu) { current_cpu->crash_occurred =3D true; @@ -1694,19 +1703,6 @@ void qemu_system_guest_panicked(GuestPanicInformatio= n *info) !!info, info, &error_abort); qemu_system_shutdown_request(); } - - if (info) { - if (info->type =3D=3D GUEST_PANIC_INFORMATION_KIND_HYPER_V) { - qemu_log_mask(LOG_GUEST_ERROR, "HV crash parameters: (%#"PRIx64 - " %#"PRIx64" %#"PRIx64" %#"PRIx64" %#"PRIx64")\n= ", - info->u.hyper_v.data->arg1, - info->u.hyper_v.data->arg2, - info->u.hyper_v.data->arg3, - info->u.hyper_v.data->arg4, - info->u.hyper_v.data->arg5); - } - qapi_free_GuestPanicInformation(info); - } } =20 void qemu_system_reset_request(void) --=20 2.7.4