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=-8.4 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH, MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 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 174CEC433E0 for ; Wed, 17 Jun 2020 17:53:27 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id E091721556 for ; Wed, 17 Jun 2020 17:53:26 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b="DpLINvgT" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726840AbgFQRx0 (ORCPT ); Wed, 17 Jun 2020 13:53:26 -0400 Received: from us-smtp-delivery-1.mimecast.com ([207.211.31.120]:20998 "EHLO us-smtp-1.mimecast.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726558AbgFQRxZ (ORCPT ); Wed, 17 Jun 2020 13:53:25 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1592416404; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=9uliBsP0an46gPx+oD2wPLvOfI9JPxFlPTJ+G83rjdw=; b=DpLINvgT5zHumSDMC6AWxDJDIBzlW5zX8E+wK33zpgOLfJTvIyB8MzUVg7NCZpbvkCV8Gs ixODI8VxHVjwKpeHq6K1dPqnpEb9QEOQp+SLWsUUnq3QXyd8J89gph0woAYZPcbKc8iRJO /WGA/ShVL47GORxhBlngYD7BramNP4c= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-405-MVvxKsLKM2GGAUSbxMZzxQ-1; Wed, 17 Jun 2020 13:53:20 -0400 X-MC-Unique: MVvxKsLKM2GGAUSbxMZzxQ-1 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id CC01D100CCCE; Wed, 17 Jun 2020 17:53:19 +0000 (UTC) Received: from work-vm (ovpn-115-47.ams2.redhat.com [10.36.115.47]) by smtp.corp.redhat.com (Postfix) with ESMTPS id C7C2F19931; Wed, 17 Jun 2020 17:53:11 +0000 (UTC) Date: Wed, 17 Jun 2020 18:53:09 +0100 From: "Dr. David Alan Gilbert" To: David Hildenbrand Cc: qemu-devel@nongnu.org, kvm@vger.kernel.org, qemu-s390x@nongnu.org, Richard Henderson , Paolo Bonzini , Eduardo Habkost , "Michael S . Tsirkin" Subject: Re: [PATCH v4 13/21] hmp: Handle virtio-mem when printing memory device info Message-ID: <20200617175309.GJ2776@work-vm> References: <20200610115419.51688-1-david@redhat.com> <20200610115419.51688-14-david@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200610115419.51688-14-david@redhat.com> User-Agent: Mutt/1.14.0 (2020-05-02) X-Scanned-By: MIMEDefang 2.84 on 10.5.11.23 Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org * David Hildenbrand (david@redhat.com) wrote: > Print the memory device info just like for other memory devices. > > Cc: "Dr. David Alan Gilbert" > Cc: "Michael S. Tsirkin" > Signed-off-by: David Hildenbrand Reviewed-by: Dr. David Alan Gilbert > --- > monitor/hmp-cmds.c | 16 ++++++++++++++++ > 1 file changed, 16 insertions(+) > > diff --git a/monitor/hmp-cmds.c b/monitor/hmp-cmds.c > index 9c61e769ca..afc9a28069 100644 > --- a/monitor/hmp-cmds.c > +++ b/monitor/hmp-cmds.c > @@ -1818,6 +1818,7 @@ void hmp_info_memory_devices(Monitor *mon, const QDict *qdict) > MemoryDeviceInfoList *info_list = qmp_query_memory_devices(&err); > MemoryDeviceInfoList *info; > VirtioPMEMDeviceInfo *vpi; > + VirtioMEMDeviceInfo *vmi; > MemoryDeviceInfo *value; > PCDIMMDeviceInfo *di; > > @@ -1852,6 +1853,21 @@ void hmp_info_memory_devices(Monitor *mon, const QDict *qdict) > monitor_printf(mon, " size: %" PRIu64 "\n", vpi->size); > monitor_printf(mon, " memdev: %s\n", vpi->memdev); > break; > + case MEMORY_DEVICE_INFO_KIND_VIRTIO_MEM: > + vmi = value->u.virtio_mem.data; > + monitor_printf(mon, "Memory device [%s]: \"%s\"\n", > + MemoryDeviceInfoKind_str(value->type), > + vmi->id ? vmi->id : ""); > + monitor_printf(mon, " memaddr: 0x%" PRIx64 "\n", vmi->memaddr); > + monitor_printf(mon, " node: %" PRId64 "\n", vmi->node); > + monitor_printf(mon, " requested-size: %" PRIu64 "\n", > + vmi->requested_size); > + monitor_printf(mon, " size: %" PRIu64 "\n", vmi->size); > + monitor_printf(mon, " max-size: %" PRIu64 "\n", vmi->max_size); > + monitor_printf(mon, " block-size: %" PRIu64 "\n", > + vmi->block_size); > + monitor_printf(mon, " memdev: %s\n", vmi->memdev); > + break; > default: > g_assert_not_reached(); > } > -- > 2.26.2 > -- Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK