diff options
author | Tomáš Golembiovský <tgolembi@redhat.com> | 2018-10-23 13:23:12 +0200 |
---|---|---|
committer | Michael Roth <mdroth@linux.vnet.ibm.com> | 2018-10-31 09:04:20 -0500 |
commit | 6589ce35734e7e71463485650e5fb6e4bbe64729 (patch) | |
tree | 156e68804f2976c13e95d680d1582ba70675c94f /qga/qapi-schema.json | |
parent | b616105a904bc350a409e12c39af0ae210900124 (diff) | |
download | qemu-6589ce35734e7e71463485650e5fb6e4bbe64729.zip qemu-6589ce35734e7e71463485650e5fb6e4bbe64729.tar.gz qemu-6589ce35734e7e71463485650e5fb6e4bbe64729.tar.bz2 |
qga: linux: return disk device in guest-get-fsinfo
Report device node of the disk on Linux (e.g. "/dev/sda2").
Requirs libudev.
Signed-off-by: Tomáš Golembiovský <tgolembi@redhat.com>
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
Diffstat (limited to 'qga/qapi-schema.json')
-rw-r--r-- | qga/qapi-schema.json | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/qga/qapi-schema.json b/qga/qapi-schema.json index 3bcda62..c6725b3 100644 --- a/qga/qapi-schema.json +++ b/qga/qapi-schema.json @@ -835,6 +835,7 @@ # @target: target id # @unit: unit id # @serial: serial number (since: 3.1) +# @dev: device node (POSIX) or device UNC (Windows) (since: 3.1) # # Since: 2.2 ## @@ -842,7 +843,7 @@ 'data': {'pci-controller': 'GuestPCIAddress', 'bus-type': 'GuestDiskBusType', 'bus': 'int', 'target': 'int', 'unit': 'int', - '*serial': 'str'} } + '*serial': 'str', '*dev': 'str'} } ## # @GuestFilesystemInfo: |