]> rtime.felk.cvut.cz Git - lisovros/qemu_apohw.git/commit
exec: fix writing to MMIO area with non-power-of-two length
authorPaolo Bonzini <pbonzini@redhat.com>
Mon, 29 Jul 2013 12:27:39 +0000 (14:27 +0200)
committerMichael Roth <mdroth@linux.vnet.ibm.com>
Wed, 25 Sep 2013 03:12:44 +0000 (22:12 -0500)
commit9fab8e1fe15014a4bd147eeedd2491bcfbba4e59
treee2fd1928014c7d07b92681bd8568c26fd61ba5fe
parent2ffbe03e8bc8f330581e31537190949a9aba80c3
exec: fix writing to MMIO area with non-power-of-two length

The problem is introduced by commit 2332616 (exec: Support 64-bit
operations in address_space_rw, 2013-07-08).  Before that commit,
memory_access_size would only return 1/2/4.

Since alignment is already handled above, reduce l to the largest
power of two that is smaller than l.

Cc: qemu-stable@nongnu.org
Reported-by: Oleksii Shevchuk <alxchk@gmail.com>
Tested-by: Oleksii Shevchuk <alxchk@gmail.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
(cherry picked from commit 098178f2749a63fbbb1a626dcc7d939d5cb2bde7)

Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
exec.c