• L
    memory: don't sign-extend 32-bit writes · 6da67de6
    Ladi Prosek 提交于
    ldl_p has a signed return type so assigning it to uint64_t implicitly
    sign-extends the value. This results in devices with min_access_size = 8
    seeing unexpected values passed to their write handlers.
    
    Example: guest performs a 32-bit write of 0x80000000 to an mmio region
    and the handler receives 0xFFFFFFFF80000000 in its value argument.
    Signed-off-by: NLadi Prosek <lprosek@redhat.com>
    Message-Id: <1485440557-10384-1-git-send-email-lprosek@redhat.com>
    Signed-off-by: NPaolo Bonzini <pbonzini@redhat.com>
    6da67de6
exec.c 93.9 KB