]> git.proxmox.com Git - qemu.git/commit - exec.c
Fix last page errors in page_check_range and page_set_flags.
authorRichard Henderson <rth@twiddle.net>
Wed, 10 Mar 2010 23:57:04 +0000 (15:57 -0800)
committerPaul Brook <paul@codesourcery.com>
Fri, 12 Mar 2010 16:31:32 +0000 (16:31 +0000)
commit376a790970de7e84170ee9360b6ff53ecfa4a1be
treeb0e0a267364b3026c48fe5ba809f008a7a68c8cb
parent5cd2c5b6ad75c46d40118ac67c0c09d4e7930a65
Fix last page errors in page_check_range and page_set_flags.

The addr < end comparison prevents iterating over the last
page in the guest address space; an iteration based on
length avoids this problem.

At the same time, assert that the given address is in the
guest address space.

Signed-off-by: Richard Henderson <rth@twiddle.net>
exec.c