diff --git a/exec.c b/exec.c index feb4795525137c02f740bf44aa8472a434f4ee59..27b100cb2373cd5543a1ac9096d67b0d8714fb3f 100644 --- a/exec.c +++ b/exec.c @@ -2271,7 +2271,7 @@ static void register_subpage(MemoryRegionSection *section) subpage = container_of(existing->mr, subpage_t, iomem); } start = section->offset_within_address_space & ~TARGET_PAGE_MASK; - end = start + section->size; + end = start + section->size - 1; subpage_register(subpage, start, end, phys_section_add(section)); }