]> git.ipfire.org Git - thirdparty/qemu.git/blobdiff - qga/qapi-schema.json
qga: add mountpoint usage info to GuestFilesystemInfo
[thirdparty/qemu.git] / qga / qapi-schema.json
index 1045cef386ec158bec164b7a9b5ba20d2171901f..2df6356b8cadefe77a040e6a26fa0f4c97a6f9ee 100644 (file)
 # @name: disk name
 # @mountpoint: mount point path
 # @type: file system type string
+# @used-bytes: file system used bytes (since 3.0)
+# @total-bytes: non-root file system total bytes (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
 #
 ##
 { 'struct': 'GuestFilesystemInfo',
   'data': {'name': 'str', 'mountpoint': 'str', 'type': 'str',
+           '*used-bytes': 'uint64', '*total-bytes': 'uint64',
            'disk': ['GuestDiskAddress']} }
 
 ##