svn commit: r313811 - stable/11/usr.sbin/bhyve
Peter Grehan
grehan at FreeBSD.org
Thu Feb 16 17:07:22 UTC 2017
Author: grehan
Date: Thu Feb 16 17:07:20 2017
New Revision: 313811
URL: https://svnweb.freebsd.org/changeset/base/313811
Log:
MFC r311702
Use correct PCI device id for virtio-rng.
This prevented the device from attaching with a
Windows guest (most other guests use the device type
for matching)
PR: 212711
Modified:
stable/11/usr.sbin/bhyve/virtio.h
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/usr.sbin/bhyve/virtio.h
==============================================================================
--- stable/11/usr.sbin/bhyve/virtio.h Thu Feb 16 14:13:36 2017 (r313810)
+++ stable/11/usr.sbin/bhyve/virtio.h Thu Feb 16 17:07:20 2017 (r313811)
@@ -209,7 +209,7 @@ struct vring_used {
#define VIRTIO_VENDOR 0x1AF4
#define VIRTIO_DEV_NET 0x1000
#define VIRTIO_DEV_BLOCK 0x1001
-#define VIRTIO_DEV_RANDOM 0x1002
+#define VIRTIO_DEV_RANDOM 0x1005
/*
* PCI config space constants.
More information about the svn-src-stable
mailing list