From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:47046) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hLmxE-0000UW-ML for qemu-devel@nongnu.org; Wed, 01 May 2019 06:59:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hLmxA-0002eO-SJ for qemu-devel@nongnu.org; Wed, 01 May 2019 06:59:12 -0400 Received: from mx1.redhat.com ([209.132.183.28]:33132) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hLmxA-0002c0-KQ for qemu-devel@nongnu.org; Wed, 01 May 2019 06:59:08 -0400 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 86687E1EF7 for ; Wed, 1 May 2019 10:59:07 +0000 (UTC) From: "Dr. David Alan Gilbert (git)" Date: Wed, 1 May 2019 11:59:02 +0100 Message-Id: <20190501105904.29907-1-dgilbert@redhat.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PULL 0/2] hmp queue List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, crobinso@redhat.com From: "Dr. David Alan Gilbert" The following changes since commit f75d15231e56cb0f2bafe19faf1229c459a607= 31: Merge remote-tracking branch 'remotes/kevin/tags/for-upstream' into sta= ging (2019-04-30 17:06:57 +0100) are available in the Git repository at: git://github.com/dagrh/qemu.git tags/pull-hmp-20190501 for you to fetch changes up to 574d96933ceff60b2d13fe97602572fc7e95f7c6: hmp: gva2gpa debug command (2019-05-01 10:46:59 +0100) ---------------------------------------------------------------- HMP pull New gva2gpa command delvm now uses hmp_handle_error so gets Error: prefix in messages ---------------------------------------------------------------- Cole Robinson (1): hmp: delvm: use hmp_handle_error Dr. David Alan Gilbert (1): hmp: gva2gpa debug command hmp-commands.hx | 15 +++++++++++++++ hmp.c | 7 ++++--- monitor.c | 22 ++++++++++++++++++++++ tests/test-hmp.c | 1 + 4 files changed, 42 insertions(+), 3 deletions(-) From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-10.9 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PULL_REQUEST,MAILING_LIST_MULTI, MENTIONS_GIT_HOSTING,SPF_PASS,T_HK_NAME_DR autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 09583C43219 for ; Wed, 1 May 2019 11:00:52 +0000 (UTC) Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id CC26B21734 for ; Wed, 1 May 2019 11:00:51 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org CC26B21734 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=redhat.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Received: from localhost ([127.0.0.1]:54520 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hLmyp-0001ST-3c for qemu-devel@archiver.kernel.org; Wed, 01 May 2019 07:00:51 -0400 Received: from eggs.gnu.org ([209.51.188.92]:47046) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hLmxE-0000UW-ML for qemu-devel@nongnu.org; Wed, 01 May 2019 06:59:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hLmxA-0002eO-SJ for qemu-devel@nongnu.org; Wed, 01 May 2019 06:59:12 -0400 Received: from mx1.redhat.com ([209.132.183.28]:33132) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hLmxA-0002c0-KQ for qemu-devel@nongnu.org; Wed, 01 May 2019 06:59:08 -0400 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 86687E1EF7 for ; Wed, 1 May 2019 10:59:07 +0000 (UTC) Received: from dgilbert-t580.localhost (ovpn-116-152.ams2.redhat.com [10.36.116.152]) by smtp.corp.redhat.com (Postfix) with ESMTP id D555A7192A; Wed, 1 May 2019 10:59:06 +0000 (UTC) From: "Dr. David Alan Gilbert (git)" To: qemu-devel@nongnu.org, crobinso@redhat.com Date: Wed, 1 May 2019 11:59:02 +0100 Message-Id: <20190501105904.29907-1-dgilbert@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.38]); Wed, 01 May 2019 10:59:07 +0000 (UTC) Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PULL 0/2] hmp queue 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: , Errors-To: qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Sender: "Qemu-devel" Content-Type: text/plain; charset="UTF-8" Message-ID: <20190501105902.F6Mvkaikhp4jHoBBgyXC_HD7lhZO_atzJMxh5kxlSe4@z> From: "Dr. David Alan Gilbert" The following changes since commit f75d15231e56cb0f2bafe19faf1229c459a607= 31: Merge remote-tracking branch 'remotes/kevin/tags/for-upstream' into sta= ging (2019-04-30 17:06:57 +0100) are available in the Git repository at: git://github.com/dagrh/qemu.git tags/pull-hmp-20190501 for you to fetch changes up to 574d96933ceff60b2d13fe97602572fc7e95f7c6: hmp: gva2gpa debug command (2019-05-01 10:46:59 +0100) ---------------------------------------------------------------- HMP pull New gva2gpa command delvm now uses hmp_handle_error so gets Error: prefix in messages ---------------------------------------------------------------- Cole Robinson (1): hmp: delvm: use hmp_handle_error Dr. David Alan Gilbert (1): hmp: gva2gpa debug command hmp-commands.hx | 15 +++++++++++++++ hmp.c | 7 ++++--- monitor.c | 22 ++++++++++++++++++++++ tests/test-hmp.c | 1 + 4 files changed, 42 insertions(+), 3 deletions(-)