-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 80751 b: refs/heads/master c: f6a40e3 h: refs/heads/master i: 80749: c8e4aa8 80747: a62a551 80743: 0aaba16 80735: 0769b93 v: v3
- Loading branch information
Jerone Young
authored and
Avi Kivity
committed
Jan 30, 2008
1 parent
24f8aa5
commit 77b0903
Showing
3 changed files
with
22 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 7faa8f6fcc119ce680a90a5f011841b466b1e161 | ||
refs/heads/master: f6a40e3bdf5fe0a7d7d7f2dbc5b10158fbdad968 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#ifndef __LINUX_KVM_X86_H | ||
#define __LINUX_KVM_X86_H | ||
|
||
/* | ||
* KVM x86 specific structures and definitions | ||
* | ||
*/ | ||
|
||
#include <asm/types.h> | ||
#include <linux/ioctl.h> | ||
|
||
struct kvm_memory_alias { | ||
__u32 slot; /* this has a different namespace than memory slots */ | ||
__u32 flags; | ||
__u64 guest_phys_addr; | ||
__u64 memory_size; | ||
__u64 target_phys_addr; | ||
}; | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters