From nobody Mon Nov 10 19:10:28 2025 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 209.51.188.17 as permitted sender) client-ip=209.51.188.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; dmarc=fail(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1558322427; cv=none; d=zoho.com; s=zohoarc; b=LhiCzbEdIrRl/7xd87WVUGYnnwnFZaHVs7tA5F5bJfwQqo3VYYO5c+4LhKm+QcllbxM9DzWFt7Wjfb5/U14y0Mn1SEFtrjWsStbkiIqmfC6lpfrmmBMtKqREWQ89pnS3eXVsCG0SB3WnZ8bP8g/IP1wSlf+NolO4iYnjYx1wHB0= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1558322427; h=Cc:Date:From:In-Reply-To:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:Message-ID:References:Sender:Subject:To:ARC-Authentication-Results; bh=eroT7Tzrxp4qLvwP1Mlb4iCun9fG9F/FsF0AIBw7wB0=; b=a3TjeYtDb55Wg+1Zab6AGOYepdm1mqEnqYtARmH/k6jnONfaJv+FBxXAxNvZ89fW2apmvTcscS/wC0iIByfs6V7pf9B6/kGZCstYR1qMi6o7LCVhwen2p+4MWIvsmjeOZ1Bw15emaQm9YpNKKqTkSuComBTEEKAQJYgVQMlpM50= ARC-Authentication-Results: i=1; mx.zoho.com; spf=pass (zoho.com: domain of gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; dmarc=fail header.from= (p=none dis=none) header.from= Return-Path: Received: from lists.gnu.org (209.51.188.17 [209.51.188.17]) by mx.zohomail.com with SMTPS id 1558322427519426.8914007805579; Sun, 19 May 2019 20:20:27 -0700 (PDT) Received: from localhost ([127.0.0.1]:57103 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hSYqZ-00024o-H1 for importer@patchew.org; Sun, 19 May 2019 23:20:19 -0400 Received: from eggs.gnu.org ([209.51.188.92]:49306) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hSYg7-0002KN-3S for qemu-devel@nongnu.org; Sun, 19 May 2019 23:09:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hSYg6-0001rb-9e for qemu-devel@nongnu.org; Sun, 19 May 2019 23:09:31 -0400 Received: from mx1.redhat.com ([209.132.183.28]:60312) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hSYg6-0001qf-42 for qemu-devel@nongnu.org; Sun, 19 May 2019 23:09:30 -0400 Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id A1FC33082133 for ; Mon, 20 May 2019 03:09:28 +0000 (UTC) Received: from xz-x1.nay.redhat.com (dhcp-15-205.nay.redhat.com [10.66.15.205]) by smtp.corp.redhat.com (Postfix) with ESMTP id 8971A100200A; Mon, 20 May 2019 03:09:26 +0000 (UTC) From: Peter Xu To: qemu-devel@nongnu.org Date: Mon, 20 May 2019 11:08:38 +0800 Message-Id: <20190520030839.6795-15-peterx@redhat.com> In-Reply-To: <20190520030839.6795-1-peterx@redhat.com> References: <20190520030839.6795-1-peterx@redhat.com> X-Scanned-By: MIMEDefang 2.84 on 10.5.11.22 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.42]); Mon, 20 May 2019 03:09:28 +0000 (UTC) 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] [PATCH v2 14/15] hmp: Expose manual_dirty_log_protect via "info kvm" 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: Laurent Vivier , Paolo Bonzini , "Dr . David Alan Gilbert" , peterx@redhat.com, Juan Quintela Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Signed-off-by: Peter Xu --- hmp.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hmp.c b/hmp.c index 56a3ed7375..f203a25740 100644 --- a/hmp.c +++ b/hmp.c @@ -102,6 +102,8 @@ void hmp_info_kvm(Monitor *mon, const QDict *qdict) } else { monitor_printf(mon, "not compiled\n"); } + monitor_printf(mon, "kvm manual dirty logging: %s\n", + info->manual_dirty_log_protect ? "enabled" : "disabled"= ); =20 qapi_free_KvmInfo(info); } --=20 2.17.1