dect
/
linux-2.6
Archived
13
0
Fork 0

KVM: kvm.h: __user requires compiler.h

include/linux/kvm.h defines struct kvm_dirty_log to
	[...]
	union {
		void __user *dirty_bitmap; /* one bit per page */
		__u64 padding;
	};

__user requires compiler.h to compile. Currently, this works on x86
only coincidentally due to other include files. This patch makes
kvm.h compile in all cases.

Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
Signed-off-by: Avi Kivity <avi@qumranet.com>
This commit is contained in:
Christian Borntraeger 2008-03-12 18:10:45 +01:00 committed by Avi Kivity
parent 1e977aa12d
commit 97646202bc
1 changed files with 1 additions and 0 deletions

View File

@ -8,6 +8,7 @@
*/
#include <asm/types.h>
#include <linux/compiler.h>
#include <linux/ioctl.h>
#include <asm/kvm.h>