aboutsummaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorLiran Alon <liran.alon@oracle.com>2020-03-12 18:54:16 +0200
committerPaolo Bonzini <pbonzini@redhat.com>2020-06-10 12:09:43 -0400
commit29282253b79fcb917d154d37a491c17b390f258b (patch)
tree266937c09d4bb1ebfb0e5a9c4d25c3d8574f3b18 /hw
parent2dfbea1a872727fb747ca6adf2390e09956cdc6e (diff)
downloadqemu-29282253b79fcb917d154d37a491c17b390f258b.zip
qemu-29282253b79fcb917d154d37a491c17b390f258b.tar.gz
qemu-29282253b79fcb917d154d37a491c17b390f258b.tar.bz2
hw/i386/vmport: Add reference to VMware open-vm-tools
This official VMware open-source project can be used as reference to understand how guest code interacts with VMPort virtual device. Thus, providing understanding on how device is expected to behave. Signed-off-by: Liran Alon <liran.alon@oracle.com> Message-Id: <20200312165431.82118-2-liran.alon@oracle.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r--hw/i386/vmport.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/hw/i386/vmport.c b/hw/i386/vmport.c
index 1aaaab6..fc00746 100644
--- a/hw/i386/vmport.c
+++ b/hw/i386/vmport.c
@@ -21,6 +21,13 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
+
+/*
+ * Guest code that interacts with this virtual device can be found
+ * in VMware open-vm-tools open-source project:
+ * https://github.com/vmware/open-vm-tools
+ */
+
#include "qemu/osdep.h"
#include "hw/isa/isa.h"
#include "sysemu/hw_accel.h"