diff options
author | Max Bruning <max@joyent.com> | 2011-08-11 02:23:38 -0700 |
---|---|---|
committer | Max Bruning <max@joyent.com> | 2011-08-11 02:23:38 -0700 |
commit | 9f54119bdf8b68482bc8f7437edd04e58ba6be44 (patch) | |
tree | 7e66afe3647881be3bfb4ada09a5fafbc426d301 | |
parent | 28e4f7d030d01bbe557f70efc89c78bae827822a (diff) | |
download | illumos-kvm-9f54119bdf8b68482bc8f7437edd04e58ba6be44.tar.gz |
HVM-553 Qemu isn't cleaning up properly on kvm_run failure with errno 22 (EINVAL)
-rw-r--r-- | kvm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -991,7 +991,7 @@ kvm_disable_largepages(void) int is_error_pfn(pfn_t pfn) { - return (pfn == bad_pfn || pfn == 0xffffffffffffffff); + return (pfn == bad_pfn || pfn == PFN_INVALID); } static unsigned long |