From: Chen Fan <chen.fan.f...@cn.fujitsu.com> Device's Offset and size can reach PCIE_CONFIG_SPACE_SIZE, fix the corresponding assert.
Signed-off-by: Chen Fan <chen.fan.f...@cn.fujitsu.com> Reviewed-by: Marcel Apfelbaum <mar...@redhat.com> Signed-off-by: Chen Hanxiao <chenhanx...@cn.fujitsu.com> --- hw/pci/pcie.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/pci/pcie.c b/hw/pci/pcie.c index 6e28985..d66fb10 100644 --- a/hw/pci/pcie.c +++ b/hw/pci/pcie.c @@ -594,7 +594,7 @@ void pcie_add_capability(PCIDevice *dev, assert(offset >= PCI_CONFIG_SPACE_SIZE); assert(offset < offset + size); - assert(offset + size < PCIE_CONFIG_SPACE_SIZE); + assert(offset + size <= PCIE_CONFIG_SPACE_SIZE); assert(size >= 8); assert(pci_is_express(dev)); -- 2.1.0