Skip to content

Commit

Permalink
vfio: make the 4 bytes aligned for capability size
Browse files Browse the repository at this point in the history
this function search the capability from the end, the last
size should 0x100 - pos, not 0xff - pos.

Signed-off-by: Chen Fan <chen.fan.fnst@cn.fujitsu.com>
Reviewed-by: Marcel Apfelbaum <marcel@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
  • Loading branch information
Chen Fan authored and awilliam committed Feb 19, 2016
1 parent 79095ef commit 88caf17
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion hw/vfio/pci.c
Expand Up @@ -1505,7 +1505,8 @@ static void vfio_unmap_bars(VFIOPCIDevice *vdev)
*/
static uint8_t vfio_std_cap_max_size(PCIDevice *pdev, uint8_t pos)
{
uint8_t tmp, next = 0xff;
uint8_t tmp;
uint16_t next = PCI_CONFIG_SPACE_SIZE;

for (tmp = pdev->config[PCI_CAPABILITY_LIST]; tmp;
tmp = pdev->config[tmp + 1]) {
Expand Down

0 comments on commit 88caf17

Please sign in to comment.