From patchwork Thu May 1 04:26:45 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wenchao Xia X-Patchwork-Id: 344424 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id A321B140111 for ; Thu, 1 May 2014 16:11:44 +1000 (EST) Received: from localhost ([::1]:60338 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WfifH-0006vC-1i for incoming@patchwork.ozlabs.org; Thu, 01 May 2014 00:32:07 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49345) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WfibR-0000im-Vb for qemu-devel@nongnu.org; Thu, 01 May 2014 00:28:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WfibI-0002Iz-Ky for qemu-devel@nongnu.org; Thu, 01 May 2014 00:28:09 -0400 Received: from mail-ie0-x234.google.com ([2607:f8b0:4001:c03::234]:48238) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WfibI-0002Io-HO for qemu-devel@nongnu.org; Thu, 01 May 2014 00:28:00 -0400 Received: by mail-ie0-f180.google.com with SMTP id as1so3008611iec.25 for ; Wed, 30 Apr 2014 21:28:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=CkV1CfBP+qjILGa4vK30+GtJcQo9deitM76weq0axuU=; b=jjC3yYgfp6wB2RSNAZQRSkERzy7JY0ru8Tcfz6MxLW4FElDZTsqyGPtwUZ52lmXLXh 77+ruv5ZWaERJO4pM0wCOCMU0gPLc1Tn2a6iZOWccCqGkWAZNVUtZmEhhRlZOUr9As9N wEO1zM58CE7GQFUT4i1Oh9bkaGPPxFws5QHhcOzM/BXzjmemV/Shn0H+lyBTxsoH91hx yKCtD1rCKUI21lo1ExpUEphCsZshmPizhsc/9oq0m7GL02PhYLCl6InrgT7t5yay6dHM tPvZieBhmmmmpUoRE2VRLK9en5+oO/6k+EVr9fSaBLsB/SjNzGVzuC+8GT7rJ/WIJwzY PjxQ== X-Received: by 10.50.47.12 with SMTP id z12mr437620igm.37.1398918480079; Wed, 30 Apr 2014 21:28:00 -0700 (PDT) Received: from localhost.localdomain.localdomain ([118.250.93.201]) by mx.google.com with ESMTPSA id ii7sm4626797igb.17.2014.04.30.21.27.55 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 30 Apr 2014 21:27:59 -0700 (PDT) From: Wenchao Xia To: qemu-devel@nongnu.org Date: Wed, 30 Apr 2014 21:26:45 -0700 Message-Id: <1398918422-3019-12-git-send-email-wenchaoqemu@gmail.com> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1398918422-3019-1-git-send-email-wenchaoqemu@gmail.com> References: <1398918422-3019-1-git-send-email-wenchaoqemu@gmail.com> X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:4001:c03::234 Cc: mdroth@linux.vnet.ibm.com, armbru@redhat.com, Wenchao Xia , lcapitulino@redhat.com Subject: [Qemu-devel] [PATCH V5 11/28] qapi event: convert RESUME X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Wenchao Xia --- vl.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/vl.c b/vl.c index 717bfc1..3679588 100644 --- a/vl.c +++ b/vl.c @@ -1734,7 +1734,7 @@ void vm_start(void) runstate_set(RUN_STATE_RUNNING); vm_state_notify(1, RUN_STATE_RUNNING); resume_all_vcpus(); - monitor_protocol_event(QEVENT_RESUME, NULL); + qapi_event_send_resume(NULL); } }