]> git.proxmox.com Git - mirror_qemu.git/commit
xhci: flush dequeue pointer to endpoint context
authorGerd Hoffmann <kraxel@redhat.com>
Fri, 31 Mar 2017 10:25:21 +0000 (12:25 +0200)
committerGerd Hoffmann <kraxel@redhat.com>
Mon, 3 Apr 2017 09:40:57 +0000 (11:40 +0200)
commit243afe858b95765b98d16a1f0dd50dca262858ad
treeefb1b769c0e577509c2a00ec99755dfa3f362aa2
parent95b31d709ba343ad237c3630047ee7438bac4065
xhci: flush dequeue pointer to endpoint context

When done processing a endpoint ring we must update the dequeue pointer
in the endpoint context in guest memory.  This is needed to make sure
the guest has a correct view of things and also to make live migration
work properly, because xhci post_load restores alot of the state from
xhci data structures in guest memory.

Add xhci_set_ep_state() call to do that.

The recursive calls stopped by commit
ddb603ab6c981c1d67cb42266fc700c33e5b2d8f had the (unintentional) side
effect to hiding this bug.  xhci_set_ep_state() was called before
processing, to set the state to running, which updated the dequeue
pointer too.

Reported-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Tested-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Message-id: 20170331102521.29253-1-kraxel@redhat.com
hw/usb/hcd-xhci.c