diff options
author | Chen Fan <chen.fan.fnst@cn.fujitsu.com> | 2015-02-04 11:45:32 -0700 |
---|---|---|
committer | Alex Williamson <alex.williamson@redhat.com> | 2015-02-04 11:45:32 -0700 |
commit | 39cb514f02c7daf6378117e28be7a659a69e48b7 (patch) | |
tree | 2fbe285bde3114b0ea9419e6706c9f53d0c84a70 /hw/vfio | |
parent | ec6f25e788ef57ce1e9f734984ef8885172fd9e2 (diff) | |
download | qemu-39cb514f02c7daf6378117e28be7a659a69e48b7.tar.gz qemu-39cb514f02c7daf6378117e28be7a659a69e48b7.tar.bz2 qemu-39cb514f02c7daf6378117e28be7a659a69e48b7.zip |
vfio: fix wrong initialize vfio_group_list
Signed-off-by: Chen Fan <chen.fan.fnst@cn.fujitsu.com>
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Diffstat (limited to 'hw/vfio')
-rw-r--r-- | hw/vfio/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/vfio/common.c b/hw/vfio/common.c index cf483fffa9..e71385e4fe 100644 --- a/hw/vfio/common.c +++ b/hw/vfio/common.c @@ -32,7 +32,7 @@ #include "trace.h" struct vfio_group_head vfio_group_list = - QLIST_HEAD_INITIALIZER(vfio_address_spaces); + QLIST_HEAD_INITIALIZER(vfio_group_list); struct vfio_as_head vfio_address_spaces = QLIST_HEAD_INITIALIZER(vfio_address_spaces); |