qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Eric Blake <eblake@redhat.com>
To: Chen Hanxiao <chen_han_xiao@126.com>, qemu-devel@nongnu.org
Cc: "Michael Roth" <mdroth@linux.vnet.ibm.com>,
	"Daniel P . Berrangé" <berrange@redhat.com>
Subject: Re: [Qemu-devel] [PATCH v5 1/2] qga: add mountpoint usage to GuestFilesystemInfo
Date: Fri, 1 Jun 2018 10:47:04 -0500	[thread overview]
Message-ID: <170dbd1b-19ad-5e8c-5f8d-2a32ebb47525@redhat.com> (raw)
In-Reply-To: <20180601152746.17169-2-chen_han_xiao@126.com>

On 06/01/2018 10:27 AM, Chen Hanxiao wrote:
> From: Chen Hanxiao <chenhanxiao@gmail.com>
> 
> This patch adds support for getting the usage of mounted
> filesystem.
> The usage of fs stored as used_bytes and total_bytes.
> It's very useful when we try to monitor guest's filesystem.
> 
> Cc: Michael Roth <mdroth@linux.vnet.ibm.com>
> Cc: Eric Blake <eblake@redhat.com>
> Cc: Daniel P. Berrangé <berrange@redhat.com>
> Signed-off-by: Chen Hanxiao <chenhanxiao@gmail.com>
> 

> +++ b/qga/qapi-schema.json
> @@ -840,12 +840,24 @@
>              'bus-type': 'GuestDiskBusType',
>              'bus': 'int', 'target': 'int', 'unit': 'int'} }
>   
> +##
> +# @GuestFsUsage:
> +#
> +# @used-bytes:  file system used bytes
> +# @total-bytes: file system total bytes for nonroot user
> +#
> +# Since: 3.0
> +##
> +{ 'struct': 'GuestFsUsage',
> +  'data': {'used-bytes': 'uint64', 'total-bytes': 'uint64'} }

That seems like pointless nesting on the wire, unless we have plans of 
reusing this type in other API calls.  Is it any easier...

> +
>   ##
>   # @GuestFilesystemInfo:
>   #
>   # @name: disk name
>   # @mountpoint: mount point path
>   # @type: file system type string
> +# @usage: file system usage struct (since 3.0)
>   # @disk: an array of disk hardware information that the volume lies on,
>   #        which may be empty if the disk type is not supported
>   #
> @@ -853,7 +865,7 @@
>   ##
>   { 'struct': 'GuestFilesystemInfo',
>     'data': {'name': 'str', 'mountpoint': 'str', 'type': 'str',
> -           'disk': ['GuestDiskAddress']} }
> +           '*usage': 'GuestFsUsage', 'disk': ['GuestDiskAddress']} }

...to just inline '*used-bytes' and '*total-bytes' here?

-- 
Eric Blake, Principal Software Engineer
Red Hat, Inc.           +1-919-301-3266
Virtualization:  qemu.org | libvirt.org

  reply	other threads:[~2018-06-01 15:47 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-06-01 15:27 [Qemu-devel] [PATCH v5 0/2] qga: report the usage of fs in Chen Hanxiao
2018-06-01 15:27 ` [Qemu-devel] [PATCH v5 1/2] qga: add mountpoint usage to GuestFilesystemInfo Chen Hanxiao
2018-06-01 15:47   ` Eric Blake [this message]
2018-06-01 16:58     ` Chen Hanxiao
2018-06-01 15:27 ` [Qemu-devel] [PATCH v5 2/2] qga-win: add driver path " Chen Hanxiao

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=170dbd1b-19ad-5e8c-5f8d-2a32ebb47525@redhat.com \
    --to=eblake@redhat.com \
    --cc=berrange@redhat.com \
    --cc=chen_han_xiao@126.com \
    --cc=mdroth@linux.vnet.ibm.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).